@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --amber: #ff8c00;
    --violet: #4a148c;
    --dark-violet: #2a0845;
    --light-amber: #ffb347;
    --bg-dark: #0d0221;
    --bg-card: #1a0836;
    --text-primary: #ffffff;
    --text-secondary: #d4c5e0;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

header {
    background: rgba(42, 8, 69, 0.96);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(255, 140, 0, 0.3);
    border-bottom: 1px solid var(--amber);
}

.container-fluid {
    max-width: 100%;
    padding: 0 3rem;
    margin: 0 auto;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.brand-circle {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--amber), var(--light-amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-violet);
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.5);
    transition: transform 0.3s ease;
}

.brand-identity:hover .brand-circle {
    transform: scale(1.1);
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.navigation a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.navigation a:hover {
    color: var(--amber);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 32px;
    height: 3px;
    background: var(--amber);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.page-content {
    margin-top: 100px;
}

.hero-banner {
    background: linear-gradient(135deg, var(--bg-dark), var(--dark-violet));
    padding: 6rem 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 4rem;
}

.hero-banner h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--amber), var(--light-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-banner p {
    font-size: 1.6rem;
    color: var(--text-secondary);
    max-width: 850px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, var(--bg-card), var(--dark-violet));
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem 0;
    border: 2px solid var(--violet);
    box-shadow: 0 10px 40px rgba(74, 20, 140, 0.4);
}

.info-card h2 {
    font-size: 2.8rem;
    color: var(--amber);
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-card ul {
    list-style: none;
    font-size: 1.3rem;
    line-height: 2.3;
}

.info-card li {
    padding-left: 2rem;
    position: relative;
}

.info-card li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-size: 1.8rem;
    line-height: 1;
}

.content-area {
    padding: 5rem 0;
}

.content-area h2 {
    font-size: 3.2rem;
    color: var(--amber);
    margin-bottom: 2rem;
    font-weight: 700;
}

.content-area p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.game-frame {
    background: var(--bg-card);
    border-radius: 40px;
    padding: 3rem;
    margin: 5rem 0;
    border: 3px solid var(--amber);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 720px;
    border: none;
    border-radius: 25px;
    background: #000;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.card-item {
    background: linear-gradient(135deg, var(--bg-card), var(--violet));
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(255, 140, 0, 0.3);
    transition: all 0.4s ease;
}

.card-item:hover {
    border-color: var(--amber);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.4);
}

.card-item h3 {
    font-size: 2rem;
    color: var(--amber);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.card-item p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

footer {
    background: rgba(42, 8, 69, 0.96);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 2px solid var(--amber);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.7rem;
    color: var(--amber);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 2.4;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-section a:hover {
    color: var(--amber);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 140, 0, 0.3);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 2, 33, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, var(--dark-violet), var(--bg-card));
    padding: 4rem;
    border-radius: 35px;
    text-align: center;
    max-width: 600px;
    border: 3px solid var(--amber);
    box-shadow: 0 25px 80px rgba(255, 140, 0, 0.5);
}

.modal-content h2 {
    font-size: 3rem;
    color: var(--amber);
    margin-bottom: 2rem;
    font-weight: 800;
}

.modal-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.modal-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.modal-btn {
    padding: 1.3rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.modal-accept {
    background: linear-gradient(135deg, var(--amber), var(--light-amber));
    color: var(--dark-violet);
}

.modal-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 140, 0, 0.6);
}

.modal-decline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--amber);
}

.modal-decline:hover {
    background: rgba(255, 140, 0, 0.15);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .navigation ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(42, 8, 69, 0.98);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 2px solid var(--amber);
    }

    .navigation ul.active {
        right: 0;
    }

    .container-fluid {
        padding: 0 1.5rem;
    }

    .hero-banner h1 {
        font-size: 3rem;
    }

    .hero-banner p {
        font-size: 1.3rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .game-frame iframe {
        height: 500px;
    }
}
