/* Poetry Translated Custom Player Styles - Desert Medallion */

.poetry-player {
    /* Desert Nights & Ancient Ink Color System */
    --desert-black: #0A0A0A;
    --surface-dark: #1A1410;
    --surface-darker: #120F0C;

    /* Henna - Primary brand color */
    --henna: #95472d;
    --henna-light: #B86A47;
    --henna-dark: #6B3420;
    --henna-glow: rgba(149, 71, 45, 0.3);

    /* Burgundy - Active verse highlighting */
    --burgundy: #6e0f3d;
    --burgundy-light: #8F1850;
    --burgundy-glow: rgba(110, 15, 61, 0.4);

    /* Neutrals */
    --parchment: #F4E9DC;
    --parchment-dim: #C4B9AC;
    --parchment-ghost: rgba(244, 233, 220, 0.1);

    /* Gold accents */
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.2);

    /* Legacy variable compatibility */
    --player-bg: var(--surface-dark);
    --player-border: rgba(149, 71, 45, 0.2);
    --text-primary: var(--parchment);
    --text-secondary: var(--parchment-dim);

    position: fixed;
    z-index: 9999;
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Hide by default until a poem is loaded */
    display: none;
}

/* Show player when it has loaded content */
.poetry-player.has-content {
    display: block;
}

/* Position Variants */
.poetry-player.bottom-right {
    bottom: 20px;
    right: 20px;
}

.poetry-player.bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.poetry-player.floating {
    bottom: 80px;
    right: 20px;
}

/* Size Variants */
.poetry-player.normal .player-main {
    padding: 20px;
}

.poetry-player.expanded .player-main {
    padding: 30px;
}

.poetry-player.expanded .disc-wrapper {
    width: 180px;
    height: 180px;
}

.poetry-player.mini {
    width: 300px;
}

.poetry-player.mini .player-main {
    display: none;
}

.poetry-player.mini .player-controls {
    display: none !important;
}

.poetry-player.mini .player-mini {
    display: flex !important;
}

/* Main Container */
.player-main {
    background: var(--player-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--player-border);
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 120px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Disc Container */
.disc-container {
    position: relative;
}

.disc-wrapper {
    width: 140px;
    height: 140px;
    position: relative;
}

/* Disc Glow Effect - Desert Medallion */
.disc-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--henna-glow) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s;
}

.poetry-player.playing .disc-glow {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
        box-shadow: 0 10px 30px var(--henna-glow);
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 10px 40px rgba(149, 71, 45, 0.6);
    }
}

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

/* The Desert Medallion Disc */
.disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: var(--surface-dark);
    border: 3px solid var(--henna);
    box-shadow:
        0 10px 30px var(--henna-glow),
        inset 0 0 40px rgba(244, 233, 220, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.disc:hover {
    transform: scale(1.05);
    border-color: var(--henna-light);
    box-shadow: 0 15px 40px rgba(149, 71, 45, 0.5);
}

.poetry-player.playing .disc {
    border-color: var(--henna);
    box-shadow:
        0 10px 30px rgba(149, 71, 45, 0.4),
        inset 0 0 40px rgba(244, 233, 220, 0.05);
}

.disc::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Arabic Title on Disc - ROTATES when playing */
.disc-title {
    font-family: 'HSN Naskh', 'Dima Naskh', serif;
    font-size: 14px;
    color: var(--parchment);
    text-align: center;
    padding: 20px;
    word-wrap: break-word;
    max-width: 100px;
    line-height: 1.6;
    z-index: 2;
    position: relative;
    text-shadow:
        0 0 20px rgba(244, 233, 220, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rotate the title when playing */
.disc.spinning .disc-title {
    animation: rotate-disc 3s linear infinite;
}

@keyframes rotate-disc {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Fallback for cover image (if used) */
.disc-cover {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.3;
}

/* Islamic Geometric Border Pattern - DOES NOT ROTATE */
.disc-border-pattern {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: none !important;  /* Ensure pattern stays fixed */
}

.disc-border-pattern svg {
    width: 100%;
    height: 100%;
}

/* Gold Accent Dots at cardinal positions - DO NOT ROTATE */
.gold-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    animation: none !important;  /* Keep dots fixed */
}

.gold-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold-glow);
}

/* Position gold dots at 12, 3, 6, 9 o'clock */
.gold-dot-12 { top: 0; left: 50%; transform: translateX(-50%); }
.gold-dot-3 { top: 50%; right: 0; transform: translateY(-50%); }
.gold-dot-6 { bottom: 0; left: 50%; transform: translateX(-50%); }
.gold-dot-9 { top: 50%; left: 0; transform: translateY(-50%); }

/* Center Hole - DOES NOT ROTATE */
.disc-center-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--surface-darker);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(244, 233, 220, 0.1);
    z-index: 5;
    animation: none !important;  /* Keep hole fixed */
}

/* Vinyl Grooves */
.disc-grooves {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.groove-1 {
    inset: 20%;
}

.groove-2 {
    inset: 35%;
}

.groove-3 {
    inset: 45%;
}

/* Spinning Animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.disc.spinning {
    animation: spin var(--spin-duration, 3s) linear infinite;
}

/* Progress Ring - Henna colored */
.progress-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    pointer-events: none;
    z-index: 4;
}

.progress-bg {
    fill: transparent;
    stroke: var(--parchment-ghost);
    stroke-width: 4;
}

.progress-fill {
    fill: transparent;
    stroke: var(--henna);
    stroke-width: 4;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.3s linear;
    filter: drop-shadow(0 0 4px var(--henna-glow));
}

.poetry-player.playing .progress-fill {
    stroke: var(--henna);
    filter: drop-shadow(0 0 8px var(--henna-glow));
}

/* Play/Pause Button - Desert Medallion */
.play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--henna);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.play-pause-btn:hover {
    background: var(--henna-light);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px var(--henna-glow);
}

.play-pause-btn:active {
    background: var(--henna-dark);
    transform: translate(-50%, -50%) scale(1.05);
}

.play-pause-btn:focus {
    outline: 2px solid var(--henna);
    outline-offset: 2px;
}

.play-pause-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Track Info */
.track-info {
    flex: 1;
    min-width: 0;
}

.poem-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.title-arabic {
    font-family: 'HSN Naskh', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(250, 250, 250, 0.3);
}

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

.poet-name {
    font-size: 0.85rem;
    color: var(--henna);
    margin-bottom: 8px;
}

.verse-counter {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Player Controls - MORE SPECIFIC to override style.css */
.poetry-player .player-controls {
    background: var(--player-bg);
    border: 1px solid var(--player-border);
    border-radius: 16px;
    padding: 15px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
    /* CRITICAL: Override style.css absolute positioning */
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
}

.poetry-player:hover .player-controls,
.poetry-player.expanded .player-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Timeline */
.timeline-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.timeline {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.timeline:hover {
    height: 8px;
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--henna), var(--henna-light));
    border-radius: 3px;
    width: 0%;
    position: relative;
    box-shadow: 0 0 10px var(--henna-glow);
}

.timeline-buffer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    width: 0%;
}

/* Verse Markers */
.verse-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.verse-marker {
    position: absolute;
    top: -3px;
    width: 2px;
    height: 12px;
    background: rgba(149, 71, 45, 0.4);
    cursor: pointer;
    transition: all 0.2s;
}

.verse-marker:hover {
    background: var(--henna);
    height: 16px;
    top: -5px;
}

.verse-marker.active {
    background: var(--henna);
    box-shadow: 0 0 10px var(--henna-glow);
}

/* Timeline Preview */
.timeline-preview {
    position: absolute;
    bottom: 100%;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--player-border);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.75rem;
    display: none;
    pointer-events: none;
    transform: translateX(-50%);
    margin-bottom: 5px;
    white-space: nowrap;
}

.timeline-preview .preview-verse {
    color: var(--henna);
    margin-left: 5px;
}

/* Time Display */
.time-current,
.time-duration {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

/* Control Buttons */
.control-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.control-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(149, 71, 45, 0.2);
    border-color: var(--henna);
    color: var(--henna);
}

.control-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Speed Button */
.speed-btn {
    min-width: 45px;
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.volume-slider-container {
    width: 0;
    overflow: hidden;
    transition: width 0.3s;
}

.volume-control:hover .volume-slider-container {
    width: 80px;
}

.volume-slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--henna);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--henna);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Settings Panel */
.settings-panel {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: var(--player-bg);
    border: 1px solid var(--player-border);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.settings-panel h4 {
    margin: 0 0 15px 0;
    color: var(--henna);
    font-size: 0.9rem;
}

.setting-item {
    margin-bottom: 10px;
}

.setting-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.setting-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.setting-item select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* Loading State */
.player-loading {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 100;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(149, 71, 45, 0.2);
    border-top-color: var(--henna);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Error State */
.player-error {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    animation: slideDown 0.3s;
    white-space: nowrap;
}

@keyframes slideDown {
    from { transform: translateX(-50%) translateY(-10px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* Mini Player Mode */
.player-mini {
    background: var(--player-bg);
    border: 1px solid var(--player-border);
    border-radius: 12px;
    padding: 10px;
    display: none;
    align-items: center;
    gap: 10px;
}

.mini-disc {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--henna);
}

.mini-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-title {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.mini-poet {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mini-play-btn,
.expand-btn {
    background: transparent;
    border: none;
    color: var(--henna);
    cursor: pointer;
    font-size: 1.2rem;
}

/* Desktop - Desert Medallion (>1024px) */
@media (min-width: 1025px) {
    .poetry-player.bottom-right {
        bottom: 30px;
        right: 30px;
    }

    .disc-wrapper {
        width: 140px;
        height: 140px;
    }

    .progress-ring {
        width: 160px;
        height: 160px;
    }
}

/* Tablet - Desert Medallion (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .poetry-player {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .disc-wrapper {
        width: 120px;
        height: 120px;
    }

    .progress-ring {
        width: 140px;
        height: 140px;
    }

    .disc-title {
        font-size: 12px;
        max-width: 85px;
    }

    .play-pause-btn {
        width: 45px;
        height: 45px;
    }
}

/* Mobile Responsive - Ultra-Compact Single-Row Layout (<768px) */
@media (max-width: 768px) {
    .poetry-player {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .poetry-player.bottom-center {
        transform: none;
        left: 10px;
    }

    /* ULTRA-COMPACT LAYOUT: Timeline top, Disc + Buttons in one row */
    .player-main {
        padding: 10px;
        flex-direction: column;
        gap: 8px;
        display: grid;
        grid-template-columns: 65px 1fr;
        grid-template-rows: auto auto;
        gap: 8px;
    }

    /* Disc on the left - spans both content rows */
    .disc-container {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: start;
        flex-shrink: 0;
    }

    .disc-wrapper {
        width: 65px;
        height: 65px;
    }

    /* Progress ring - match disc size exactly on mobile */
    .progress-ring {
        width: 65px;
        height: 65px;
        top: 0;
        left: 0;
    }

    /* Adjust SVG circle to match smaller size */
    .progress-ring circle {
        r: 30;
        cx: 32.5;
        cy: 32.5;
    }

    /* Smaller disc title on mobile */
    .disc-title {
        font-size: 7px;
        max-width: 45px;
        padding: 8px;
        line-height: 1.3;
    }

    /* Hide gold dots on mobile to reduce complexity */
    .gold-dots {
        display: none;
    }

    /* Simplified geometric pattern on mobile */
    .disc-border-pattern svg {
        opacity: 0.3;
    }

    /* Smaller play button */
    .play-pause-btn {
        width: 30px;
        height: 30px;
    }

    .play-pause-btn svg {
        width: 12px;
        height: 12px;
    }

    /* Hide track info on mobile to save space */
    .track-info {
        display: none;
    }

    /* Controls on the right */
    .poetry-player .player-controls {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-top: 0;
        padding: 0;
        border: none;
        background: transparent;
        grid-column: 2;
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    /* Timeline - full width at top of controls */
    .timeline-container {
        margin-bottom: 0;
        gap: 6px;
        display: flex;
        align-items: center;
    }

    .timeline {
        height: 4px;
        flex: 1;
    }

    .time-current,
    .time-duration {
        font-size: 0.65rem;
    }

    /* Control buttons - wrap in compact rows */
    .control-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        align-items: center;
    }

    .control-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .control-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Speed button - smaller */
    .speed-btn {
        min-width: 36px;
    }

    /* Volume - hide slider on mobile, button only */
    .volume-control:hover .volume-slider-container {
        width: 0;
    }

    .volume-slider-container {
        display: none;
    }

    /* Settings panel */
    .settings-panel {
        right: auto;
        left: 0;
        min-width: 200px;
    }
}

/* Integration with Poem Display - BURGUNDY for active verses */
.verse-line {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.verse-line.active {
    color: var(--burgundy) !important;
    transform: scale(1.02);
    text-shadow:
        0 0 40px rgba(110, 15, 61, 0.8),
        0 0 20px rgba(110, 15, 61, 0.6),
        0 0 10px rgba(110, 15, 61, 0.4);
}

.verse-line.playing::before {
    content: '♪';
    position: absolute;
    left: -30px;
    color: var(--burgundy);
    animation: bounce 0.5s ease-in-out infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}

/* Poem Card Playing Indicator */
.poem-card {
    position: relative;
    transition: all 0.3s;
}

.poem-card.now-playing {
    border-color: var(--henna);
    box-shadow: 0 0 40px var(--henna-glow);
}

.poem-card.now-playing::before {
    content: 'NOW PLAYING';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--henna);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 10;
}

/* Play Button Styles for Poem Cards */
.play-poem-btn {
    background: var(--henna);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-poem-btn:hover {
    background: var(--henna-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--henna-glow);
}

.play-poem-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Album Card Play Button (hover overlay) */
.album-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}

.album-card:hover .album-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.album-play svg {
    width: 24px;
    height: 24px;
}

/* Hero Play Button */
.hero-play {
    font-size: 1.1rem;
    padding: 16px 32px;
}

.hero-play svg {
    width: 24px;
    height: 24px;
}

/* Accessibility */
.poetry-player button:focus {
    outline: 2px solid var(--henna);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .poetry-player {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .disc.spinning {
        animation: none;
    }

    .disc-glow {
        animation: none;
    }

    .verse-line.playing::before {
        animation: none;
    }

    .poetry-player,
    .player-controls,
    .verse-line {
        transition: none;
    }
}
