/* FidgetLab Website Styles */

:root {
    /* Colors */
    --primary: #AF52DE;
    --primary-dark: #8B3FBF;
    --cyan: #00D4FF;
    --pink: #FF2D55;
    --orange: #FF9500;
    --blue: #30B0C7;
    --green: #34C759;

    /* Backgrounds */
    --bg-dark: #0A0A0F;
    --bg-card: #16161D;
    --bg-card-hover: #1E1E28;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #8E8E93;
    --text-muted: #636366;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--pink) 100%);
    --gradient-glow: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(175, 82, 222, 0.3);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.5rem;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--gradient-primary);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(175, 82, 222, 0.15);
    border: 1px solid rgba(175, 82, 222, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

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

.app-store-badge img {
    height: 54px;
}

.secondary-btn {
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.2s;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

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

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a35, #1a1a22);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: 20px;
    height: 100%;
}

.preview-header {
    text-align: center;
    margin-bottom: 20px;
}

.preview-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.preview-item {
    aspect-ratio: 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.preview-item.purple { background: rgba(175, 82, 222, 0.2); }
.preview-item.cyan { background: rgba(0, 212, 255, 0.2); }
.preview-item.pink { background: rgba(255, 45, 85, 0.2); }
.preview-item.orange { background: rgba(255, 149, 0, 0.2); }

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-bubble {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    opacity: 0.3;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 50px;
    height: 50px;
    background: var(--cyan);
    opacity: 0.3;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 30px;
    height: 30px;
    background: var(--pink);
    opacity: 0.3;
    top: 30%;
    left: 15%;
    animation-delay: 4s;
}

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

/* Section Styles */
section {
    padding: var(--section-padding) 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

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

.feature-icon.purple { background: rgba(175, 82, 222, 0.2); }
.feature-icon.cyan { background: rgba(0, 212, 255, 0.2); }
.feature-icon.pink { background: rgba(255, 45, 85, 0.2); }
.feature-icon.blue { background: rgba(48, 176, 199, 0.2); }
.feature-icon.orange { background: rgba(255, 149, 0, 0.2); }
.feature-icon.green { background: rgba(52, 199, 89, 0.2); }

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

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

/* Technology Section */
.technology {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 80px;
    margin: 0 24px;
    max-width: calc(var(--container-width) - 48px);
}

.tech-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tech-text {
    flex: 1;
}

.tech-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tech-text p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.tech-features {
    list-style: none;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--green);
    font-weight: 700;
}

.tech-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.waveform {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 200px;
}

.wave {
    width: 8px;
    border-radius: 4px;
    background: var(--gradient-primary);
    animation: wave 1s ease-in-out infinite;
}

.wave-1 { height: 40%; animation-delay: 0s; }
.wave-2 { height: 80%; animation-delay: 0.2s; }
.wave-3 { height: 60%; animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Screenshots Section */
.screenshots {
    overflow: hidden;
}

.screenshot-carousel {
    overflow: hidden;
    margin: 0 -24px;
    padding: 40px 0;
}

.screenshot-track {
    display: flex;
    gap: 24px;
    animation: scroll 20s linear infinite;
}

.screenshot-item {
    flex-shrink: 0;
}

.screenshot-phone {
    width: 220px;
    height: 450px;
    background: linear-gradient(145deg, #2a2a35, #1a1a22);
    border-radius: 32px;
    padding: 10px;
}

.screenshot-content {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.purple-bg { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.cyan-bg { background: linear-gradient(135deg, var(--cyan), #00A3CC); }
.pink-bg { background: linear-gradient(135deg, var(--pink), #CC2244); }
.orange-bg { background: linear-gradient(135deg, var(--orange), #CC7700); }
.blue-bg { background: linear-gradient(135deg, var(--blue), #2090A7); }

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

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
}

.price-period {
    color: var(--text-secondary);
}

.price-monthly {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.check {
    color: var(--green);
}

.x {
    color: var(--text-muted);
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.pricing-cta.primary {
    background: var(--gradient-primary);
}

.pricing-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pricing-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    text-align: center;
    position: relative;
    padding: 120px 24px;
    background: var(--bg-card);
    border-radius: 32px;
    margin: 0 24px 80px;
    max-width: calc(var(--container-width) - 48px);
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.app-store-badge.large img {
    height: 64px;
}

.cta-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-bubble.bubble-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.cta-bubble.bubble-2 {
    width: 200px;
    height: 200px;
    background: var(--cyan);
    bottom: -50px;
    left: 10%;
}

.cta-bubble.bubble-3 {
    width: 150px;
    height: 150px;
    background: var(--pink);
    top: 20%;
    left: -50px;
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    padding: 8px 0;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

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

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

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

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .tech-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .technology {
        padding: 40px 24px;
    }
}

/* Dark mode is default - but support light mode if needed */
@media (prefers-color-scheme: light) {
    /* Keep dark mode as the design is optimized for it */
}

/* ===========================================
   LEGAL PAGES (Privacy, Terms)
   =========================================== */
.legal-page {
    padding: 120px 24px 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

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

.legal-section ul,
.legal-section ol {
    color: var(--text-secondary);
    margin-left: 24px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-section a:hover {
    color: var(--cyan);
}

/* ===========================================
   SUPPORT PAGE
   =========================================== */
.support-hero {
    background: var(--bg-card);
    padding: 140px 24px 60px;
    text-align: center;
}

.support-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.support-hero p {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.support-page {
    padding: 60px 24px 80px;
    min-height: 100vh;
}

.support-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Quick Links */
.support-quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.quick-link-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.quick-link-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.quick-link-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.quick-link-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.quick-link-card a {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.quick-link-card a:hover {
    color: var(--cyan);
}

/* Support Sections */
.support-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.support-section h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-section .faq-answer {
    max-height: none;
    overflow: visible;
    display: none;
}

.support-section .faq-item.active .faq-answer {
    display: block;
}

.support-section .faq-answer p,
.support-section .faq-answer ul,
.support-section .faq-answer ol {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.support-section .faq-answer ul,
.support-section .faq-answer ol {
    margin-left: 24px;
}

.support-section .faq-answer li {
    margin-bottom: 6px;
}

.support-section .faq-answer a {
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-section > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-btn {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-tips {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-tips h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-tips ul {
    color: var(--text-secondary);
    margin-left: 20px;
}

.contact-tips li {
    margin-bottom: 8px;
}

/* ===========================================
   PRESS KIT PAGE
   =========================================== */
.press-hero {
    background: var(--bg-card);
    padding: 140px 24px 60px;
    text-align: center;
}

.press-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.press-hero p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.press-hero .hero-cta {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.press-hero .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.press-page {
    padding: 60px 24px 80px;
    min-height: 100vh;
}

.press-container {
    max-width: 1000px;
    margin: 0 auto;
}

.press-section {
    margin-bottom: 60px;
}

.press-section h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Section */
.press-about {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.press-description .lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.press-description p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.press-facts {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
}

.press-facts h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.press-facts ul {
    list-style: none;
}

.press-facts li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.press-facts li:last-child {
    border-bottom: none;
}

.press-facts strong {
    color: var(--text-primary);
}

/* Features Grid */
.features-grid-press {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card-press {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
}

.feature-card-press .feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card-press h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

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

/* Toys Categories */
.toys-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.toy-category {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
}

.toy-category h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.toy-category p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.screenshot-placeholder {
    aspect-ratio: 9/16;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    padding: 8px;
}

/* Branding Assets */
.branding-assets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brand-asset {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.app-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 16px;
}

.logo-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-preview .logo-icon {
    font-size: 2rem;
}

.color-swatches {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.swatch {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.brand-asset p {
    font-weight: 600;
    margin-bottom: 4px;
}

.asset-format {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Download Section */
.download-section {
    text-align: center;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 48px;
}

.download-section h2 {
    border-bottom: none;
    padding-bottom: 0;
}

.download-section > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.download-contents {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    margin: 0 auto 24px;
    text-align: left;
}

.download-contents h3 {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.download-contents ul {
    color: var(--text-secondary);
    margin-left: 20px;
    font-size: 0.9rem;
}

.download-contents li {
    margin-bottom: 6px;
}

.download-btn {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.download-size {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 8px;
}

/* Press Contact */
.contact-press {
    text-align: center;
}

.contact-press > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.press-contact-info {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    display: inline-block;
}

.press-email {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.press-email:hover {
    color: var(--cyan);
}

.press-contact-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Recognition */
.recognition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recognition-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.recognition-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.recognition-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-press {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonials-press blockquote {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    border-left: 3px solid var(--primary);
}

.testimonials-press p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6;
}

.testimonials-press cite {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: normal;
}

/* ===========================================
   TRUST BADGES SECTION
   =========================================== */
.trust-section {
    padding: 40px 24px;
    background: rgba(175, 82, 222, 0.05);
    border-top: 1px solid rgba(175, 82, 222, 0.1);
    border-bottom: 1px solid rgba(175, 82, 222, 0.1);
    max-width: 100%;
    margin: 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    max-width: var(--container-width);
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-icon {
    font-size: 1.25rem;
}

/* ===========================================
   TOYS SHOWCASE SECTION
   =========================================== */
.toys-showcase {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 80px 60px;
    margin: 0 24px;
    max-width: calc(var(--container-width) - 48px);
}

.toys-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.toy-category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toy-category-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(175, 82, 222, 0.3);
}

.toy-category-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.toy-category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.toy-category-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===========================================
   PREMIUM COMPARISON SECTION
   =========================================== */
.premium-section {
    padding: var(--section-padding) 24px;
}

.premium-comparison {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(175, 82, 222, 0.15);
    padding: 20px 24px;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-feature {
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-free {
    color: var(--text-secondary);
    text-align: center;
}

.comparison-premium {
    color: var(--primary);
    text-align: center;
    font-weight: 600;
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */
.testimonials {
    padding: var(--section-padding) 24px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    font-size: 2rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===========================================
   PRICING NOTE & MISC
   =========================================== */
.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 32px;
}

.cta-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
}

/* ===========================================
   SOCIAL LINKS
   =========================================== */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Footer Grid Update */
.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.footer-links h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color 0.2s;
    font-size: 0.9rem;
}

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

/* Responsive Additions */
@media (max-width: 1024px) {
    .support-quick-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .press-about {
        grid-template-columns: 1fr;
    }

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

    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .branding-assets {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .recognition-grid,
    .testimonials-press {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .legal-container h1,
    .support-hero h1,
    .press-hero h1 {
        font-size: 2rem;
    }

    .support-quick-links {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .features-grid-press,
    .toys-categories {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand {
        max-width: none;
    }

    /* Trust badges responsive */
    .trust-badges {
        gap: 24px;
    }

    .trust-badge {
        font-size: 0.85rem;
    }

    /* Toys showcase responsive */
    .toys-showcase {
        padding: 40px 24px;
        margin: 0 16px;
        border-radius: 24px;
    }

    .toys-categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Comparison table responsive */
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* Social links responsive */
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .toys-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ===========================================
   NEW ANIMATIONS
   =========================================== */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

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

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

@keyframes pop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(175, 82, 222, 0.3); }
    50% { box-shadow: 0 0 40px rgba(175, 82, 222, 0.5); }
}

@keyframes siriWave {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

@keyframes confetti {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.slide-up {
    animation: slideUp 0.5s ease-out forwards;
    opacity: 0;
}

.pop-animation {
    animation: pop 0.5s ease-out forwards;
    opacity: 0;
}

.float-animation {
    animation: floatPhone 4s ease-in-out infinite;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(175, 82, 222, 0.2);
}

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

.glow-card {
    transition: all 0.3s ease;
}

.glow-card:hover {
    background: rgba(175, 82, 222, 0.1);
    border-color: rgba(175, 82, 222, 0.3);
    box-shadow: 0 0 30px rgba(175, 82, 222, 0.2);
}

/* ===========================================
   HERO ENHANCEMENTS
   =========================================== */
.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--cyan);
    bottom: 10%;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--pink);
    top: 40%;
    left: 30%;
    animation: float 6s ease-in-out infinite;
}

.hero {
    position: relative;
}

.preview-streak {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 149, 0, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.preview-mood-bar {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
}

.mood-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.mood-icons {
    display: flex;
    justify-content: space-around;
    font-size: 1.5rem;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: float 5s ease-in-out infinite;
    opacity: 0.5;
}

.emoji-1 { top: 5%; left: 20%; animation-delay: 0s; }
.emoji-2 { top: 60%; right: 5%; animation-delay: 1s; }
.emoji-3 { bottom: 20%; left: 10%; animation-delay: 2s; }

.btn-icon {
    margin-right: 8px;
}

/* ===========================================
   SECTION BADGES
   =========================================== */
.section-badge {
    display: inline-block;
    background: rgba(175, 82, 222, 0.15);
    border: 1px solid rgba(175, 82, 222, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* ===========================================
   FEATURE TAGS
   =========================================== */
.feature-tag {
    display: inline-block;
    background: rgba(175, 82, 222, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 16px;
}

/* ===========================================
   SPECIAL SECTION (Why FidgetLab)
   =========================================== */
.special-section {
    padding: var(--section-padding) 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.special-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.special-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(175, 82, 222, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.special-icon {
    font-size: 2.5rem;
}

.special-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.special-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================================
   MOOD TRACKING SECTION
   =========================================== */
.mood-section {
    position: relative;
    background: linear-gradient(135deg, rgba(175, 82, 222, 0.1) 0%, rgba(255, 45, 85, 0.1) 100%);
    border-radius: 32px;
    margin: 0 24px;
    padding: 80px 60px;
    max-width: calc(var(--container-width) - 48px);
    overflow: hidden;
}

.mood-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mood-gradient {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    top: -100px;
    right: -100px;
}

.mood-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.mood-text {
    flex: 1;
}

.mood-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mood-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.mood-features {
    display: grid;
    gap: 20px;
}

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

.mood-feature-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(175, 82, 222, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mood-feature strong {
    display: block;
    margin-bottom: 4px;
}

.mood-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.mood-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mood-card-stack {
    position: relative;
    width: 280px;
    height: 320px;
}

.mood-stat-card {
    position: absolute;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mood-stat-card.card-1 {
    width: 200px;
    top: 0;
    left: 0;
    z-index: 3;
}

.mood-stat-card.card-2 {
    width: 220px;
    top: 60px;
    right: 0;
    z-index: 2;
}

.mood-stat-card.card-3 {
    width: 180px;
    bottom: 0;
    left: 20px;
    z-index: 1;
}

.mood-stat-header {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mood-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
}

.mood-stat-value.positive {
    color: var(--green);
}

.mood-stat-unit {
    font-size: 1rem;
    color: var(--text-secondary);
}

.mood-stat-grade {
    color: var(--green);
    font-weight: 600;
    margin-top: 4px;
}

.mood-stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 4px;
}

.mood-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-top: 16px;
}

.chart-bar {
    flex: 1;
    background: rgba(175, 82, 222, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.chart-bar.active {
    background: var(--primary);
}

/* ===========================================
   COLLECTIONS SECTION
   =========================================== */
.collections-section {
    padding: var(--section-padding) 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.collection-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--card-color);
}

.collection-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.collection-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-info {
    flex: 1;
}

.collection-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.collection-info p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.collection-toys {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.collection-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.collection-badge.free {
    background: rgba(52, 199, 89, 0.2);
    color: var(--green);
}

.collection-badge.premium {
    background: rgba(175, 82, 222, 0.2);
    color: var(--primary);
}

.collections-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.collection-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cf-icon {
    font-size: 1.25rem;
}

/* ===========================================
   SIRI SHORTCUTS SECTION
   =========================================== */
.siri-section {
    background: var(--bg-card);
    border-radius: 32px;
    margin: 0 24px;
    padding: 80px 60px;
    max-width: calc(var(--container-width) - 48px);
}

.siri-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.siri-text {
    flex: 1;
}

.siri-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.siri-text > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.siri-commands {
    display: grid;
    gap: 16px;
}

.siri-command {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.siri-command:hover {
    background: rgba(175, 82, 222, 0.1);
}

.siri-icon {
    font-size: 1.5rem;
}

.siri-command-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.siri-command-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.siri-visual {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.siri-waveform {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100px;
}

.siri-wave {
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--pink) 100%);
    border-radius: 3px;
    animation: siriWave 1s ease-in-out infinite;
}

.siri-wave:nth-child(1) { animation-delay: 0s; }
.siri-wave:nth-child(2) { animation-delay: 0.1s; }
.siri-wave:nth-child(3) { animation-delay: 0.2s; }
.siri-wave:nth-child(4) { animation-delay: 0.3s; }
.siri-wave:nth-child(5) { animation-delay: 0.4s; }

.siri-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
}

.siri-badge-icon {
    font-size: 1.5rem;
}

/* ===========================================
   EVENTS SECTION
   =========================================== */
.events-section {
    padding: var(--section-padding) 24px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.events-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.events-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.event-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.event-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(175, 82, 222, 0.2);
}

.event-card:hover {
    transform: translateY(-8px);
}

.event-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.event-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.event-card > p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.event-rewards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.event-reward {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.event-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ===========================================
   STREAKS SECTION
   =========================================== */
.streaks-section {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, rgba(255, 45, 85, 0.1) 100%);
    border-radius: 32px;
    margin: 0 24px;
    padding: 80px 60px;
    max-width: calc(var(--container-width) - 48px);
}

.streaks-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.streaks-visual {
    flex: 0 0 300px;
    text-align: center;
}

.streak-flame {
    font-size: 5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.streak-counter {
    margin: 16px 0 32px;
}

.streak-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF9500, #FF2D55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.streak-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.streak-milestones {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.milestone {
    width: 50px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 2px solid transparent;
}

.milestone.achieved {
    background: rgba(52, 199, 89, 0.2);
    border-color: var(--green);
}

.milestone.current {
    background: rgba(255, 149, 0, 0.2);
    border-color: var(--orange);
    animation: glow 2s ease-in-out infinite;
}

.milestone-day {
    font-size: 0.75rem;
    font-weight: 700;
}

.milestone-icon {
    font-size: 1rem;
}

.streaks-text {
    flex: 1;
}

.streaks-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.streaks-text > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.streak-rewards-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.streak-reward-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
}

.streak-reward-item.legendary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 149, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.sri-days {
    font-weight: 700;
    color: var(--orange);
}

.sri-reward {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.daily-spin-promo {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(175, 82, 222, 0.1);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(175, 82, 222, 0.2);
}

.spin-icon {
    font-size: 2.5rem;
}

.daily-spin-promo strong {
    display: block;
    margin-bottom: 4px;
}

.daily-spin-promo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ===========================================
   ONBOARDING SECTION
   =========================================== */
.onboarding-section {
    padding: var(--section-padding) 24px;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.onboarding-content {
    max-width: 800px;
    margin: 0 auto;
}

.onboarding-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.onboarding-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.onboarding-section > .onboarding-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.onboarding-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.onboarding-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    padding: 12px 20px;
    border-radius: 100px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-text {
    font-weight: 500;
    font-size: 0.9rem;
}

.onboarding-arrow {
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* ===========================================
   SCREENSHOT LABELS
   =========================================== */
.screenshot-label {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.green-bg {
    background: linear-gradient(135deg, var(--green), #28A745);
}

/* ===========================================
   RESPONSIVE - NEW SECTIONS
   =========================================== */
@media (max-width: 1024px) {
    .special-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mood-content {
        flex-direction: column;
    }

    .mood-visual {
        width: 100%;
    }

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

    .siri-content {
        flex-direction: column;
    }

    .siri-visual {
        flex: none;
        width: 100%;
    }

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

    .streaks-content {
        flex-direction: column;
    }

    .streaks-visual {
        flex: none;
    }
}

@media (max-width: 768px) {
    .special-grid {
        grid-template-columns: 1fr;
    }

    .mood-section,
    .siri-section,
    .streaks-section {
        padding: 40px 24px;
        margin: 0 16px;
        border-radius: 24px;
    }

    .mood-text h2,
    .siri-text h2,
    .streaks-text h2,
    .onboarding-section h2 {
        font-size: 1.75rem;
    }

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

    .events-timeline {
        grid-template-columns: 1fr;
    }

    .onboarding-steps {
        flex-direction: column;
    }

    .onboarding-arrow {
        transform: rotate(90deg);
    }

    .mood-card-stack {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mood-stat-card {
        position: relative;
        width: 100% !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .collections-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}
