@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --crimson: #dc2626;
    --amber: #f59e0b;
    --dark-red: #991b1b;
    --cream: #fffbeb;
    --charcoal: #292524;
    --stone: #44403c;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
}

.header-bar {
    background: linear-gradient(to right, var(--crimson), var(--dark-red));
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 8000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-box {
    width: 52px;
    height: 52px;
    background: var(--amber);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-red);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.5);
}

.logo-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 6px;
}

.mobile-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.menu a {
    color: var(--white);
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--amber);
}

.wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    background: linear-gradient(135deg, var(--crimson), var(--dark-red));
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.intro-section h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.intro-section .subtitle {
    font-size: 1.3rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
}

.card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--crimson);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.info-card .symbol {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--crimson);
    font-weight: 700;
}

.info-card p {
    color: var(--stone);
    line-height: 1.8;
}

.game-zone {
    background: var(--charcoal);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.game-zone h2 {
    text-align: center;
    color: var(--amber);
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-holder {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.game-embed {
    width: 100%;
    height: 720px;
    border: none;
    display: block;
}

.text-area {
    padding: 4rem 0;
}

.text-area h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--crimson);
    font-weight: 900;
}

.text-area h3 {
    font-size: 2rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--dark-red);
    font-weight: 700;
}

.text-area p {
    color: var(--stone);
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-area ul {
    margin: 1.5rem 0 1.5rem 2.5rem;
    color: var(--stone);
}

.text-area li {
    margin-bottom: 0.8rem;
}

.bottom-bar {
    background: var(--charcoal);
    color: var(--cream);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
}

.bottom-content {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
}

.bottom-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.bottom-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.bottom-nav a:hover {
    background: var(--crimson);
    color: var(--white);
}

.bottom-text {
    color: var(--cream);
    opacity: 0.9;
    font-size: 0.95rem;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.age-box {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    border: 4px solid var(--crimson);
}

.age-box h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--crimson);
    font-weight: 900;
}

.age-box p {
    color: var(--stone);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.age-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-action {
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.age-action.confirm {
    background: linear-gradient(to right, var(--crimson), var(--dark-red));
    color: white;
}

.age-action.confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.age-action.deny {
    background: var(--stone);
    color: var(--white);
}

.age-action.deny:hover {
    background: var(--charcoal);
}

@media (max-width: 768px) {
    .mobile-btn {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(to bottom, var(--crimson), var(--dark-red));
        transition: left 0.3s;
        padding-top: 5rem;
        overflow-y: auto;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .menu a {
        display: block;
        padding: 1.5rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .intro-section h1 {
        font-size: 2.8rem;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .card-row {
        grid-template-columns: 1fr;
    }
}
