body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: #0D0625;
    text-align: center;
}

.container {
    width: 100%;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    max-width: 750px;
    display: none;
}

.container a {
    display: block;
}

#guide-img {
    display: none;
    position: absolute;
    right: 20px;
    top: 0;
    width: 80%;
    max-width: 400px;
    height: auto;
}

a img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}


.main-content {
    flex: 1;
}

.content-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.content-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    color: #E5C07B;
    font-size: 15px;
}

a img {
    display: block;
}


.marquee-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffcfcf;
    padding: 0px 12px;
    height: 30px;
    overflow: hidden;
    position: relative;
    z-index: 110;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 1;
}

.marquee-container {
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
}


.marquee-box {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-right: 50px;
    font-size: 16px;
    color: rgba(13, 6, 37, 1);
    letter-spacing: 0.5px;
    animation: marqueeTimeline 8s linear infinite;
}

@keyframes marqueeTimeline {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
        ;
    }
}

.marquee-box:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-close-btn {
    background: none;
    border: none;
    color: rgba(255, 33, 17, 0.6);
    font-size: 20px;
    font-weight: 300;
    padding: 0 4px 0 12px;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

.marquee-close-btn:active {
    color: #e5c07b;
}

.marquee-wrapper.hide {
    height: 0 !important;
    opacity: 0 !important;
    border-bottom-color: transparent !important;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    aspect-ratio: 750 / 353;
    background: #f0f0f0;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    /* top: 40px;
  left: 40px; */

    color: white;
    font-size: 40px;
    font-weight: bold;
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 10px;
    font-family: sans-serif;

    top: 42%;
    left: 32%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}


.nav-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: rgba(34, 30, 55, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    top: 0;
    z-index: 100;
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav-item {
    flex: 1;
    display: inline-block;
    flex-shrink: 0;
    min-width: 85px;
    text-align: center;
    line-height: 45px;
    height: 45px;
    font-size: 16px;
    color: rgba(212, 175, 104, 1);
    text-decoration: none;
    position: relative;
}

.nav-item.active {
    color: #0b071a;
    font-weight: 600;
    background: linear-gradient(135deg, #e5c07b 0%, #b38947 100%);
}

.nav-item:not(.active):active {
    background: rgba(255, 255, 255, 0.05);
    color: #f7d070;
}