* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 20%, #6c5ce7 40%, #00b894 60%, #fdcb6e 80%, #ff7675 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #2d3436;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.top-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h1 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    background: linear-gradient(90deg, #ff6b9d, #6c5ce7, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #2d3436;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #6c5ce7);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #6c5ce7;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #2d3436;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 1rem 2rem;
    color: #2d3436;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(108, 92, 231, 0.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    background: linear-gradient(90deg, #ff6b9d, #6c5ce7, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3436;
    max-width: 900px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid;
}

.card-red {
    border-color: #ff6b9d;
}

.card-blue {
    border-color: #6c5ce7;
}

.card-green {
    border-color: #00b894;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.info-card p {
    line-height: 1.7;
    color: #636e72;
}

.about-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    background: linear-gradient(90deg, #ff6b9d, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 12px;
}

.feature-emoji {
    font-size: 2rem;
}

.game-showcase {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.game-showcase h3 {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    text-align: center;
    background: linear-gradient(90deg, #6c5ce7, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.game-description {
    text-align: center;
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.game-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.highlights-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.highlight-box h4 {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.highlight-box p {
    line-height: 1.7;
    color: #636e72;
}

.play-header {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.play-header h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ff6b9d, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.gameplay-info {
    margin-bottom: 2rem;
}

.gameplay-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gameplay-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.gameplay-card p {
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 1rem;
}

.play-tips-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 24px;
    margin-top: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.play-tips-section h3 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3436;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 16px;
}

.tip-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.page-header {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.page-header h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ff6b9d, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.legal-document {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.legal-document h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: #2d3436;
    margin: 2.5rem 0 1rem;
}

.legal-document h3:first-child {
    margin-top: 0;
}

.legal-document p {
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 1rem;
}

.legal-document ul {
    margin: 1rem 0;
    padding-left: 2rem;
    color: #636e72;
}

.legal-document li {
    margin: 0.5rem 0;
    line-height: 1.7;
}

.site-footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 24px;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #636e72;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.footer-links a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(45, 52, 54, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #636e72;
    margin: 0.5rem 0;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-verification.hidden {
    display: none;
}

.age-modal {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-modal h2 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    background: linear-gradient(90deg, #ff6b9d, #6c5ce7, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.age-modal p {
    color: #2d3436;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-disclaimer {
    font-size: 0.95rem;
    color: #636e72;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-yes,
.age-no {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.age-yes {
    background: linear-gradient(135deg, #6c5ce7, #00b894);
    color: white;
}

.age-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

.age-no {
    background: #dfe6e9;
    color: #2d3436;
}

.age-no:hover {
    background: #b2bec3;
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-section h2 {
        font-size: 2.2rem;
    }

    .game-embed {
        height: 500px;
    }

    .info-grid,
    .highlights-section {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .age-modal {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .game-embed {
        height: 400px;
    }

    .hero-section,
    .about-section,
    .game-showcase,
    .legal-document {
        padding: 2rem 1.5rem;
    }
}
