* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #fffbeb, #fef3c7);
    color: #78350f;
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.95), rgba(180, 83, 9, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 25px;
}

.verify-overlay.hidden {
    display: none;
}

.verify-dialog {
    background: linear-gradient(145deg, #fffbeb, #fef3c7);
    padding: 55px 50px;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(120, 53, 15, 0.4);
    border: 3px solid #d97706;
}

.dialog-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #d97706;
}

.verify-dialog h2 {
    font-size: 2.3rem;
    color: #92400e;
    margin-bottom: 20px;
    font-weight: 800;
}

.verify-dialog p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #78350f;
}

.verify-notice {
    background: rgba(217, 119, 6, 0.15);
    padding: 18px;
    border-radius: 12px;
    margin-top: 25px;
    border-left: 4px solid #d97706;
    font-weight: 600;
}

.verify-controls {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    justify-content: center;
}

.control-accept,
.control-decline {
    padding: 16px 38px;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-accept {
    background: #d97706;
    color: white;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.control-accept:hover {
    background: #b45309;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.5);
}

.control-decline {
    background: #fef3c7;
    color: #78350f;
    border: 2px solid #d97706;
}

.control-decline:hover {
    background: #fde68a;
}

.primary-header {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    box-shadow: 0 2px 12px rgba(120, 53, 15, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d97706;
}

.header-container {
    max-width: 100%;
    padding: 22px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #92400e;
}

.nav-button {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.button-stripe {
    width: 30px;
    height: 3px;
    background: #d97706;
    transition: 0.3s;
    border-radius: 3px;
}

.site-navigation {
    display: flex;
    gap: 38px;
}

.nav-item {
    color: #78350f;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-item:hover {
    color: #d97706;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d97706;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .header-container {
        padding: 18px 25px;
    }

    .nav-button {
        display: flex;
    }

    .site-navigation {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #fffbeb, #fef3c7);
        flex-direction: column;
        padding: 32px 25px;
        gap: 0;
        box-shadow: 0 8px 20px rgba(120, 53, 15, 0.2);
        transition: left 0.3s ease;
        border-bottom: 2px solid #d97706;
    }

    .site-navigation.active {
        left: 0;
    }

    .nav-item {
        padding: 20px 0;
        border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    }

    .nav-button.active .button-stripe:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 7px);
    }

    .nav-button.active .button-stripe:nth-child(2) {
        opacity: 0;
    }

    .nav-button.active .button-stripe:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }
}

.showcase-hero {
    padding: 110px 45px;
    text-align: center;
    background: linear-gradient(135deg, #d97706, #b45309);
    position: relative;
    overflow: hidden;
}

.showcase-hero::before {
    content: '✦';
    position: absolute;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-wrapper {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-mark {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.showcase-hero h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 22px;
    font-weight: 800;
}

.hero-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 38px;
    font-weight: 300;
}

.hero-attributes {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.attribute-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 26px;
    border-radius: 25px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .showcase-hero {
        padding: 85px 25px;
    }

    .showcase-hero h1 {
        font-size: 2.6rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }
}

.introduction-section {
    padding: 100px 45px;
    background: #fffbeb;
}

.intro-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.intro-column h2 {
    font-size: 2.8rem;
    color: #92400e;
    margin-bottom: 30px;
    font-weight: 800;
}

.intro-column p {
    font-size: 1.15rem;
    margin-bottom: 22px;
    line-height: 1.85;
    color: #78350f;
}

@media (max-width: 768px) {
    .introduction-section {
        padding: 75px 25px;
    }

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-column h2 {
        font-size: 2.2rem;
    }
}

.principles-area {
    padding: 100px 45px;
    background: #fef3c7;
}

.principles-content {
    max-width: 100%;
}

.principles-content h2 {
    font-size: 2.8rem;
    color: #92400e;
    margin-bottom: 55px;
    text-align: center;
    font-weight: 800;
}

.principles-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.principle-item {
    background: #fffbeb;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(120, 53, 15, 0.12);
    border: 2px solid #fde68a;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.25);
    border-color: #d97706;
}

.item-symbol {
    font-size: 3.8rem;
    margin-bottom: 22px;
}

.principle-item h3 {
    font-size: 1.7rem;
    color: #92400e;
    margin-bottom: 18px;
    font-weight: 800;
}

.principle-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #78350f;
}

.featured-game {
    padding: 100px 45px;
    background: #fffbeb;
}

.game-content {
    max-width: 100%;
}

.game-content h2 {
    font-size: 2.8rem;
    color: #92400e;
    margin-bottom: 22px;
    text-align: center;
    font-weight: 800;
}

.game-tagline {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 45px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #78350f;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto 32px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid #d97706;
    box-shadow: 0 12px 40px rgba(217, 119, 6, 0.3);
}

.game-display {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-details {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.detail-tag {
    color: #d97706;
    font-weight: 700;
    font-size: 1.08rem;
}

@media (max-width: 768px) {
    .featured-game {
        padding: 75px 25px;
    }

    .game-display {
        height: 500px;
    }
}

.excellence-points {
    padding: 100px 45px;
    background: #fef3c7;
}

.points-wrapper {
    max-width: 100%;
}

.points-wrapper h2 {
    font-size: 2.8rem;
    color: #92400e;
    margin-bottom: 55px;
    text-align: center;
    font-weight: 800;
}

.excellence-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.excellence-tile {
    background: #fffbeb;
    padding: 38px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(120, 53, 15, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.excellence-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(217, 119, 6, 0.2);
    border-color: #d97706;
}

.tile-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #d97706;
}

.excellence-tile h3 {
    font-size: 1.6rem;
    color: #92400e;
    margin-bottom: 14px;
    font-weight: 800;
}

.excellence-tile p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #78350f;
}

.invitation-banner {
    padding: 100px 45px;
    background: linear-gradient(135deg, #d97706, #b45309);
    text-align: center;
}

.invitation-inner h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 22px;
    font-weight: 800;
}

.invitation-inner p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 38px;
}

.invitation-link {
    display: inline-block;
    background: white;
    color: #92400e;
    padding: 20px 52px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.invitation-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.site-footer {
    background: #78350f;
    color: #fef3c7;
    padding: 75px 45px 32px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-segment h4 {
    color: #fde68a;
    font-size: 1.5rem;
    margin-bottom: 22px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.footer-segment p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #fef3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fde68a;
}

.footer-copyright {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(254, 243, 199, 0.3);
    color: #fde68a;
}

@media (max-width: 768px) {
    .introduction-section,
    .principles-area,
    .featured-game,
    .excellence-points,
    .invitation-banner {
        padding: 75px 25px;
    }

    .principles-content h2,
    .game-content h2,
    .points-wrapper h2,
    .invitation-inner h2 {
        font-size: 2.2rem;
    }

    .principles-display,
    .excellence-layout {
        grid-template-columns: 1fr;
    }
}
