/* ===================================
   Anna Asks Podcast - Design System
   Kid-friendly, vibrant, animated!
   =================================== */

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors - Purple/Pink theme */
    --primary-purple: #7C3AED;
    --primary-pink: #EC4899;
    --primary-cyan: #06B6D4;
    --primary-yellow: #FBBF24;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-card: linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    --gradient-button: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-glow: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);

    /* Background Colors */
    --bg-dark: #0f0f1a;
    --bg-section: #1a1a2e;
    --bg-card: rgba(255, 255, 255, 0.05);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

/* Floating Decorations */
.floating-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-star,
.floating-planet,
.floating-dna,
.floating-rocket {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.star-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.star-2 {
    top: 30%;
    left: 15%;
    animation-delay: -5s;
    font-size: 1.5rem;
}

.star-3 {
    top: 60%;
    right: 20%;
    animation-delay: -10s;
}

.star-4 {
    top: 80%;
    left: 25%;
    animation-delay: -15s;
    font-size: 1.2rem;
}

.planet-1 {
    top: 20%;
    left: 5%;
    animation-delay: -3s;
    font-size: 2.5rem;
}

.planet-2 {
    top: 70%;
    right: 8%;
    animation-delay: -8s;
    font-size: 1.8rem;
}

.dna-1 {
    top: 45%;
    left: 3%;
    animation-delay: -12s;
    font-size: 2rem;
}

.floating-rocket {
    top: 50%;
    right: 5%;
    animation-delay: -7s;
    font-size: 2.5rem;
}

@keyframes float {

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

    25% {
        transform: translateY(-30px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(30px) rotate(-5deg);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: pulse-bg 10s ease-in-out infinite;
}

@keyframes pulse-bg {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-button);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: bounce-in 0.8s ease;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    animation: slide-up 0.8s ease 0.2s both;
}

@keyframes slide-up {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.title-anna {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-asks {
    display: block;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: var(--spacing-sm);
    animation: slide-up 0.8s ease 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    animation: slide-up 0.8s ease 0.6s both;
}

.hero-image-container {
    position: relative;
    margin: var(--spacing-md) auto;
    width: 280px;
    height: 280px;
    animation: slide-up 0.8s ease 0.8s both;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-normal);
}

.hero-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-glow);
    border-radius: 50%;
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: slide-up 0.8s ease 1s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-primary {
    background: var(--gradient-button);
    color: white;
    box-shadow: var(--shadow-md), 0 0 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

.scroll-arrow {
    font-size: 1.5rem;
}

/* Section Styles */
section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.title-icon {
    font-size: 1.2em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

/* Platforms Section */
.platforms {
    background: var(--bg-section);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all var(--transition-normal);
}

.platform-icon {
    width: 24px;
    height: 24px;
}

.platform-btn.spotify {
    background: #1DB954;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.4);
}

.platform-btn.spotify:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.6);
}

.platform-btn.apple {
    background: linear-gradient(135deg, #fc3c44 0%, #8e44ad 100%);
    box-shadow: 0 4px 20px rgba(252, 60, 68, 0.4);
}

.platform-btn.apple:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(252, 60, 68, 0.6);
}

.platform-btn.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.platform-btn.youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

/* Episodes Section */
.episodes {
    background: var(--bg-dark);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.episode-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    position: relative;
}

.episode-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.3);
}

.episode-number {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--gradient-button);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
}

.episode-image-container {
    position: relative;
    overflow: hidden;
}

.episode-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.episode-card:hover .episode-image {
    transform: scale(1.05);
}

.episode-theme-badge {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
}

.episode-content {
    padding: var(--spacing-md);
}

.episode-title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #fff 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.episode-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.episode-meta {
    display: flex;
    gap: var(--spacing-md);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.episode-player {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: var(--spacing-md);
}

.audio-player {
    width: 100%;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.3);
}

/* Custom audio player styling for WebKit browsers */
.audio-player::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.3));
}

.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
    color: white;
}

.audio-player::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Firefox audio styling */
.audio-player::-moz-range-track {
    background: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about {
    background: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
}

.about-avatar {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.about-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-cyan);
}

.about-role {
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.about-bio {
    color: var(--text-secondary);
    line-height: 1.7;
}

.anna-card:hover {
    border-color: rgba(236, 72, 153, 0.5);
}

.brain-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.parents-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

/* Lily Section */
.lily-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a0a1a 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    overflow: hidden;
}

.lily-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.lily-image-container {
    position: relative;
    flex-shrink: 0;
}

.lily-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-pink);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
    transition: transform var(--transition-normal);
}

.lily-image:hover {
    transform: scale(1.05) rotate(5deg);
}

.lily-sparkles {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {

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

    50% {
        transform: scale(1.3) rotate(15deg);
        opacity: 0.7;
    }
}

.lily-content {
    flex: 1;
    min-width: 280px;
}

.lily-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-pink);
}

.lily-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.lily-love {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: var(--spacing-md);
}

.lily-facts {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.lily-fact {
    background: rgba(236, 72, 153, 0.2);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--primary-pink);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

/* For Parents Section */
.for-parents {
    background: var(--bg-section);
}

.parents-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.parents-info,
.parents-cta {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.parents-info h3,
.parents-cta h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-cyan);
}

.parents-list {
    list-style: none;
}

.parents-list li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.parents-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-sm);
}

.parents-cta p {
    color: var(--text-secondary);
}

/* Show Embed */
.show-embed {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Show More Container */
.show-more-container {
    grid-column: 1 / -1;
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: var(--spacing-lg) 0;
}

.show-more-container .btn {
    min-width: 200px;
}

/* Loading State */
.loading-episodes {
    text-align: center;
    padding: var(--spacing-lg);
    color: var(--text-muted);
}

.loading-spinner {
    font-size: 2rem;
    display: inline-block;
    animation: spin 1s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* Question Form */
.question-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: right;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.question-form .btn {
    margin-top: var(--spacing-sm);
    width: 100%;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--spacing-sm);
}

.parents-cta {
    text-align: right;
}

.parents-cta h3 {
    text-align: center;
}

.parents-cta>p {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-image-container {
        width: 220px;
        height: 220px;
    }

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

    .episode-image {
        height: 200px;
    }

    .lily-image {
        width: 220px;
        height: 220px;
    }

    .lily-title {
        font-size: 2rem;
        text-align: center;
    }

    .lily-content {
        text-align: center;
    }

    .lily-facts {
        justify-content: center;
    }

    .floating-decorations {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .platform-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
a:focus,
button:focus {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--primary-purple);
    color: white;
}