/* NEEDAILY Landing Page Styles */
/* Color scheme from Flutter app */
:root {
    --primary: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #81C784;
    --secondary: #2196F3;
    --secondary-dark: #1976D2;
    --secondary-light: #64B5F6;
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
    --white: #FFFFFF;
    --black: #000000;
    --grey: #9E9E9E;
    --grey-light: #E0E0E0;
    --grey-dark: #616161;
    --background: #F5F5F5;
    --surface: #FFFFFF;
    --text-primary: #212121;
    --text-secondary: #757575;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-text h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(76, 175, 80, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

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

.stat {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

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

/* Phone Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    will-change: transform;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 50;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.map-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f5e9 0%, #f5f7fa 100%);
    position: relative;
}

.marker {
    position: absolute;
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.marker-1 {
    animation-delay: 0s;
}

.marker-2 {
    animation-delay: 0.5s;
}

.marker-3 {
    animation-delay: 1s;
}

.marker-4 {
    animation-delay: 1.5s;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
    z-index: 10;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

/* Features Section */
.features {
    background: var(--white);
}

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

.feature-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: var(--background);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    flex-shrink: 0;
}

/* Categories Section */
.categories {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-item {
    background: var(--surface);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 3px solid transparent;
}

.category-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--category-color);
}

.category-emoji {
    font-size: 48px;
}

.category-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.download .section-title,
.download .section-subtitle {
    color: var(--white);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.store-button {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.store-text {
    font-size: 12px;
    text-align: left;
    opacity: 0.8;
}

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

.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

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

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

    .hero-text h1 {
        font-size: 42px;
    }

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

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

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .steps {
        flex-direction: column;
    }

    .step-connector {
        width: 3px;
        height: 60px;
        background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .store-button {
        width: 100%;
        max-width: 360px;
    }

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

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

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

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

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

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

    .hero-stats {
        flex-direction: row;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat {
        text-align: center;
        flex: 0 0 auto;
        min-width: 90px;
        max-width: 110px;
    }

    .stat-number {
        font-size: 26px;
        margin-bottom: 6px;
        font-weight: 800;
    }

    .stat-label {
        font-size: 11px;
        line-height: 1.4;
    }

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

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

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

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .marker {
        font-size: 24px;
    }

    .problem-card {
        padding: 14px 16px;
    }

    .problem-icon {
        font-size: 24px;
    }

    .problem-card h3 {
        font-size: 15px;
    }

    .problem-card ul li {
        font-size: 12px;
    }

    .example-card {
        padding: 24px;
    }

    .example-emoji {
        font-size: 42px;
    }

    .free-content h2 {
        font-size: 32px;
    }

    .free-subtitle {
        font-size: 18px;
    }

    .free-features {
        padding: 24px;
    }

    .free-feature {
        font-size: 16px;
    }

    .free-bottom {
        font-size: 16px;
    }

    .screenshot-item img {
        max-height: 500px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .store-button {
        width: 100%;
        max-width: 320px;
    }
}

/* Problem Section */
.problem-section {
    background: var(--background);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card {
    background: var(--surface);
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.problem-card.bad {
    border: 2px solid var(--error);
}

.problem-card.good {
    border: 2px solid var(--success);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, var(--surface) 100%);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.problem-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.problem-card ul {
    list-style: none;
}

.problem-card ul li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    margin-bottom: 5px;
}

.problem-card.bad ul li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: 700;
    font-size: 20px;
}

.problem-card.good ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

/* Examples Section */
.examples-section {
    background: var(--white);
    padding: 80px 0;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.example-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid var(--grey-light);
}

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.example-emoji {
    font-size: 56px;
    margin-bottom: 16px;
    text-align: center;
}

.example-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

.example-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
}

.example-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 2px solid var(--grey-light);
    flex-wrap: wrap;
}

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

.old-price {
    color: var(--text-secondary);
    text-decoration: line-through;
}

.new-price {
    color: var(--success);
}

.arrow {
    font-size: 24px;
    color: var(--text-secondary);
}

.time {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

/* Screenshots Section */
.screenshots-section {
    background: var(--background);
    padding: 80px 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.screenshot-item {
    background: var(--surface);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 3px solid var(--primary);
    max-height: 600px;
    object-fit: cover;
    object-position: top;
}

.screenshot-caption {
    padding: 24px;
}

/* Navigation Gallery - 3 images side by side */
.screenshot-gallery .gallery-images {
    display: flex;
    align-items: stretch;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    gap: 0;
}

.screenshot-gallery .gallery-images img {
    flex: 1;
    width: 31%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-gallery .gallery-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.screenshot-gallery .gallery-images img:not(:last-child) {
    margin-right: -8px;
}

.screenshot-gallery .gallery-images img:nth-child(1) {
    z-index: 3;
}

.screenshot-gallery .gallery-images img:nth-child(2) {
    z-index: 2;
}

.screenshot-gallery .gallery-images img:nth-child(3) {
    z-index: 1;
}

@media (max-width: 640px) {
    .screenshot-gallery .gallery-images {
        padding: 10px;
    }

    .screenshot-gallery .gallery-images img {
        max-height: 280px;
        border-radius: 8px;
        border-width: 2px;
    }

    .screenshot-gallery .gallery-images img:not(:last-child) {
        margin-right: -6px;
    }
}

.screenshot-caption h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.screenshot-caption p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Free Section */
.free-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    padding: 80px 0;
    color: var(--white);
}

.free-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.free-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.free-subtitle {
    font-size: 22px;
    margin-bottom: 48px;
    opacity: 0.95;
}

.free-features {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
}

.free-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    margin-bottom: 20px;
}

.free-feature:last-child {
    margin-bottom: 0;
}

.free-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.free-text {
    flex: 1;
    text-align: left;
}

.free-bottom {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===========================
   NEW YEAR FIREWORKS THEME
   =========================== */

/* Fireworks Animation (Lottie) */
.fireworks-lottie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.fireworks-lottie lottie-player {
    width: 100%;
    height: 100%;
}

/* App Available Wrapper */
.app-available-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 240, 0.95) 100%);
    border-radius: 24px;
    padding: 28px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(52, 168, 83, 0.2),
        0 8px 32px rgba(66, 133, 244, 0.15);
    text-align: center;
}

.app-available-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.available-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.available-icon {
    font-size: 32px;
    animation: celebrate-bounce 1s ease-in-out infinite;
}

.available-icon:last-child {
    animation-delay: 0.3s;
}

@keyframes celebrate-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.available-title {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #34a853, #4285f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Big Google Play Button */
.big-store-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.big-store-button.google-play {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.big-store-button.google-play:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.store-button-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-button-icon svg {
    width: 40px;
    height: 40px;
    fill: url(#google-gradient);
}

.big-store-button.google-play .store-button-icon svg {
    fill: #34a853;
}

.store-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.store-button-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.store-button-name {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.store-button-badge {
    background: linear-gradient(135deg, #34a853, #4285f4);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(52, 168, 83, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(52, 168, 83, 0.8), 0 0 30px rgba(66, 133, 244, 0.5);
    }
}

/* App Store Coming Soon */
.appstore-coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.apple-icon::before {
    content: '';
    font-size: 18px;
}

/* Mobile Responsive for App Available */
@media (max-width: 640px) {
    .app-available-wrapper {
        padding: 20px 20px;
    }

    .available-title {
        font-size: 18px;
    }

    .available-icon {
        font-size: 26px;
    }

    .big-store-button {
        padding: 16px 24px;
        gap: 12px;
    }

    .store-button-icon {
        width: 40px;
        height: 40px;
    }

    .store-button-icon svg {
        width: 32px;
        height: 32px;
    }

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

    .store-button-label {
        font-size: 12px;
    }

    .store-button-badge {
        font-size: 9px;
        padding: 4px 10px;
    }
}

/* Store Status Badges */
.store-status-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.store-badge.apple {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

.store-badge.google {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    color: white;
}

.store-badge-icon::before {
    font-size: 18px;
}

.store-badge.apple .store-badge-icon::before {
    content: '';
}

.store-badge.google .store-badge-icon::before {
    content: '▶';
}

.store-badge-text {
    font-weight: 700;
}

.store-badge-status {
    background: rgba(255, 255, 255, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Requirements Met Banner */
.requirements-met {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(46, 125, 50, 0.15) 100%);
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 20px;
}

.check-icon {
    font-size: 22px;
    animation: check-bounce 2s ease-in-out infinite;
}

@keyframes check-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.requirements-text {
    font-size: 15px;
    font-weight: 700;
    color: #2e7d32;
    text-align: center;
}

/* Celebration Theme Updates */
.countdown-wrapper.celebration {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 240, 0.95) 100%);
}

.countdown-wrapper.celebration::after {
    background: linear-gradient(135deg, #FFD700, #FF6B6B, #4ECDC4, #FFD700);
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Celebration Hero CTA */
.hero-notify-cta.celebration {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    box-shadow: 0 8px 32px rgba(255, 165, 0, 0.4);
}

.hero-notify-cta.celebration:hover {
    box-shadow: 0 12px 40px rgba(255, 165, 0, 0.5);
}

.notify-firework {
    font-size: 24px;
    animation: firework-sparkle 1.5s ease-in-out infinite;
}

@keyframes firework-sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.3) rotate(15deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
    }
    75% {
        transform: scale(1.2) rotate(-15deg);
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .store-status-badges {
        gap: 10px;
    }

    .store-badge {
        padding: 8px 12px;
        font-size: 11px;
    }

    .store-badge-status {
        font-size: 9px;
        padding: 2px 8px;
    }

    .requirements-met {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .requirements-text {
        font-size: 13px;
    }

    .notify-firework {
        font-size: 20px;
    }
}

/* Christmas Countdown Timer */
.countdown-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 24px;
    padding: 28px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(196, 30, 58, 0.15),
        0 8px 32px rgba(34, 139, 34, 0.15),
        inset 0 0 0 3px transparent;
}

.countdown-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, #c41e3a, #228b22);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.countdown-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.countdown-icon {
    font-size: 28px;
    animation: bounce-icon 2s ease-in-out infinite;
}

.countdown-icon:last-child {
    animation-delay: 0.5s;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

.countdown-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #c41e3a 0%, #228b22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.countdown-separator {
    font-size: 40px;
    font-weight: 800;
    color: #c41e3a;
    margin-top: -20px;
    animation: pulse-separator 1s ease-in-out infinite;
}

@keyframes pulse-separator {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.countdown-date {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive Countdown */
@media (max-width: 640px) {
    .countdown-wrapper {
        padding: 20px 16px;
        margin-bottom: 24px;
    }

    .countdown-header {
        gap: 8px;
        margin-bottom: 16px;
    }

    .countdown-icon {
        font-size: 22px;
    }

    .countdown-title {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .countdown-timer {
        gap: 4px;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-value {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .countdown-separator {
        font-size: 28px;
        margin-top: -14px;
    }

    .countdown-date {
        font-size: 13px;
        margin-top: 16px;
    }
}

/* Hero Notify CTA Button */
.hero-notify-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #c41e3a 0%, #228b22 100%);
    border: none;
    border-radius: 60px;
    padding: 16px 32px;
    margin-bottom: 28px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(196, 30, 58, 0.4);
}

.hero-notify-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-notify-cta:hover::before {
    left: 100%;
}

.hero-notify-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.5);
}

.hero-notify-cta:active {
    transform: translateY(-2px) scale(0.98);
}

.notify-icon {
    font-size: 28px;
    animation: tree-sway 3s ease-in-out infinite;
}

@keyframes tree-sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.notify-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.notify-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-action {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.notify-snowflake {
    font-size: 24px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .hero-notify-cta {
        padding: 14px 24px;
        gap: 12px;
    }

    .notify-icon {
        font-size: 24px;
    }

    .notify-label {
        font-size: 11px;
    }

    .notify-action {
        font-size: 15px;
    }

    .notify-snowflake {
        font-size: 20px;
    }

    .snowflake {
        font-size: 0.7rem;
    }
}

/* Email Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 48px 32px 32px;
    text-align: center;
}

.modal-body h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

#emailForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

#emailInput {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

#emailInput:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

#emailInput::placeholder {
    color: #999;
}

.modal-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.modal-submit:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.modal-submit:active {
    transform: translateY(0);
}

.modal-footer {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.modal-success {
    text-align: center;
    padding: 32px 0;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 16px;
    animation: successBounce 0.6s ease;
}

@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-success h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-success p {
    font-size: 16px;
    color: var(--text-secondary);
}

.modal-error {
    background: #ffebee;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}

.modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(76, 175, 80, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success Toast */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    z-index: 10001;
    opacity: 0;
    transition: all 0.4s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 24px;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .interest-counter-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 16px;
        gap: 8px;
    }

    .counter-text {
        font-size: 14px;
    }

    .counter-number {
        font-size: 20px;
        padding: 6px 16px;
    }

    .counter-join {
        font-size: 14px;
        padding: 8px 16px;
    }

    .modal-content {
        width: 95%;
        margin: 16px;
    }

    .modal-body {
        padding: 40px 24px 24px;
    }

    .modal-body h3 {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .toast {
        width: 90%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ===========================
   FAQ & LEGAL SECTIONS
   =========================== */

/* FAQ Section */
.faq-section {
    background: var(--background);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.faq-item a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.faq-item a:hover {
    color: #45a049;
}

/* Legal Sections (Terms & Privacy) */
.legal-section {
    background: white;
    padding: 80px 0;
}

.legal-section:nth-of-type(odd) {
    background: var(--background);
}

.legal-update {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 48px auto 0;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-section:nth-of-type(odd) .legal-content {
    background: white;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.legal-content a:hover {
    color: #45a049;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Mobile Responsive for FAQ & Legal */
@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 24px;
    }

    .legal-content {
        padding: 32px 24px;
        margin: 32px 16px 0;
    }
}

@media (max-width: 640px) {
    .faq-section,
    .legal-section {
        padding: 60px 0;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .faq-item p {
        font-size: 14px;
    }

    .legal-content {
        padding: 24px 20px;
        margin: 24px 12px 0;
    }

    .legal-content h3 {
        font-size: 19px;
        margin-top: 32px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }
}

/* ===========================
   PARTNERS SECTION
   =========================== */

.partners-section {
    background: var(--background);
    padding: 60px 0;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.partners-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-scroll::before,
.partners-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.partners-scroll::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll-partners 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 200px;
}

.partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.partner-item a:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.partner-item img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-item a:hover img {
    opacity: 1;
}

/* Partner Placeholder */
.partner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 180px;
    border: 2px dashed #ddd;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.partner-placeholder:hover {
    border-color: var(--primary);
    background: rgba(76, 175, 80, 0.05);
}

.partner-placeholder span {
    font-size: 14px;
    font-weight: 600;
    color: #999;
}

.partner-placeholder:hover span {
    color: var(--primary);
}

/* Mobile Responsive for Partners */
@media (max-width: 640px) {
    .partners-section {
        padding: 24px 0;
    }

    .partners-title {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .partners-track {
        gap: 48px;
        animation: scroll-partners 15s linear infinite;
    }

    .partner-item {
        height: 40px;
        min-width: 120px;
    }

    /* Hide extra duplicates on mobile to save space */
    .partner-item-extra {
        display: none;
    }

    .partner-item a {
        padding: 8px 16px;
    }

    .partner-item img {
        max-height: 32px;
        max-width: 120px;
    }

    .partner-placeholder {
        height: 32px;
        width: 120px;
    }

    .partner-placeholder span {
        font-size: 11px;
    }

    .partners-scroll::before,
    .partners-scroll::after {
        width: 40px;
    }
}

/* ===========================
   CHANGELOG BOX (Chat Style)
   =========================== */

.changelog-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 20px 24px;
    margin-top: 24px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(196, 30, 58, 0.1),
        0 4px 24px rgba(34, 139, 34, 0.1);
    max-width: 500px;
}

.changelog-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #c41e3a, #228b22);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.changelog-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.changelog-icon {
    font-size: 20px;
}

.changelog-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.changelog-badge {
    background: linear-gradient(135deg, #c41e3a, #228b22);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.changelog-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
    scroll-behavior: smooth;
}

/* Custom scrollbar */
.changelog-messages::-webkit-scrollbar {
    width: 6px;
}

.changelog-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.changelog-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #c41e3a, #228b22);
    border-radius: 3px;
}

.changelog-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #a01830, #1a6b1a);
}

/* Load More button */
.changelog-load-more {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.changelog-load-more button {
    background: transparent;
    border: 2px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.changelog-load-more button:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.changelog-load-more button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.changelog-load-more.hidden {
    display: none;
}

.changelog-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateX(-20px);
    animation: message-enter 0.5s ease forwards;
    padding-bottom: 12px;
    position: relative;
}

.changelog-message::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #228b22 0%, transparent 100%);
    opacity: 0.4;
}

.changelog-message:last-child::after {
    display: none;
}

@keyframes message-enter {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-avatar {
    font-size: 24px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.message-author {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.message-time {
    font-size: 11px;
    color: var(--text-secondary);
}

.message-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    word-wrap: break-word;
}

/* Loading state */
.changelog-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.changelog-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(76, 175, 80, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Empty state */
.changelog-empty {
    text-align: center;
    padding: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .changelog-box {
        padding: 16px 18px;
        margin-top: 20px;
        border-radius: 16px;
    }

    .changelog-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .changelog-icon {
        font-size: 18px;
    }

    .changelog-title {
        font-size: 12px;
    }

    .changelog-badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .changelog-messages {
        gap: 10px;
    }

    .message-avatar {
        font-size: 20px;
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .message-author {
        font-size: 11px;
    }

    .message-time {
        font-size: 10px;
    }

    .message-text {
        font-size: 13px;
    }
}
