@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Roboto:wght@300;400&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    background: #0f1419;
    color: #d4d4d4;
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a3a52 0%, #0d1f2d 100%);
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    padding: 2rem 0;
    border-right: 3px solid #2dd4bf;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #2dd4bf;
    text-decoration: none;
    display: block;
    text-align: center;
    letter-spacing: 2px;
}

.logo-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav a {
    display: block;
    color: #d4d4d4;
    text-decoration: none;
    padding: 1.2rem 2rem;
    transition: all 0.3s;
    border-left: 4px solid transparent;
    font-weight: 300;
    font-size: 1.1rem;
}

.sidebar nav a:hover {
    background: rgba(45, 212, 191, 0.1);
    border-left-color: #2dd4bf;
    color: #2dd4bf;
}

.hamburger {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 10001;
    background: #2dd4bf;
    border: none;
    color: #0f1419;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.3);
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.6) 0%, rgba(13, 31, 45, 0.6) 100%);
    border-radius: 20px;
    border: 2px solid rgba(45, 212, 191, 0.3);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #2dd4bf;
    margin-bottom: 1rem;
    font-weight: 900;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2dd4bf;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 300;
    font-style: italic;
}

.content-section {
    background: rgba(26, 58, 82, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border-left: 5px solid #2dd4bf;
    line-height: 1.9;
}

.alert-box {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    padding: 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
}

.alert-box h3 {
    color: #ef4444;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-embed {
    max-width: 1100px;
    margin: 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(45, 212, 191, 0.2);
    border: 3px solid #2dd4bf;
}

.game-embed iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.text-block {
    background: rgba(15, 20, 25, 0.6);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    line-height: 1.8;
}

.text-block p {
    margin-bottom: 1.2rem;
}

.text-block p:last-child {
    margin-bottom: 0;
}

footer {
    background: #0d1f2d;
    padding: 3rem;
    margin-top: 5rem;
    text-align: center;
    border-top: 3px solid #2dd4bf;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-resources a {
    color: #2dd4bf;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.footer-resources a:hover {
    color: #5eead4;
    text-shadow: 0 0 15px rgba(45, 212, 191, 0.5);
}

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

.age-verification.show {
    display: flex;
}

.age-verification-box {
    background: linear-gradient(135deg, #1a3a52 0%, #0d1f2d 100%);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    border: 4px solid #2dd4bf;
    box-shadow: 0 0 60px rgba(45, 212, 191, 0.4);
}

.age-verification h2 {
    margin-top: 0;
    font-size: 3rem;
}

.age-verification p {
    font-size: 1.2rem;
    margin: 2rem 0;
    line-height: 1.8;
}

.age-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.age-button {
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-button.confirm {
    background: #2dd4bf;
    color: #0f1419;
}

.age-button.confirm:hover {
    background: #5eead4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.4);
}

.age-button.deny {
    background: #ef4444;
    color: white;
}

.age-button.deny:hover {
    background: #dc2626;
    transform: translateY(-3px);
}

@media (max-width: 968px) {
    .sidebar {
        left: -280px;
        transition: left 0.3s;
    }
    
    .sidebar.open {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .game-embed iframe {
        height: 550px;
    }
    
    .age-verification-box {
        margin: 1rem;
        padding: 2.5rem;
    }
    
    .age-verification h2 {
        font-size: 2rem;
    }
    
    .age-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
}
