* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f1e;
    color: #f0f0f0;
    line-height: 1.8;
}

.page-header {
    background: rgba(15, 15, 30, 0.98);
    backdrop-filter: blur(15px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #E91E63;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo svg {
    height: 56px;
    width: 210px;
    display: block;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 7px;
    padding: 0.5rem;
}

.burger-menu span {
    width: 32px;
    height: 3px;
    background: #E91E63;
    transition: all 0.3s;
    border-radius: 2px;
}

.header-nav {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.nav-link-item {
    color: #f0f0f0;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E91E63 0%, #9C27B0 100%);
    transition: width 0.3s;
}

.nav-link-item:hover {
    color: #E91E63;
}

.nav-link-item:hover::after {
    width: 100%;
}

.main-wrapper {
    min-height: calc(100vh - 250px);
}

.page-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
}

.banner-area {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.12) 0%, rgba(156, 39, 176, 0.12) 100%);
    border-radius: 30px;
    margin-bottom: 5rem;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.banner-inner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: 1.5rem;
    max-width: 950px;
    margin: 0 auto 3rem;
    opacity: 0.92;
}

.tag-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(233, 30, 99, 0.15);
    padding: 1.25rem 2.5rem;
    border-radius: 35px;
    border: 2px solid rgba(233, 30, 99, 0.4);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.disclosure-area {
    margin: 5rem 0;
}

.disclosure-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclosure-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.disclosure-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(233, 30, 99, 0.3);
    transition: all 0.3s;
}

.disclosure-card:hover {
    transform: translateY(-10px);
    border-color: #E91E63;
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.25);
}

.disclosure-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #E91E63;
    margin-bottom: 1.5rem;
}

.game-area {
    margin: 5rem 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border-radius: 30px;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.game-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.game-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.game-header p {
    font-size: 1.25rem;
    opacity: 0.88;
}

.game-frame-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    border: 4px solid #E91E63;
}

.game-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.features-area {
    margin: 5rem 0;
}

.area-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border-radius: 25px;
    border: 1px solid rgba(233, 30, 99, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: #E91E63;
    box-shadow: 0 25px 60px rgba(233, 30, 99, 0.3);
}

.feature-symbol {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #E91E63;
    margin-bottom: 1.5rem;
}

.description-area {
    margin: 5rem 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border-radius: 30px;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.description-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
}

.description-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 2;
}

.play-banner {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 25px;
}

.play-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.play-intro-text {
    font-size: 1.4rem;
    opacity: 0.92;
}

.instructions-area {
    background: rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.instructions-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #E91E63;
    margin-bottom: 2.5rem;
}

.instructions-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.instruction-row {
    padding: 1.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border-left: 4px solid #E91E63;
}

.requirements-box {
    background: rgba(233, 30, 99, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
}

.game-display-area {
    margin: 4rem 0;
}

.game-viewer {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    border: 4px solid #E91E63;
}

.game-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.legal-content-area {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 5rem;
    border-radius: 30px;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.legal-content-area h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.revision-date {
    opacity: 0.7;
    margin-bottom: 4rem;
    font-style: italic;
    font-size: 1.1rem;
}

.terms-article {
    margin-bottom: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-article:last-child {
    border-bottom: none;
}

.terms-article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #E91E63;
    margin-bottom: 1.75rem;
}

.terms-article p {
    margin-bottom: 1.5rem;
    line-height: 2;
    font-size: 1.15rem;
}

.page-footer {
    background: rgba(15, 15, 30, 0.98);
    padding: 4rem 2.5rem;
    margin-top: 5rem;
    border-top: 3px solid #E91E63;
}

.footer-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-section {
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: #E91E63;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.footer-links-container {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.footer-links-container a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.15rem;
}

.footer-links-container a:hover {
    color: #E91E63;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 1.05rem;
    margin-top: 2.5rem;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    padding: 4.5rem;
    border-radius: 30px;
    max-width: 650px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(233, 30, 99, 0.4);
    border: 3px solid #E91E63;
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
}

.age-modal-content p {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.age-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 3.5rem;
}

.btn-agree, .btn-decline {
    padding: 1.35rem 3.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-agree {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    color: white;
}

.btn-agree:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.5);
}

.btn-decline {
    background: #666;
    color: white;
}

.btn-decline:hover {
    background: #444;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 30, 0.98);
        flex-direction: column;
        padding: 2.5rem;
        gap: 2rem;
        border-top: 3px solid #E91E63;
    }

    .header-nav.active {
        display: flex;
    }

    .banner-inner h1 {
        font-size: 3rem;
    }

    .banner-subtitle {
        font-size: 1.3rem;
    }

    .disclosure-cards, .features-grid {
        grid-template-columns: 1fr;
    }

    .legal-content-area {
        padding: 3rem 2rem;
    }

    .legal-content-area h1 {
        font-size: 2.8rem;
    }

    .game-frame-wrapper, .game-viewer {
        aspect-ratio: 16/9;
    }
}
