@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ice-blue: #4dd0e1;
    --deep-cyan: #0097a7;
    --frost: #e0f7fa;
    --dark-ice: #006064;
    --white: #ffffff;
    --shadow: rgba(77, 208, 225, 0.3);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(to bottom, #e0f7fa, #b2ebf2, #80deea);
    color: #004d40;
    min-height: 100vh;
    line-height: 1.7;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 64, 100, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, var(--frost) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 520px;
    border: 4px solid var(--ice-blue);
    box-shadow: 0 0 60px var(--shadow);
}

.age-content h2 {
    color: var(--deep-cyan);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.age-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.9;
    color: var(--dark-ice);
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--ice-blue), var(--deep-cyan));
    color: white;
}

.age-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--shadow);
}

.age-btn.no {
    background: #90a4ae;
    color: white;
}

.age-btn.no:hover {
    background: #b0bec5;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 55px;
    height: 55px;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ice-blue), var(--deep-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Desktop Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--dark-ice);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ice-blue), var(--deep-cyan));
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--deep-cyan);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background: linear-gradient(90deg, var(--ice-blue), var(--deep-cyan));
    border-radius: 4px;
    transition: all 0.3s;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero {
    background: white;
    padding: 4rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--ice-blue);
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--ice-blue), var(--deep-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: #00695c;
}

.notice-box {
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(0, 151, 167, 0.1));
    border: 3px solid var(--ice-blue);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 20px;
}

.notice-box h3 {
    color: var(--deep-cyan);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.notice-box ul {
    list-style: none;
    padding-left: 0;
}

.notice-box li {
    margin: 1rem 0;
    font-size: 1.15rem;
    padding-left: 2rem;
    position: relative;
    color: #00695c;
}

.notice-box li:before {
    content: "❄";
    position: absolute;
    left: 0;
    color: var(--ice-blue);
    font-size: 1.4rem;
}

.game-container {
    margin: 3rem 0;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--ice-blue);
}

.game-container h2 {
    background: linear-gradient(135deg, var(--ice-blue), var(--deep-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.game-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.game-wrapper iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.content-section {
    background: white;
    padding: 3rem;
    margin: 2.5rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 6px solid var(--ice-blue);
}

.content-section h2 {
    background: linear-gradient(135deg, var(--ice-blue), var(--deep-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.content-section h3 {
    color: var(--deep-cyan);
    font-size: 1.7rem;
    margin: 2.5rem 0 1.2rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #00695c;
}

.content-section ul, .content-section ol {
    margin: 1.2rem 0 1.5rem 2.5rem;
}

.content-section li {
    margin: 0.7rem 0;
    line-height: 1.8;
    color: #00695c;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--ice-blue), var(--deep-cyan));
    color: white;
    padding: 3.5rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    padding: 0.7rem 1.5rem;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
}

.footer-links a:hover {
    background: white;
    color: var(--deep-cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-disclaimer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    opacity: 0.9;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 1.2rem;
        border-bottom: 2px solid rgba(77, 208, 225, 0.2);
    }

    nav a::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 2.5rem;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .age-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .age-content h2 {
        font-size: 2rem;
    }
    
    .game-wrapper iframe {
        height: 450px;
    }

    header {
        padding: 1.5rem 2rem;
    }
}
