/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B9D;
    --primary-dark: #FF4785;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --dark: #2D3436;
    --darker: #1a1e1f;
    --light: #F7F9FC;
    --gray: #636E72;
    --gray-light: #B2BEC3;
    --gradient-1: linear-gradient(135deg, #FF6B9D 0%, #FF8E53 100%);
    --gradient-2: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    --gradient-3: linear-gradient(135deg, #FFE66D 0%, #FFA502 100%);
    --fun-purple: #A29BFE;
    --fun-blue: #74B9FF;
    --fun-green: #55EFC4;
    --fun-pink: #FF6B9D;
    --fun-orange: #FF8E53;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Fun Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(255, 107, 157, 0.1);
}

.nav-links a::after {
    display: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-light);
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu a::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons - Fun Game Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 6px 0 #E84A7F, 0 10px 20px rgba(255, 107, 157, 0.4);
    border-bottom: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 0 #E84A7F, 0 15px 30px rgba(255, 107, 157, 0.5);
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #E84A7F, 0 5px 10px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    box-shadow: 0 6px 0 #D1D8E0, 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 0 #D1D8E0, 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #D1D8E0, 0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn-white {
    background: white;
    color: var(--dark);
    box-shadow: 0 6px 0 #B2BEC3, 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 0 #B2BEC3, 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Hero Section - Fun Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #F7F9FC 0%, #E8F4F8 50%, #FFF5F7 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 230, 109, 0.1) 0%, transparent 40%);
}

/* Floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    opacity: 0.6;
}

.hero-shape-2 {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    opacity: 0.6;
}

.hero-shape-3 {
    width: 40px;
    height: 40px;
    background: var(--gradient-3);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--fun-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Phone Mockup - Fun Style */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 8px rgba(255, 255, 255, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    border: none;
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFE66D 0%, #FF8E53 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.phone-apps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
    width: 100%;
}

.phone-app-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.phone-app-item:hover {
    transform: scale(1.05) translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.phone-app-item:nth-child(1):hover {
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.phone-app-item:nth-child(2):hover {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.phone-app-item:nth-child(3):hover {
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.phone-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.phone-app-name {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
}

/* Features Section - Fun Style */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #FFE66D 0%, #FFA502 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.features .section-title,
.features .section-subtitle {
    color: var(--dark);
}

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

.feature-card {
    padding: 40px 30px;
    background: white;
    border: none;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Products Section - Fun Style */
.products-section {
    padding: 120px 0;
    position: relative;
    background: white;
}

.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 90% 10%, rgba(255, 107, 157, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(78, 205, 196, 0.08) 0%, transparent 40%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border: 3px solid transparent;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.product-card.featured {
    border-color: var(--fun-green);
    background: linear-gradient(135deg, white 0%, rgba(78, 205, 196, 0.05) 100%);
}

.product-card.featured:hover {
    border-color: var(--fun-green);
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.25);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 8px 18px;
    background: var(--gradient-2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.app-logo-small {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 24px;
    color: white;
}

.product-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.product-info-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.rating-small {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--light);
}

.downloads-small {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-top: 8px;
}

/* Footer - Fun Style */
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, #2D3436 0%, #1a1e1f 100%);
    border-top: none;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--gray-light);
    margin: 20px 0;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

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

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Product Page Styles - Fun Style */
.product-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #FFE66D 0%, #FF8E53 100%);
}

.product-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.product-logo {
    margin-bottom: 30px;
}

.app-logo {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.app-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 6px solid white;
    animation: appIconBounce 2s ease-in-out infinite;
}

@keyframes appIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.app-logo-small-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 auto 24px;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.app-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 14px;
    background: #10b981;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--light);
    font-weight: 600;
}

.downloads {
    color: var(--gray-light);
}

/* Screenshots Section - Fun Style */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(135deg, #A29BFE 0%, #6C5CE7 100%);
    position: relative;
    overflow: hidden;
}

.screenshots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21-1.79 4-4 4-3.314 0-6 2.686-6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6 0-2.21 1.79-4 4-4 3.314 0 6-2.686 6-6 0-2.21-1.79-4-4-4v-2c3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21-1.79 4-4 4-3.314 0-6 2.686-6 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 0;
}

.screenshot-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 4px solid white;
}

.screenshot-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

.game-screen-1, .game-screen-2, .game-screen-3 {
    padding: 30px 20px;
}

.game-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.score {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.block-playfield {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.block-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.gblock {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}

.gblock.cyan { background: #06b6d4; }
.gblock.magenta { background: #ec4899; }
.gblock.yellow { background: #fbbf24; }
.gblock.green { background: #10b981; }
.gblock.empty { background: rgba(255, 255, 255, 0.1); }

.pop-anim {
    animation: pop 0.5s ease-in-out infinite alternate;
}

@keyframes pop {
    from { transform: scale(1); }
    to { transform: scale(0.9); opacity: 0.7; }
}

.level-badge {
    align-self: flex-start;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.combo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 1s ease-in-out infinite;
}

.menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.menu-overlay h3 {
    font-size: 1.5rem;
}

.stars {
    display: flex;
    gap: 8px;
}

.menu-btn {
    padding: 16px 36px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 6px 0 #E84A7F, 0 10px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.2s ease;
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #E84A7F, 0 15px 30px rgba(255, 107, 157, 0.5);
}

.menu-btn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #E84A7F, 0 5px 10px rgba(255, 107, 157, 0.4);
}

/* Features Detail */
.features-detail {
    padding: 100px 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-detail-card.reverse {
    direction: rtl;
}

.feature-detail-card.reverse > * {
    direction: ltr;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--gray-light);
}

/* Reviews */
.reviews {
    padding: 100px 0;
    background: var(--dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.info {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 600;
    font-size: 0.95rem;
}

.date {
    font-size: 0.85rem;
    color: var(--gray);
}

/* CTA Section - Fun Style */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-box {
    background: white;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .feature-detail-card,
    .feature-detail-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
    }
    
    .feature-visual {
        display: flex;
        justify-content: center;
    }
    
    .icon-circle {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
    }
    
    .screenshot-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .screenshot-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .cta-box {
        padding: 50px 24px;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .screenshot-gallery {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}
