/* =============================================
   LANDING PAGES - SHARED STYLES
   Used by: new-landing, for-business, for-players
   ============================================= */

/* =============================================
   BASE STYLES
   ============================================= */
.landing-page {
    font-family: 'Fredoka', sans-serif;
    background: #fff;
    min-height: 100vh;
}

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

/* =============================================
   HERO SECTION
   ============================================= */
.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    overflow: visible;
}

.landing-hero.fixed-height {
    min-height: 100vh;
    height: auto;
}

/* Colorful top accent bar */
.hero-accent-bar {
    height: 6px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #8b5cf6, #e91e8c, #f59e0b, #10b981);
    background-size: 200% 100%;
    animation: gradient-flow 8s linear infinite;
    flex-shrink: 0;
}

.hero-accent-bar.green {
    background: linear-gradient(90deg, #10b981, #059669, #34d399, #10b981);
    background-size: 200% 100%;
}

@keyframes gradient-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-content.compact {
    padding: 1rem 1.5rem;
}

/* Logo with glow effect */
.hero-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1.5rem;
    animation: logo-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(233, 30, 140, 0.3));
}

.hero-logo.small {
    width: 70px;
    margin-bottom: 1rem;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(233, 30, 140, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(233, 30, 140, 0.5)); }
}

/* Headlines */
.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.hero-headline.compact {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.hero-headline .pop {
    display: inline-block;
    background: linear-gradient(135deg, #e91e8c 0%, #ff6b35 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s ease-in-out infinite;
}

.hero-headline .pop.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes text-shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #555;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.hero-subheadline.compact {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

/* =============================================
   SOCIAL PROOF
   ============================================= */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.social-proof.compact {
    margin-bottom: 1rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #666;
}

.proof-item i {
    color: #10b981;
    font-size: 1rem;
}

.proof-item i.pink {
    color: #e91e8c;
}

.proof-item strong {
    color: #333;
    font-weight: 700;
}

/* =============================================
   PATH CARDS (for selector pages)
   ============================================= */
.path-question {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.path-question.compact {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.path-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.path-cards.compact {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.path-card {
    position: relative;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none !important;
    color: #fff !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    width: 350px;
    flex-shrink: 0;
    aspect-ratio: 9 / 16;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.path-card.compact {
    padding: 1.5rem 1.25rem;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.path-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.path-card:hover::before {
    opacity: 1;
}

/* Business Card - Green */
.path-card.business {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.path-card.business::before {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

.path-card.business:hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

/* Player Card - Pink */
.path-card.player {
    background: linear-gradient(135deg, #be185d 0%, #e91e8c 50%, #f472b6 100%);
    box-shadow: 0 10px 40px rgba(233, 30, 140, 0.3);
}

.path-card.player::before {
    background: linear-gradient(135deg, #9d174d 0%, #be185d 100%);
}

.path-card.player:hover {
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.4);
}

/* Player Card Video Background */
.path-card-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: 20px;
}

.path-card-video-bg iframe,
.path-card-video-bg > div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.path-card-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.75) 0%, rgba(233, 30, 140, 0.65) 50%, rgba(244, 114, 182, 0.55) 100%);
    z-index: 1;
}

/* Card content */
.path-card-content {
    position: relative;
    z-index: 1;
}

.path-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.path-icon.compact {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.path-card:hover .path-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.path-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.path-label.compact {
    font-size: 0.65rem;
    margin-bottom: 0.25rem;
}

.path-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.path-card-title.compact {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.path-card-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.path-card-desc.compact {
    font-size: 0.85rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

/* Benefits list */
.path-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.path-benefits.compact {
    gap: 0.25rem;
    margin-bottom: 0.9rem;
}

.path-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.95;
}

.path-benefit.compact {
    font-size: 0.8rem;
}

.path-benefit i {
    font-size: 1rem;
}

.path-benefit.compact i {
    font-size: 0.9rem;
}

/* CTA Button on cards */
.path-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.path-card-cta.compact {
    padding: 0.65rem 1.3rem;
    font-size: 0.85rem;
}

.path-card.business .path-card-cta {
    color: #059669;
}

.path-card.player .path-card-cta {
    color: #e91e8c;
}

.path-card:hover .path-card-cta {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.path-card-cta i {
    transition: transform 0.3s ease;
}

.path-card:hover .path-card-cta i {
    transform: translateX(4px);
}

/* =============================================
   QUICK PLAY LINK
   ============================================= */
.quick-play-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e91e8c !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(233, 30, 140, 0.08);
    border: 2px solid rgba(233, 30, 140, 0.2);
}

.quick-play-link.compact {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

.quick-play-link:hover {
    background: rgba(233, 30, 140, 0.15);
    border-color: #e91e8c;
    transform: scale(1.05);
}

.quick-play-link .play-emoji {
    font-size: 1.1rem;
}

.quick-play-link i {
    transition: transform 0.3s ease;
}

.quick-play-link:hover i {
    transform: translateX(4px);
}

/* =============================================
   APP STORE BADGES
   ============================================= */
.app-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.app-badges.compact {
    margin-top: 0.5rem;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.app-badge.compact {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.3);
}

.app-badge i {
    font-size: 0.9rem;
}

.app-badge.compact i {
    font-size: 0.8rem;
}

/* =============================================
   ENTRY ANIMATIONS
   ============================================= */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-entry {
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }
.animate-delay-7 { animation-delay: 0.7s; }

/* =============================================
   FOOTER
   ============================================= */
.hero-footer {
    padding: 1rem;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hero-footer.compact {
    padding: 0.75rem;
    font-size: 0.8rem;
}

.hero-footer a {
    color: #e91e8c;
    text-decoration: none;
    font-weight: 600;
}

.hero-footer a:hover {
    text-decoration: underline;
}

/* =============================================
   SECTIONS (for longer pages)
   ============================================= */
.landing-section {
    padding: 4rem 1.5rem;
    text-align: center;
}

.landing-section.bg-gray {
    background: #f8fafb;
}

.landing-section.bg-dark {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
}

.landing-section.bg-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title.light {
    color: #fff;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   FEATURE CARDS (3-column grid)
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.feature-icon.gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
}

.feature-icon.pink {
    background: linear-gradient(135deg, #e91e8c, #be185d);
    color: #fff;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* =============================================
   CTA BUTTONS
   ============================================= */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6);
}

.btn-primary-pink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #e91e8c, #be185d);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(233, 30, 140, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: transparent;
    color: #333 !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none !important;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #10b981;
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.05);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #10b981;
}

.testimonial-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   FAQ LIST
   ============================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.faq-question i {
    color: #10b981;
    margin-top: 0.15rem;
}

.faq-answer {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    padding-left: 1.5rem;
}

/* =============================================
   CROSS-LINK
   ============================================= */
.cross-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.25rem;
    background: rgba(233, 30, 140, 0.08);
    border: 1px solid rgba(233, 30, 140, 0.2);
    border-radius: 50px;
    color: #e91e8c !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cross-link:hover {
    background: rgba(233, 30, 140, 0.15);
    border-color: #e91e8c;
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .landing-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 700px) {
    .landing-hero.fixed-height {
        height: auto;
        min-height: 100vh;
        max-height: none;
        overflow: visible;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-content.compact {
        padding: 1.25rem 0.75rem;
    }
    
    .hero-logo {
        width: 70px;
        margin-bottom: 1rem;
    }
    
    .hero-logo.small {
        width: 60px;
        margin-bottom: 0.75rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-headline.compact {
        font-size: 1.6rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subheadline.compact {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .path-question {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .path-question.compact {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .path-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .path-cards.compact {
        gap: 0.75rem;
    }
    
    .path-cards {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .path-card {
        padding: 1rem 0.75rem;
        border-radius: 16px;
        aspect-ratio: 9 / 16;
        width: calc(50% - 0.5rem);
        max-width: 180px;
    }
    
    .path-card.compact {
        padding: 0.75rem 0.5rem;
    }
    
    .path-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .path-icon.compact {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .path-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .path-label.compact {
        font-size: 0.55rem;
    }
    
    .path-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .path-card-title.compact {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .path-card-desc {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .path-card-desc.compact {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .path-benefits {
        gap: 0.2rem;
        margin-bottom: 1rem;
    }
    
    .path-benefits.compact {
        gap: 0.15rem;
        margin-bottom: 0.6rem;
    }
    
    .path-benefit {
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .path-benefit.compact {
        font-size: 0.65rem;
        gap: 0.3rem;
    }
    
    .path-benefit i {
        font-size: 0.85rem;
    }
    
    .path-benefit.compact i {
        font-size: 0.7rem;
    }
    
    .path-card-cta {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .path-card-cta.compact {
        padding: 0.5rem 0.9rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .quick-play-link {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .quick-play-link.compact {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .social-proof {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .social-proof.compact {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .proof-item {
        font-size: 0.75rem;
    }
    
    .proof-item.compact {
        font-size: 0.7rem;
    }
    
    .app-badges {
        margin-top: 0.5rem;
    }
    
    .app-badges.compact {
        margin-top: 0.4rem;
    }
    
    .app-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .app-badge.compact {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
    }
    
    .hero-footer {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .hero-footer.compact {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
}
