* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2ECC71;
    --primary-orange: #F39C12;
    --primary-blue: #3498DB;
    --accent-yellow: #F1C40F;
    --dark-green: #27AE60;
    --white: #FFFFFF;
    --dark: #2C3E50;
    --light-gray: #ECF0F1;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    --gradient-orange: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    z-index: 1000;
    max-width: 400px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-yellow);
    color: var(--dark);
}

.btn-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

.btn-decline:hover {
    background: var(--white);
    color: var(--dark);
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-download {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

.main-content {
    padding-top: 80px;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url(./images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-tagline {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241, 196, 15, 0.4);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-yellow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    text-align: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.games-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.7;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.game-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.game-image {
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-content {
    padding: 30px;
}

.game-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.game-description {
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-features {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-game {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-item img {
    width: 50px;
    height: 50px;
}

.feature-text h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--dark);
    opacity: 0.7;
}

.features-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars img {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--primary-green);
}

.download-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-download-primary {
    display: flex;
    align-items: center;
    gap: 15px;
    /* background: var(--white); */
    color: var(--dark);
    border: none;
    /* padding: 15px 25px; */
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-download-primary img {
    width: 200px;
    height: 60px;
}

.download-text-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.download-store {
    font-size: 1.1rem;
    font-weight: bold;
}

.download-stats {
    display: flex;
    gap: 40px;
}

.download-stat {
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-yellow);
}

.stat-small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-email {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link img {
    width: 25px;
    height: 25px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-link:hover img {
    opacity: 1;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Additional Styles for Detail Pages */
.page-hero {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.detailed-games-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.detailed-game-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
    transition: all 0.3s ease;
}

.detailed-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.game-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.game-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-yellow);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.game-badge.strategy {
    background: var(--primary-blue);
    color: var(--white);
}

.game-badge.educational {
    background: var(--primary-green);
    color: var(--white);
}

.game-info {
    padding: 40px;
}

.game-name {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.game-tagline {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 500;
}

.game-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.7;
}

.game-detailed-description {
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--dark);
    opacity: 0.8;
}

.game-highlights h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.game-highlights ul {
    list-style: none;
    padding: 0;
}

.game-highlights li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--dark);
    opacity: 0.8;
}

.game-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.game-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.game-hero {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    color: var(--white);
}

.game-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.game-hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 25px;
}

.game-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.game-hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature img {
    width: 24px;
    height: 24px;
}

.hero-feature span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.game-hero-buttons {
    display: flex;
    gap: 20px;
}

.game-hero-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.game-rules {
    padding: 80px 0;
    background: var(--white);
}

.rules-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.rule-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}

.rules-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.cta-content {
    text-align: center;
    padding: 60px 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: var(--dark);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Community Page Styles */
.leaderboards {
    padding: 80px 0;
    background: var(--white);
}

.leaderboard-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.leaderboard-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 80px 1fr 100px 120px;
    gap: 20px;
    padding: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: bold;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px 120px;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    align-items: center;
}

.leaderboard-row.champion {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--white);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.rank {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

.rank.gold {
    color: #FFD700;
}

.rank.silver {
    color: #C0C0C0;
}

.rank.bronze {
    color: #CD7F32;
}

.achievements {
    padding: 80px 0;
    background: var(--light-gray);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.achievement-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.achievement-card.unlocked {
    border: 3px solid var(--primary-green);
}

.achievement-card.locked {
    opacity: 0.6;
    border: 3px solid var(--light-gray);
}

.achievement-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.achievement-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.achievement-card p {
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 15px;
}

.achievement-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.achievement-card.unlocked .achievement-status {
    background: var(--primary-green);
    color: var(--white);
}

.achievement-card.locked .achievement-status {
    background: var(--light-gray);
    color: var(--dark);
}

.community-events {
    padding: 80px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.event-card.active {
    border-left: 5px solid var(--primary-green);
}

.event-card.upcoming {
    border-left: 5px solid var(--primary-orange);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.event-status {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.event-status.live {
    background: var(--primary-green);
    color: var(--white);
}

.event-status.upcoming {
    background: var(--primary-orange);
    color: var(--white);
}

.event-info {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.event-stat {
    text-align: center;
}

.event-prizes h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.event-prizes ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.event-prizes li {
    padding: 5px 0;
    color: var(--dark);
    opacity: 0.8;
}

.social-features {
    padding: 80px 0;
    background: var(--light-gray);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.social-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Support Page Styles */
.support-options {
    padding: 80px 0;
    background: var(--white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-10px);
}

.support-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.quick-help {
    padding: 80px 0;
    background: var(--light-gray);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.help-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.help-item h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-form-section,
.bug-report-section {
    padding: 80px 0;
    background: var(--white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form,
.bug-report-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--dark);
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    outline: none;
}

.support-info {
    padding: 80px 0;
    background: var(--light-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

/* Help Center Styles */
.help-categories {
    padding: 80px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    color: var(--dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
}

.faq-answer {
    padding: 0 20px 20px;
    background: var(--white);
}

.faq-answer p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.tutorials {
    padding: 80px 0;
    background: var(--white);
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tutorial-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-10px);
}

.tutorial-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tutorial-content {
    padding: 30px;
}

.contact-support {
    padding: 80px 0;
    background: var(--light-gray);
}

.support-cta {
    text-align: center;
}

.support-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 80px 0;
    background: var(--white);
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.privacy-text h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin: 40px 0 20px;
    border-left: 4px solid var(--primary-green);
    padding-left: 20px;
}

.privacy-text p {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.8;
}

.privacy-text ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.privacy-text li {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.8;
}

.privacy-updated {
    color: var(--accent-yellow);
    font-weight: 500;
    margin-top: 10px;
}

.privacy-summary {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.summary-item h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.summary-item p {
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-contact {
    padding: 60px 0;
    background: var(--light-gray);
}

.contact-cta {
    text-align: center;
}

.contact-cta h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Game Detail Pages Additional Styles */
.action-cards,
.game-modes,
.strategy-tips,
.game-benefits,
.difficulty-levels,
.memory-tips {
    padding: 80px 0;
    background: var(--light-gray);
}

.cards-grid,
.modes-grid,
.tips-grid,
.benefits-grid,
.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.action-card,
.mode-card,
.tip-card,
.benefit-card,
.level-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.action-card:hover,
.mode-card:hover,
.tip-card:hover,
.benefit-card:hover,
.level-card:hover {
    transform: translateY(-10px);
}

.action-card img,
.mode-icon img,
.tip-icon img,
.benefit-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.level-card.beginner {
    border-top: 5px solid var(--primary-green);
}

.level-card.intermediate {
    border-top: 5px solid var(--primary-blue);
}

.level-card.advanced {
    border-top: 5px solid var(--primary-orange);
}

.level-card.expert {
    border-top: 5px solid #E74C3C;
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.level-badge {
    background: var(--light-gray);
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.level-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.level-features .feature {
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tip-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tip-icon img {
    width: 50px;
    height: 50px;
}

.tips-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    .game-hero-content,
    .rules-content,
    .tips-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .game-hero-title {
        font-size: 2.5rem;
    }
    
    .game-hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .game-actions,
    .cta-buttons,
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 60px 1fr 80px 100px;
        gap: 10px;
        padding: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .event-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
} 

.options-image{
    background-image: url(./images/support-options.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}