* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
    color: #e0e1dd;
    line-height: 1.7;
    min-height: 100vh;
}

.gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.gate-overlay.hidden {
    display: none;
}

.gate-card {
    background: linear-gradient(145deg, #1b263b 0%, #0d1b2a 100%);
    padding: 55px 48px;
    border-radius: 16px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    border: 2px solid #778da9;
    box-shadow: 0 12px 45px rgba(119, 141, 169, 0.4);
}

.gate-emblem {
    font-size: 76px;
    color: #778da9;
    margin-bottom: 24px;
}

.gate-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.gate-card p {
    font-size: 16px;
    margin-bottom: 14px;
    color: #c9d1d9;
    line-height: 1.7;
}

.gate-controls {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    justify-content: center;
}

.gate-proceed,
.gate-decline {
    padding: 15px 36px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gate-proceed {
    background: linear-gradient(135deg, #778da9 0%, #415a77 100%);
    color: white;
    box-shadow: 0 5px 18px rgba(119, 141, 169, 0.5);
}

.gate-proceed:hover {
    background: linear-gradient(135deg, #8fa3c0 0%, #526e8c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(119, 141, 169, 0.6);
}

.gate-decline {
    background: transparent;
    color: #c9d1d9;
    border: 2px solid #415a77;
}

.gate-decline:hover {
    background: #1b263b;
    border-color: #526e8c;
}

.header-bar {
    background: rgba(13, 27, 42, 0.95);
    border-bottom: 2px solid #778da9;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.primary-nav {
    padding: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5%;
    max-width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #778da9;
    letter-spacing: 2px;
}

.brand-icon {
    font-size: 36px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #778da9;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu a {
    color: #c9d1d9;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #778da9;
    background: rgba(119, 141, 169, 0.1);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(13, 27, 42, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 100px;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 26px;
        font-size: 20px;
    }
}

.hero {
    padding: 105px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(119, 141, 169, 0.12) 0%, rgba(27, 38, 59, 0.12) 100%);
    border-bottom: 2px solid rgba(119, 141, 169, 0.3);
}

.hero-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 26px;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 20px;
    color: #c9d1d9;
    max-width: 880px;
    margin: 0 auto 38px;
    line-height: 1.8;
}

.hero-markers {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.marker {
    background: rgba(119, 141, 169, 0.15);
    border: 1px solid #778da9;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.advisories {
    padding: 82px 5%;
    background: rgba(27, 38, 59, 0.5);
}

.advisories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.advisories-heading {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #778da9;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.advisory-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px;
}

.advisory-card {
    background: linear-gradient(145deg, #1b263b 0%, #0d1b2a 100%);
    padding: 38px;
    border-radius: 12px;
    border: 2px solid #778da9;
    transition: all 0.3s ease;
}

.advisory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(119, 141, 169, 0.4);
}

.advisory-symbol {
    font-size: 54px;
    margin-bottom: 16px;
}

.advisory-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.advisory-card p {
    font-size: 16px;
    color: #c9d1d9;
    line-height: 1.7;
}

.spotlight {
    padding: 82px 5%;
    background: rgba(13, 27, 42, 0.8);
}

.spotlight-container {
    max-width: 1400px;
    margin: 0 auto;
}

.spotlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #778da9;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.spotlight-lead {
    font-size: 18px;
    color: #c9d1d9;
    text-align: center;
    margin-bottom: 48px;
}

.spotlight-flex {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-items: start;
}

.spotlight-viewer {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #778da9;
    box-shadow: 0 8px 35px rgba(119, 141, 169, 0.4);
}

.spotlight-viewer iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.spotlight-details {
    background: linear-gradient(145deg, #1b263b 0%, #0d1b2a 100%);
    padding: 36px;
    border-radius: 12px;
    border: 2px solid #778da9;
}

.spotlight-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.spotlight-details p {
    font-size: 16px;
    color: #c9d1d9;
    margin-bottom: 22px;
    line-height: 1.7;
}

.game-properties {
    list-style: none;
    margin: 22px 0;
}

.game-properties li {
    font-size: 15px;
    color: #c9d1d9;
    padding: 11px 0;
    border-bottom: 1px solid rgba(119, 141, 169, 0.3);
}

.game-properties strong {
    color: #778da9;
    margin-right: 6px;
}

.spotlight-action {
    display: inline-block;
    background: linear-gradient(135deg, #778da9 0%, #415a77 100%);
    color: white;
    padding: 14px 34px;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.spotlight-action:hover {
    background: linear-gradient(135deg, #8fa3c0 0%, #526e8c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(119, 141, 169, 0.5);
}

.essence {
    padding: 82px 5%;
    background: linear-gradient(135deg, rgba(119, 141, 169, 0.08) 0%, rgba(27, 38, 59, 0.08) 100%);
}

.essence-container {
    max-width: 1200px;
    margin: 0 auto;
}

.essence-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #778da9;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.essence-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 36px;
}

.essence-block {
    background: linear-gradient(145deg, #1b263b 0%, #0d1b2a 100%);
    padding: 36px;
    border-radius: 12px;
    border: 2px solid rgba(119, 141, 169, 0.5);
}

.essence-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.essence-block p {
    font-size: 16px;
    color: #c9d1d9;
    margin-bottom: 14px;
    line-height: 1.8;
}

.statistics {
    padding: 92px 5%;
    text-align: center;
    background: rgba(13, 27, 42, 0.8);
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.statistics-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.statistics-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    background: linear-gradient(145deg, #1b263b 0%, #0d1b2a 100%);
    padding: 44px 54px;
    border-radius: 12px;
    border: 2px solid #778da9;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(119, 141, 169, 0.5);
}

.stat-figure {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.stat-caption {
    font-size: 16px;
    color: #c9d1d9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commitment {
    padding: 82px 5%;
    background: linear-gradient(135deg, rgba(119, 141, 169, 0.08) 0%, rgba(27, 38, 59, 0.08) 100%);
}

.commitment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #778da9;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.commitment-intro {
    font-size: 17px;
    color: #c9d1d9;
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.commitment-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.commitment-item {
    background: linear-gradient(145deg, #1b263b 0%, #0d1b2a 100%);
    padding: 34px;
    border-radius: 12px;
    border: 2px solid rgba(119, 141, 169, 0.5);
}

.commitment-marker {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #778da9;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.commitment-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #e0e1dd;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.commitment-item p {
    font-size: 15px;
    color: #c9d1d9;
    line-height: 1.7;
}

.footer-section {
    background: rgba(13, 27, 42, 0.95);
    border-top: 2px solid #778da9;
    padding: 62px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 42px;
    margin-bottom: 38px;
}

.footer-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-block p {
    font-size: 15px;
    color: #c9d1d9;
    margin-bottom: 16px;
    line-height: 1.7;
}

.resource-list,
.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.resource-list a,
.legal-nav a {
    color: #778da9;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-list a:hover,
.legal-nav a:hover {
    color: #8fa3c0;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(119, 141, 169, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: #7e8a9b;
    margin-bottom: 8px;
}

.footer-note {
    font-weight: 700;
    color: #778da9;
}

.play-layout .play-intro {
    padding: 82px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(119, 141, 169, 0.12) 0%, rgba(27, 38, 59, 0.12) 100%);
}

.play-intro-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.play-intro-container p {
    font-size: 18px;
    color: #c9d1d9;
    max-width: 820px;
    margin: 0 auto;
}

.play-frame {
    padding: 62px 5%;
    background: rgba(13, 27, 42, 0.8);
}

.play-frame-container {
    max-width: 1400px;
    margin: 0 auto;
}

.frame-box {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #778da9;
    box-shadow: 0 8px 35px rgba(119, 141, 169, 0.4);
}

.frame-box iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.play-information {
    padding: 62px 5%;
    background: linear-gradient(135deg, rgba(119, 141, 169, 0.08) 0%, rgba(27, 38, 59, 0.08) 100%);
}

.play-information-container {
    max-width: 1200px;
    margin: 0 auto;
}

.information-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px;
}

.information-column {
    background: linear-gradient(145deg, #1b263b 0%, #0d1b2a 100%);
    padding: 36px;
    border-radius: 12px;
    border: 2px solid rgba(119, 141, 169, 0.5);
}

.information-column h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.information-column ul {
    list-style: none;
}

.information-column li {
    font-size: 15px;
    color: #c9d1d9;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.information-column li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #778da9;
    font-size: 13px;
}

.play-advisory {
    padding: 62px 5%;
    background: rgba(13, 27, 42, 0.8);
}

.play-advisory-container {
    max-width: 980px;
    margin: 0 auto;
}

.advisory-panel {
    background: linear-gradient(145deg, #1b263b 0%, #0d1b2a 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #778da9;
    display: flex;
    gap: 26px;
    align-items: center;
}

.advisory-icon {
    font-size: 58px;
    flex-shrink: 0;
}

.advisory-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.advisory-content p {
    font-size: 16px;
    color: #c9d1d9;
    line-height: 1.7;
}

.legal-layout {
    padding: 62px 5%;
    background: rgba(13, 27, 42, 0.8);
}

.legal-container {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1b263b 0%, #0d1b2a 100%);
    padding: 58px;
    border-radius: 12px;
    border: 2px solid #778da9;
}

.legal-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 1px;
}

.legal-date {
    text-align: center;
    font-size: 15px;
    color: #7e8a9b;
    margin-bottom: 48px;
    font-style: italic;
}

.legal-part {
    margin-bottom: 36px;
}

.legal-part h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #778da9;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(119, 141, 169, 0.3);
    letter-spacing: 0.5px;
}

.legal-part p {
    font-size: 16px;
    color: #c9d1d9;
    margin-bottom: 13px;
    line-height: 1.8;
}

.legal-highlight {
    background: rgba(119, 141, 169, 0.12);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #778da9;
    margin-top: 38px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.point {
    background: rgba(13, 27, 42, 0.6);
    padding: 18px;
    border-radius: 8px;
    border: 1px solid rgba(119, 141, 169, 0.4);
    font-size: 15px;
    color: #c9d1d9;
}

.point strong {
    color: #778da9;
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .spotlight-flex {
        grid-template-columns: 1fr;
    }

    .spotlight-viewer iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-container h1,
    .spotlight-title,
    .essence-title,
    .statistics-heading,
    .commitment-heading,
    .play-intro-container h1,
    .legal-container h1 {
        font-size: 36px;
    }

    .hero-text,
    .spotlight-lead,
    .play-intro-container p {
        font-size: 16px;
    }

    .hero-markers {
        flex-direction: column;
        align-items: center;
    }

    .advisory-cards,
    .essence-blocks,
    .information-columns {
        grid-template-columns: 1fr;
    }

    .statistics-grid {
        flex-direction: column;
    }

    .frame-box iframe {
        height: 400px;
    }

    .advisory-panel {
        flex-direction: column;
        text-align: center;
    }

    .legal-container {
        padding: 38px 24px;
    }

    .legal-part h2 {
        font-size: 22px;
    }

    .gate-card {
        padding: 38px 28px;
    }

    .gate-card h2 {
        font-size: 30px;
    }

    .gate-controls {
        flex-direction: column;
    }
}
