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

:root {
    /* Colors */
    --primary-yellow: #FFF4B7;
    --sky-blue: #B8E6FF;
    --mint-green: #B8FFD1;
    --peach: #FFD1B8;
    --coral: #FF6B6B;
    --lavender: #E6E6FA;
    --white: #FFFFFF;
    --text-dark: #2D3748;
    --text-light: #718096;
    --gray-900: #1A202C;
    --gray-800: #2D3748;
    --gray-700: #4A5568;
    --gray-600: #718096;
    --gray-400: #CBD5E0;
    --gray-200: #E2E8F0;
    --gray-100: #F7FAFC;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--coral), #FF8E53);
    --gradient-secondary: linear-gradient(135deg, var(--primary-yellow), var(--peach));
    --gradient-text: linear-gradient(135deg, var(--coral), #4ECDC4, #45B7D1);
    --gradient-hero: linear-gradient(135deg, var(--primary-yellow) 0%, var(--sky-blue) 50%, var(--mint-green) 100%);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.6s ease;

    /* Spacing */
    --container-padding: 20px;
    --section-padding: 80px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--gradient-hero);
    min-height: 100vh;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-inner {
    padding: 16px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

a {
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
}

.logo-icon i {
    color: white;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover {
    color: var(--coral);
    transform: translateY(-2px);
}

.nav-download-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn i {
    font-size: 20px;
    color: var(--text-dark);
}

.mobile-menu {
    display: none;
    margin-top: 16px;
}

.mobile-menu-inner {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
}

.mobile-nav-link:hover {
    color: var(--coral);
}

.mobile-download-btn {
    display: block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-normal);
}

.mobile-download-btn i {
    margin-right: 8px;
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    opacity: 0.7;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.cloud-2 {
    width: 80px;
    height: 30px;
    top: 30%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.cloud-3 {
    width: 120px;
    height: 50px;
    top: 60%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-star,
.floating-heart,
.floating-magic {
    position: absolute;
    font-size: 24px;
    animation: float 4s ease-in-out infinite;
}

.star-1 {
    top: 40%;
    right: 25%;
    color: #FCD34D;
    animation-delay: 0.5s;
}

.heart-1 {
    bottom: 60%;
    right: 10%;
    color: #F472B6;
    animation-delay: 1.5s;
}

.magic-1 {
    top: 25%;
    left: 15%;
    color: #A78BFA;
    animation-delay: 2s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.title-highlight {
    position: relative;
}

.title-magic {
    position: absolute;
    top: -16px;
    right: -32px;
    color: #FCD34D;
    font-size: 24px;
    animation: wiggle 1s ease-in-out infinite;
}

.hero-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-dark);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-image {
    position: relative;
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 100%;
    max-width: 800px;
    height: auto;

    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(244, 114, 182, 0.2));
    border-radius: var(--radius-xl);
    filter: blur(48px);
    z-index: 1;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-description {
    font-size: 20px;
    color: var(--text-light);
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.5);
}

.about-inner {
    /* Inner container styles handled by container class */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.heart-icon {
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
}

.magic-icon {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
}

.social-icon {
    background: linear-gradient(135deg, #34D399, #10B981);
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.about-image-container {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.about-badge i {
    color: white;
    font-size: 32px;
}

/* Gameplay Section */
.gameplay {
    background: linear-gradient(135deg, rgba(184, 255, 209, 0.3), rgba(184, 230, 255, 0.3));
}

.gameplay-inner {
    /* Inner container styles handled by container class */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-normal);
}

.feature-card:hover .card-icon {
    animation: bounce 0.6s ease;
}

.egg-icon {
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
}

.home-icon {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
}

.trade-icon {
    background: linear-gradient(135deg, #34D399, #10B981);
}

.adventure-icon {
    background: linear-gradient(135deg, #F472B6, #EC4899);
}

.custom-icon {
    background: linear-gradient(135deg, #A78BFA, #8B5CF6);
}

.community-icon {
    background: linear-gradient(135deg, #FB923C, #F97316);
}

.card-icon i {
    color: white;
    font-size: 24px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.card-description {
    color: var(--text-light);
    line-height: 1.6;
}

.gameplay-showcase {
    text-align: center;
}

.showcase-image {
    width: 100%;
    max-width: 1024px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Characters Section */
.characters {
    background: rgba(255, 255, 255, 0.5);
}

.characters-inner {
    /* Inner container styles handled by container class */
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.character-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    text-align: center;
}

.character-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: var(--shadow-xl);
}

.sunny-card {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.luna-card {
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
}

.robo-card {
    background: linear-gradient(135deg, #F1F5F9, #CBD5E1);
}

.rainbow-card {
    background: linear-gradient(135deg, #FCE7F3, #F3E8FF);
}

.character-emoji {

    transition: var(--transition-normal);
}

.character-emoji img {
    width: 150px;
    height: 150px;
    border-radius: 50%;


}

.character-card:hover .character-emoji {
    animation: bounce 0.6s ease;
}

.character-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.character-description {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.character-traits {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trait {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.cheerful {
    background: #F59E0B;
}

.energetic {
    background: #FB923C;
}

.mystical {
    background: #A78BFA;
}

.gentle {
    background: #60A5FA;
}

.smart {
    background: #6B7280;
}

.helpful {
    background: #60A5FA;
}

.magical {
    background: #F472B6;
}

.wise {
    background: #A78BFA;
}

.characters-showcase {
    text-align: center;
}

.characters-image {
    width: 100%;
    max-width: 700px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Environments Section */
.environments {
    background: linear-gradient(135deg, rgba(255, 209, 184, 0.3), rgba(230, 230, 250, 0.3));
}

.environments-inner {
    /* Inner container styles handled by container class */
}

.environments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.env-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}


.env-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sparkle-card {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.coconut-card {
    background: linear-gradient(135deg, #FDE68A, #FEF3C7);
}

.crystal-card {
    background: linear-gradient(135deg, #F3E8FF, #E0E7FF);
}

.foggy-card {
    background: linear-gradient(135deg, #E0F2FE, #F0F9FF);
}

.env-emoji {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.enf-emoji img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.place img {
    width: 220px;
    height: 220px;
    border-radius: 1%
}

.env-card:hover .env-emoji {
    animation: wiggle 1s ease-in-out infinite;
}

.env-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.env-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.environments-showcase {
    text-align: center;
}

.environments-image {
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Reviews Section */
.reviews {
    background: rgba(255, 255, 255, 0.5);
}

.reviews-inner {
    /* Inner container styles handled by container class */
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.rating-card {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.reviews-card {
    background: linear-gradient(135deg, #E0F2FE, #F0F9FF);
}

.recommend-card {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
}

.rank-card {
    background: linear-gradient(135deg, #FCE7F3, #F9A8D4);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-note {
    font-size: 12px;
    color: var(--text-light);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
}

.stars i {
    color: #FCD34D;
    font-size: 16px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #FCD34D;
    font-size: 14px;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.review-highlights {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.highlights-inner {
    max-width: 800px;
    margin: 0 auto;
}

.highlights-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.love-icon {
    background: linear-gradient(135deg, #F472B6, #EC4899);
}

.social-highlight-icon {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
}

.relax-icon {
    background: linear-gradient(135deg, #34D399, #10B981);
}

.highlight-icon i {
    color: white;
    font-size: 24px;
}

.highlight-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* Events Section */
.events {
    background: linear-gradient(135deg, rgba(184, 255, 209, 0.3), rgba(184, 230, 255, 0.3));
}

.events-inner {
    /* Inner container styles handled by container class */
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.events-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.event-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.event-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.event-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.daily-icon {
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
}

.seasonal-icon {
    background: linear-gradient(135deg, #A78BFA, #8B5CF6);
}

.challenge-icon {
    background: linear-gradient(135deg, #34D399, #10B981);
}

.event-icon i {
    color: white;
    font-size: 20px;
}

.event-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.event-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.events-image {
    position: relative;
}

.events-image-container {
    position: relative;
}

.events-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.events-badge {
    position: absolute;
    top: -24px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.events-badge i {
    color: white;
    font-size: 24px;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(244, 114, 182, 0.2));
}

.download-inner {
    /* Inner container styles handled by container class */
}

.download-title {
    font-size: 56px;
}

.download-description {
    font-size: 24px;
    max-width: 1024px;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    color: white;
    font-weight: 600;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.app-store {
    background: var(--text-dark);
}

.google-play {
    background: #34A853;
}

.store-button i {
    font-size: 32px;
}

.store-text {
    text-align: left;
}

.store-label {
    font-size: 12px;
    opacity: 0.8;
    display: block;
}

.store-name {
    font-size: 20px;
    font-weight: 700;
}

.download-features {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

.features-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list .feature-item i {
    color: #10B981;
    font-size: 16px;
}

.features-list .feature-item span {
    color: var(--text-light);
    line-height: 1.5;
}

.download-stats {
    display: flex;
    gap: 32px;
}

.download-stat {
    text-align: center;
}

.download-stat .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 4px;
}

.download-stat .stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.download-image {
    position: relative;
}

.download-image-container {
    position: relative;
    z-index: 2;
}

.download-img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.download-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(244, 114, 182, 0.2));
    border-radius: var(--radius-xl);
    filter: blur(48px);
    z-index: 1;
}

.download-star-1 {
    position: absolute;
    top: -32px;
    left: -32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.download-star-1 i {
    color: white;
    font-size: 20px;
}

.download-heart {
    position: absolute;
    bottom: -32px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F472B6, #EC4899);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.download-heart i {
    color: white;
    font-size: 24px;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 48px 0 16px;
}

.footer-inner {
    /* Inner container styles handled by container class */
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand {
    /* Brand section styles */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon i {
    color: white;
    font-size: 20px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-copyright i {
    color: var(--coral);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 107, 107, 0.6);
    }
}

@keyframes wiggle {

    0%,
    7%,
    14%,
    21%,
    28%,
    35%,
    42%,
    49%,
    56%,
    63%,
    70%,
    77%,
    84%,
    91%,
    98%,
    100% {
        transform: rotate(0deg);
    }

    3.5%,
    10.5%,
    17.5%,
    24.5%,
    31.5%,
    38.5%,
    45.5%,
    52.5%,
    59.5%,
    66.5%,
    73.5%,
    80.5%,
    87.5%,
    94.5% {
        transform: rotate(2deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-content,
    .about-content,
    .events-content,
    .download-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .characters-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .download-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-social {
        justify-content: center;
    }

    .review-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .environments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
        --section-padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .download-title {
        font-size: 32px;
    }

    .download-description {
        font-size: 18px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }

    .environments-grid {
        grid-template-columns: 1fr;
    }

    .review-stats {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.active {
    display: block;
}





/* Styles for Privacy Policy, Terms & Conditions, and Thanks Pages */

/* Privacy Policy Section */
.privacy {
    background: linear-gradient(135deg, rgba(255, 244, 183, 0.3), rgba(184, 230, 255, 0.3));
    padding: 64px 0;
}

.privacy-inner {
    /* Inherits container styles */
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.privacy-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.privacy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.privacy-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.privacy-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.privacy-link {
    color: var(--coral);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.privacy-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    transition: var(--transition-normal);
}

.privacy-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Terms & Conditions Section */
.terms {
    background: linear-gradient(135deg, rgba(230, 230, 250, 0.3), rgba(255, 209, 184, 0.3));
    padding: 64px 0;
}

.terms-inner {
    /* Inherits container styles */
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.terms-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.terms-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.terms-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.terms-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.terms-link {
    color: var(--coral);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.terms-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    transition: var(--transition-normal);
}

.terms-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Thanks Section */
.thanks {
    background: linear-gradient(135deg, rgba(184, 255, 209, 0.3), rgba(184, 230, 255, 0.3));
    padding: 80px 0;
}

.thanks-inner {
    /* Inherits container styles */
}

.thanks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.thanks-image {
    position: relative;
}

.thanks-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.thanks-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-badge i {
    color: white;
    font-size: 24px;
}

.pulse-animation {
    animation: pulse-glow 2s ease-in-out infinite;
}

.thanks-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thanks-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.thanks-links .btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.thanks-links .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .thanks-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .thanks-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .thanks-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .privacy-item,
    .terms-item {
        padding: 16px;
    }

    .privacy-title,
    .terms-title {
        font-size: 18px;
    }

    .privacy-text,
    .terms-text {
        font-size: 14px;
    }

    .thanks-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .privacy-title,
    .terms-title {
        font-size: 16px;
    }

    .privacy-text,
    .terms-text {
        font-size: 12px;
    }

    .privacy-btn,
    .terms-btn,
    .thanks-links .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .thanks-img {
        max-width: 100%;
    }
}