@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 25%, #ffbe0b 50%, #4ecdc4 75%, #95e1d3 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #2d3436;
    min-height: 100vh;
    line-height: 1.6;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 2.5rem;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-emoji {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-menu a {
    color: #2d3436;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s;
    position: relative;
}

.main-menu a:hover {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-btn {
    display: none;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero */
.hero-section {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #ffbe0b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.4rem;
    color: #636e72;
    margin-bottom: 2.5rem;
}

.start-btn {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s;
}

.start-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 107, 107, 0.6);
}

/* Content */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Info Cards */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.info-box .emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.info-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
}

.info-box p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.8;
}

/* Content Sections */
.content-panel {
    background: #fff;
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.content-panel h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.content-panel h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
    margin: 2rem 0 1rem;
}

.content-panel p {
    font-size: 1.15rem;
    color: #2d3436;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.content-panel ul {
    margin-left: 2rem;
    margin-bottom: 1.3rem;
}

.content-panel li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2d3436;
    line-height: 1.8;
}

/* Game Container */
.game-zone {
    background: linear-gradient(135deg, #fff, #f7f7f7);
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.game-zone h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
}

.game-zone iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.footer-col p {
    line-height: 1.8;
    color: #636e72;
}

.footer-col a {
    color: #2d3436;
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #dfe6e9;
    color: #636e72;
}

/* Age Modal */
.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check.active {
    display: flex;
}

.age-modal {
    background: #fff;
    border-radius: 30px;
    padding: 3.5rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.age-modal h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.age-modal p {
    font-size: 1.3rem;
    color: #636e72;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.age-modal .question {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    margin: 2rem 0;
}

.age-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-button {
    padding: 1.3rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.age-button.approve {
    background: linear-gradient(135deg, #00b894, #55efc4);
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 184, 148, 0.4);
}

.age-button.approve:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 184, 148, 0.6);
}

.age-button.reject {
    background: linear-gradient(135deg, #d63031, #e17055);
    color: #fff;
    box-shadow: 0 5px 20px rgba(214, 48, 49, 0.4);
}

.age-button.reject:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(214, 48, 49, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    .menu-btn {
        display: flex;
    }

    nav {
        display: none;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    }

    .main-menu.active {
        right: 0;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .content-panel {
        padding: 2rem;
    }

    .content-panel h2 {
        font-size: 2.3rem;
    }

    .game-zone iframe {
        height: 500px;
    }

    .age-modal {
        margin: 0 1.5rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-button {
        width: 100%;
    }
}
