/* ============================================
   KADINLAR GÜNÜ - İREM ÖZEL SAYFA STİLLERİ
   ============================================ */

/* CSS Custom Properties */
:root {
    --purple-deep: #1a0a2e;
    --purple-dark: #2d1b4e;
    --purple-mid: #5b2c8e;
    --purple-light: #8b5fcf;
    --purple-glow: #a78bfa;
    --pink-deep: #831843;
    --pink-mid: #db2777;
    --pink-light: #f472b6;
    --pink-soft: #fce7f3;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-glow: #fde68a;
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.2);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--purple-deep);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   MUSIC OVERLAY (Autoplay trigger)
   ============================================ */
.music-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, var(--purple-dark) 0%, var(--purple-deep) 70%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.music-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    animation: overlayFadeIn 1s ease-out;
}

.overlay-flower {
    font-size: 4rem;
    animation: overlayFloat 3s ease-in-out infinite;
    margin-bottom: 1.5rem;
}

.overlay-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.overlay-content p {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--pink-light);
    margin-bottom: 2.5rem;
}

.start-btn {
    background: linear-gradient(135deg, var(--pink-mid), var(--purple-mid));
    border: 2px solid var(--gold-light);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(219, 39, 119, 0.4), 0 0 60px rgba(91, 44, 142, 0.2);
    animation: btnPulse 2s ease-in-out infinite;
}

.start-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(219, 39, 119, 0.6), 0 0 80px rgba(91, 44, 142, 0.4);
}

.start-btn:active {
    transform: scale(0.98);
}

.btn-icon {
    font-size: 1.4rem;
    animation: noteFloat 1.5s ease-in-out infinite;
}

/* ============================================
   PETAL CANVAS
   ============================================ */
#petal-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   FLOATING HEARTS
   ============================================ */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.heart {
    position: absolute;
    bottom: -20px;
    animation: floatUp linear infinite;
    opacity: 0;
    font-size: 1.2rem;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-110vh) rotate(720deg) scale(1);
        opacity: 0;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-dark) 30%, var(--pink-deep) 60%, var(--purple-dark) 100%);
    z-index: 3;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 95, 207, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(219, 39, 119, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-glow);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    box-shadow: 0 0 6px var(--gold-light);
}

.hero-content {
    text-align: center;
    z-index: 5;
    padding: 2rem 1.5rem;
    max-width: 100%;
}

/* Date Badge */
.date-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.date-badge span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out both;
}

.title-line-1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    animation-delay: 0.5s;
    text-shadow: 0 0 40px rgba(167, 139, 250, 0.4);
}

.title-line-2 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--pink-light), var(--gold-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.7s both, shimmer 3s linear infinite;
}

/* Hero Name */
.hero-name-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-name {
    font-family: var(--font-script);
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--gold-light);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5),
                 0 0 60px rgba(251, 191, 36, 0.3),
                 0 0 100px rgba(251, 191, 36, 0.15);
    min-height: 1.2em;
    position: relative;
}

.hero-name::after {
    content: '|';
    animation: blink 0.8s step-end infinite;
    color: var(--gold-light);
    font-weight: 300;
    margin-left: 2px;
}

.hero-name.done::after {
    animation: blink 0.8s step-end infinite 2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.name-decoration {
    font-size: 2rem;
    color: var(--pink-light);
    animation: decorSpin 6s linear infinite;
    opacity: 0.7;
}

.name-decoration.right {
    animation-direction: reverse;
}

/* Hero Subtitle */
.hero-subtitle {
    animation: fadeInUp 1s ease-out 1.5s both;
}

.hero-subtitle p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: var(--pink-soft);
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ============================================
   MESSAGE SECTION
   ============================================ */
.message-section {
    position: relative;
    z-index: 3;
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-deep) 50%, var(--purple-dark) 100%);
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px var(--glass-shadow),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--glass-shadow),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 0 30px rgba(167, 139, 250, 0.1);
}

/* Message Card */
.message-card {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.message-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-light), var(--pink-mid), var(--gold-light), var(--pink-mid), var(--purple-light));
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.card-decoration {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    color: var(--pink-light);
}

.card-decoration.top-left { top: 1rem; left: 1.5rem; }
.card-decoration.top-right { top: 1rem; right: 1.5rem; }
.card-decoration.bottom-left { bottom: 1rem; left: 1.5rem; }
.card-decoration.bottom-right { bottom: 1rem; right: 1.5rem; }

.message-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: iconPulse 3s ease-in-out infinite;
}

.message-title {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.message-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.message-divider::before,
.message-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-light), transparent);
    max-width: 120px;
}

.message-divider span {
    color: var(--gold-light);
    font-size: 0.8rem;
}

.message-text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: var(--white-soft);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.message-signature {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--pink-light);
    margin-top: 2rem;
}

/* ============================================
   QUALITIES SECTION
   ============================================ */
.qualities-section {
    position: relative;
    z-index: 3;
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 700;
}

.title-flower {
    display: inline-block;
    animation: decorSpin 4s linear infinite;
    margin: 0 0.5rem;
}

.qualities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.quality-card {
    padding: 2rem 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.quality-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.quality-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: iconPulse 3s ease-in-out infinite;
}

.quality-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.quality-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.5;
}

/* ============================================
   QUOTES SECTION
   ============================================ */
.quotes-section {
    position: relative;
    z-index: 3;
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, var(--purple-deep) 0%, var(--purple-dark) 50%, var(--purple-deep) 100%);
}

.quotes-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 250px;
}

.quote-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: all 0.6s ease;
    pointer-events: none;
}

.quote-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-light);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: -0.5rem;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-style: italic;
    color: var(--white-soft);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-light), var(--gold-light));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--pink-light);
    font-weight: 400;
}

/* Quote Dots */
.quote-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
    transform: scale(1.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    position: relative;
    z-index: 3;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--purple-deep) 0%, #0d0520 100%);
}

.footer-flowers {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-flowers span {
    animation: iconPulse 3s ease-in-out infinite;
}

.footer-flowers span:nth-child(2) { animation-delay: 0.3s; }
.footer-flowers span:nth-child(3) { animation-delay: 0.6s; }
.footer-flowers span:nth-child(4) { animation-delay: 0.9s; }
.footer-flowers span:nth-child(5) { animation-delay: 1.2s; }

.footer-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--pink-light);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-name {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.footer-year {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

/* ============================================
   MUSIC CONTROLS
   ============================================ */
.music-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.music-controls.hidden {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.music-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-mid), var(--pink-deep));
    border: 2px solid var(--glass-border);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(167, 139, 250, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 0 30px rgba(167, 139, 250, 0.3);
}

.music-icon {
    font-size: 1.3rem;
    position: absolute;
    transition: opacity 0.3s ease;
}

.music-icon.playing {
    opacity: 0;
}

.music-toggle.paused .music-icon.playing {
    opacity: 1;
}

.music-waves {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    transition: opacity 0.3s ease;
}

.music-toggle.paused .music-waves {
    opacity: 0;
}

.music-waves span {
    width: 3px;
    background: var(--white);
    border-radius: 2px;
    animation: musicWave 0.8s ease-in-out infinite;
}

.music-waves span:nth-child(1) { height: 8px; animation-delay: 0s; }
.music-waves span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.music-waves span:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.music-waves span:nth-child(4) { height: 16px; animation-delay: 0.45s; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes overlayFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes overlayFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(219, 39, 119, 0.4), 0 0 60px rgba(91, 44, 142, 0.2); }
    50% { box-shadow: 0 0 40px rgba(219, 39, 119, 0.6), 0 0 80px rgba(91, 44, 142, 0.3); }
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes heroGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(10deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes blink {
    50% { opacity: 0; }
}

@keyframes decorSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 24px; opacity: 0.3; }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes musicWave {
    0%, 100% { height: 4px; }
    50% { height: 18px; }
}

/* ============================================
   RESPONSIVE - Mobile First
   ============================================ */

/* Small phones (320px - 374px) */
@media (max-width: 374px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }

    .overlay-content h2 {
        font-size: 1.4rem;
    }

    .overlay-content p {
        font-size: 1.2rem;
    }

    .start-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .date-badge span {
        font-size: 0.75rem;
    }

    .hero-name {
        font-size: 2.5rem !important;
    }

    .name-decoration {
        font-size: 1.2rem;
    }

    .message-card {
        padding: 2rem 1.2rem;
    }

    .message-title {
        font-size: 1.8rem;
    }

    .qualities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quality-card {
        padding: 1.5rem 1rem;
    }

    .quote-card {
        padding: 2rem 1.2rem;
    }

    .music-controls {
        bottom: 1rem;
        right: 1rem;
    }

    .music-toggle {
        width: 46px;
        height: 46px;
    }
}

/* Regular phones (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .hero-name {
        font-size: 3rem !important;
    }

    .qualities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .message-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Large phones (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .qualities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) {
    .hero-content {
        padding: 3rem 2rem;
    }

    .overlay-content h2 {
        font-size: 2.5rem;
    }

    .overlay-content p {
        font-size: 1.8rem;
    }

    .message-card {
        padding: 3.5rem 3rem;
    }

    .quality-card {
        padding: 2.5rem 2rem;
    }

    .quality-icon {
        font-size: 3rem;
    }

    .quality-card h3 {
        font-size: 1.4rem;
    }

    .quality-card p {
        font-size: 0.95rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .section-container {
        max-width: 900px;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-name {
        font-size: 2.5rem !important;
    }

    .overlay-flower {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .overlay-content h2 {
        font-size: 1.5rem;
    }

    .overlay-content p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
