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

body {
    font-family: 'Creepster', cursive, Arial, sans-serif;
    background: linear-gradient(135deg, #1a0f3d, #2d0a5c, #3d0f6a);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 40px;
}

h1 {
    font-size: 3rem;
    color: #ff8c00;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    word-wrap: break-word;
}

h2 {
    font-size: 1.9rem;
    color: #9d4edd;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

#doors-left {
    color: #ff6b35;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-style: italic;
}

.countdown-info {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid #ff8c00;
}

#countdown {
    font-size: 2rem;
    color: #ff8c00;
    font-weight: bold;
}

.doors-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    padding: 20px;
    justify-items: center;
}

.door {
    position: relative;
    width: 200px;
    height: 250px;
    margin: 0;
    perspective: 1000px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.door-front, .door-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    transition: opacity 0.6s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.door-front {
    background: 
        linear-gradient(90deg, 
            #8b4513 0%, 
            #a0522d 25%, 
            #8b4513 50%, 
            #654321 75%, 
            #8b4513 100%
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(0,0,0,0.1) 2px,
            rgba(0,0,0,0.1) 4px
        );
    border: 4px solid #4a2c17;
    border-radius: 8px;
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
}

.door-front::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.door-front::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 30px;
    right: 30px;
    bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.door-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff8c00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.door-knob {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #ff8c00, #cc7000);
    border-radius: 50%;
    border: 2px solid #b8860b;
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 3px 8px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.door-knob::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
}


.door.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.door.locked .door-front {
    background: linear-gradient(145deg, #4a4a4a, #2a2a2a);
    border-color: #666;
}

.door.locked .door-number {
    color: #888;
}

.door.locked .door-knob {
    background: radial-gradient(circle, #666, #444);
}

.door:hover:not(.locked) .door-front {
    transform: scale(1.02) translateZ(5px);
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 140, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.door:hover:not(.locked) .door-knob {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.door:active:not(.locked) .door-front {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.door.available .door-front {
    border: 3px solid #ff8c00;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(255, 140, 0, 0.3);
}

.door.available:hover .door-front {
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 15px 30px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 140, 0, 0.5);
}

.door.opened {
    transform: perspective(1000px) rotateY(-45deg);
    transition: transform 0.6s ease;
}

.door.opened .door-front {
    background: 
        linear-gradient(90deg, 
            #2d5016 0%, 
            #3d6b1a 25%, 
            #2d5016 50%, 
            #1a3d0a 75%, 
            #2d5016 100%
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(0,0,0,0.2) 2px,
            rgba(0,0,0,0.2) 4px
        );
    border: 4px solid #4a7c59;
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(76, 124, 89, 0.4);
    opacity: 0.8;
    transform: rotateY(45deg);
    transition: transform 0.6s ease;
}

.door.opened .door-number {
    color: #4a7c59;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transform: rotateY(-45deg);
    transition: transform 0.6s ease;
}

.door.opened .door-knob {
    background: radial-gradient(circle at 30% 30%, #4a7c59, #2d5016, #1a3d0a);
    border: 2px solid #2d5016;
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 3px 8px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(76, 124, 89, 0.3);
    transform: rotateY(-45deg);
    transition: transform 0.6s ease;
}

/* Special styling for door 13 - the final door */
.door[data-day="13"] {
    grid-column: 1 / -1; /* Span all columns */
    justify-self: center; /* Center within the grid */
    width: 250px;
    height: 300px;
    margin-top: 40px; /* Add top margin for spacing */
}

.door[data-day="13"] .door-front {
    background: 
        linear-gradient(45deg, 
            #8b0000 0%, 
            #dc143c 25%, 
            #ff4500 50%, 
            #ff8c00 75%, 
            #ffd700 100%
        ),
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 3px,
            rgba(0,0,0,0.1) 3px,
            rgba(0,0,0,0.1) 6px
        );
    border: 5px solid #ffd700;
    box-shadow: 
        inset 0 0 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2),
        0 12px 24px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.5);
    animation: specialGlow 3s ease-in-out infinite alternate;
}

.door[data-day="13"] .door-number {
    font-size: 4rem;
    color: #ffd700;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 215, 0, 0.8);
    animation: numberPulse 2s ease-in-out infinite alternate;
}

.door[data-day="13"] .door-knob {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #ff8c00, #ff4500);
    border: 3px solid #ffd700;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.6);
}

.door[data-day="13"] .door-knob::before {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
}

.door[data-day="13"]:hover .door-front {
    transform: scale(1.05) translateZ(8px);
    box-shadow: 
        inset 0 0 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.8),
        0 0 0 2px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.7);
}

.door[data-day="13"]:hover .door-knob {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.3),
        0 6px 16px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 215, 0, 0.8);
}

@keyframes specialGlow {
    from {
        box-shadow: 
            inset 0 0 40px rgba(0, 0, 0, 0.3),
            inset 0 0 0 2px rgba(255, 255, 255, 0.2),
            0 12px 24px rgba(0, 0, 0, 0.7),
            0 0 0 2px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(255, 215, 0, 0.5);
    }
    to {
        box-shadow: 
            inset 0 0 40px rgba(0, 0, 0, 0.3),
            inset 0 0 0 2px rgba(255, 255, 255, 0.2),
            0 12px 24px rgba(0, 0, 0, 0.7),
            0 0 0 2px rgba(0, 0, 0, 0.3),
            0 0 50px rgba(255, 215, 0, 0.8);
    }
}

@keyframes numberPulse {
    from {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 10px rgba(255, 215, 0, 0.8);
    }
    to {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.6);
    }
}

footer {
    margin-top: 40px;
    padding: 10px;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    color: #9d4edd;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin: 0;
}

@keyframes glow {
    from {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 10px #ff8c00;
    }
    to {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px #ff8c00, 0 0 30px #ff8c00;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
    }
    
    h2 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .doors-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 15px;
    }
    
    .door[data-day="13"] {
        width: 180px;
        height: 220px;
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 30px;
    }
    
    .door[data-day="13"] .door-number {
        font-size: 2.8rem;
    }
    
    .door {
        width: 140px;
        height: 180px;
    }
    
    .door-number {
        font-size: 1.8rem;
    }
    
    .door-knob {
        width: 20px;
        height: 20px;
        right: 12px;
    }
    
    .door-knob::before {
        width: 6px;
        height: 6px;
    }
    
    .wisdom h3 {
        font-size: 1.2rem;
    }
    
    .wisdom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 10px;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
    }
    
    h2 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .doors-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        padding: 10px;
    }
    
    .door[data-day="13"] {
        width: 160px;
        height: 200px;
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 25px;
    }
    
    .door[data-day="13"] .door-number {
        font-size: 2.2rem;
    }
    
    .door {
        width: 120px;
        height: 160px;
    }
    
    .door-number {
        font-size: 1.4rem;
    }
    
    .door-knob {
        width: 18px;
        height: 18px;
        right: 10px;
    }
    
    .door-knob::before {
        width: 5px;
        height: 5px;
    }
    
    .door[data-day="13"] .door-knob {
        width: 24px;
        height: 24px;
    }
    
    .door[data-day="13"] .door-knob::before {
        width: 8px;
        height: 8px;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 360px) {
    .container {
        padding: 8px;
    }
    
    h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
    }
    
    h2 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .doors-container {
        gap: 10px;
        padding: 8px;
    }
    
    .door[data-day="13"] {
        width: 140px;
        height: 180px;
        margin-top: 20px;
    }
    
    .door[data-day="13"] .door-number {
        font-size: 2rem;
    }
    
    .door {
        width: 100px;
        height: 140px;
    }
    
    .door-number {
        font-size: 1.2rem;
    }
    
    .door-knob {
        width: 16px;
        height: 16px;
        right: 8px;
    }
    
    .door-knob::before {
        width: 4px;
        height: 4px;
    }
    
    .door[data-day="13"] .door-knob {
        width: 20px;
        height: 20px;
    }
    
    .door[data-day="13"] .door-knob::before {
        width: 6px;
        height: 6px;
    }
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
    h1 {
        font-size: 1.4rem;
        line-height: 1.1;
        padding: 0 5px;
    }
    
    h2 {
        font-size: 0.9rem;
        line-height: 1.1;
    }
}

/* Door 2 specific styles */
.purple-bold {
    color: #8B008B;
    font-weight: bold;
}

.full-width-margin {
    width: 100%;
    margin-top: 20px;
}

/* When full-width-margin is inside text-with-image, remove the margin */
.text-with-image .full-width-margin {
    margin-top: 0;
}

/* Matrix Digital Rain Effect */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.8;
    background: transparent;
}

/* Matrix effect overlay for additional styling */
.matrix-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 255, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    animation: matrixGlow 3s ease-in-out infinite alternate;
}

@keyframes matrixGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

/* Floating stars particle styles (deprecated - replaced by matrix effect) */
.particle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #ff8c00;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    pointer-events: none;
    z-index: 1000;
    animation: float 5s linear infinite;
    opacity: 0.3;
}

/* Floating skulls for door 7 (memento mori theme) */
.floating-skull {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    animation: floatSkull 10s linear infinite;
    opacity: 0.3;
    font-size: 10px;
    color: #ffffff;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatSkull {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0;
    }
}

/* Particle styles for blood drops */
.particle-blood {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    animation: float90s 8s ease-in-out infinite;
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

/* Blood drop styling */
.particle-blood.blood-drop {
    color: #ff0000;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.7));
}

@keyframes float90s {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    25% {
        transform: translateY(75vh) rotate(90deg);
    }
    50% {
        transform: translateY(50vh) rotate(180deg);
    }
    75% {
        transform: translateY(25vh) rotate(270deg);
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
    }
}

/* Particle styles for candles */
.particle-candle {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    animation: floatCandles 8s ease-in-out infinite;
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(51, 37, 239, 0.8);
    filter: drop-shadow(0 0 5px rgba(55, 0, 255, 0.5));
}

/* Candle drop styling */
.particle-candle.candle-drop {
    color: #2549fc;
    filter: drop-shadow(0 0 5px rgba(83, 12, 247, 0.7));
}

@keyframes floatCandles {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    25% {
        transform: translateY(75vh) rotate(90deg);
    }
    50% {
        transform: translateY(50vh) rotate(180deg);
    }
    75% {
        transform: translateY(25vh) rotate(270deg);
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* 404 Page Styles */
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
    text-align: center;
}

.error-door {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 0 auto 40px auto;
    perspective: 1000px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    transition: transform 0.3s ease;
}

.error-door-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            #4a0e0e 0%, 
            #6b1a1a 25%, 
            #4a0e0e 50%, 
            #3d0a0a 75%, 
            #4a0e0e 100%
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(0,0,0,0.3) 2px,
            rgba(0,0,0,0.3) 4px
        );
    border: 4px solid #8b0000;
    border-radius: 8px;
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    animation: errorGlow 2s ease-in-out infinite alternate;
}

.error-door-front::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 0, 0, 0.4);
    border-radius: 4px;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 0, 0, 0.1);
}

.error-number {
    font-size: 4rem;
    font-weight: bold;
    color: #ff4444;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 68, 68, 0.8);
    z-index: 2;
    animation: errorPulse 1.5s ease-in-out infinite alternate;
}

.error-door-knob {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, #ff4444, #cc0000, #990000);
    border-radius: 50%;
    border: 2px solid #8b0000;
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 3px 8px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 68, 68, 0.4);
    z-index: 10;
}

.error-door-knob::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
}

.error-crack {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 2px;
    height: 60%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.8) 20%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.8) 80%,
        transparent 100%
    );
    transform: rotate(15deg);
    z-index: 1;
}

.error-crack::before {
    content: '';
    position: absolute;
    top: 40%;
    left: -1px;
    width: 4px;
    height: 2px;
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(-15deg);
}


.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    background: linear-gradient(145deg, #9d4edd, #7b2cbf);
    color: #fff !important;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, #b565d9, #9d4edd);
    color: #fff !important;
}

@keyframes errorGlow {
    from {
        box-shadow: 
            inset 0 0 30px rgba(0, 0, 0, 0.6),
            inset 0 0 0 1px rgba(255, 0, 0, 0.2),
            0 8px 16px rgba(0, 0, 0, 0.8),
            0 0 0 1px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 0, 0, 0.3);
    }
    to {
        box-shadow: 
            inset 0 0 30px rgba(0, 0, 0, 0.6),
            inset 0 0 0 1px rgba(255, 0, 0, 0.4),
            0 8px 16px rgba(0, 0, 0, 0.8),
            0 0 0 1px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(255, 0, 0, 0.5);
    }
}

@keyframes errorPulse {
    from {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 10px rgba(255, 68, 68, 0.8);
    }
    to {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(255, 68, 68, 1),
            0 0 30px rgba(255, 68, 68, 0.6);
    }
}

/* Mobile optimizations for 404 page */
@media (max-width: 768px) {
    .error-container {
        padding: 20px 15px;
        min-height: 50vh;
    }
    
    .error-door {
        width: 250px;
        height: 320px;
        margin-bottom: 30px;
    }
    
    .error-number {
        font-size: 3rem;
    }
    
    
    .error-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .back-button, .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .error-container {
        padding: 15px 10px;
    }
    
    .error-door {
        width: 200px;
        height: 260px;
        margin-bottom: 25px;
    }
    
    .error-number {
        font-size: 2.5rem;
    }
    
}

/* Improve touch interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    .door {
        min-height: 44px; /* Minimum touch target size */
        min-width: 44px;
    }
    
    .door:hover:not(.locked) .door-front {
        transform: none; /* Disable hover effects on touch devices */
    }
    
    .door:hover:not(.locked) .door-knob {
        transform: translateY(-50%); /* Keep knob centered on touch */
    }
    
    .door:active:not(.locked) .door-front {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Door page styles */
.door-page {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif, Arial, sans-serif;
}

/* Black and White Section */
.black-white-section {
    background: linear-gradient(135deg, #000000, #1a1a1a, #2a2a2a);
    color: #ffffff;
    filter: grayscale(100%);
}

.black-white-section .door-content {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.black-white-section .door-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.black-white-section .placeholder-text {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ffffff;
}

.black-white-section iframe {
    filter: grayscale(100%);
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

.video-iframe {
    max-width: 100%;
    border-radius: 15px;
    border: 3px solid #ff8c00 !important;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4) !important;
}

/* Back Section - simple section for back button */
.back-section {
    background: transparent;
    color: #ffffff;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-section .door-content {
    text-align: center;
    padding: 20px;
}


@keyframes sparkle {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        transform: scale(1);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.6);
        transform: scale(1.1);
    }
}

/* Pink effect after quiz completion */
body.quiz-complete-pink {
    background: #ffb6c1;
    transition: background 2s ease;
}

body.quiz-complete-pink .door-page {
    background: transparent !important;
}

body.quiz-complete-pink .black-white-section {
    background: transparent !important;
    filter: none !important;
    color: #000000 !important;
}

body.quiz-complete-pink .black-white-section p {
    color: #000000 !important;
}

body.quiz-complete-pink .black-white-section iframe {
    filter: none !important;
    border: 3px solid #ff1493 !important;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4) !important;
}

body.quiz-complete-pink .black-white-section .door-content {
    background: linear-gradient(135deg, #ff69b4, #ff1493, #ffc0cb, #ffb6c1) !important;
    border: 3px solid #ff1493 !important;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6) !important;
}

body.quiz-complete-pink .black-white-section .door-title {
    color: #000000 !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8) !important;
}

body.quiz-complete-pink .black-white-section .placeholder-text {
    color: #000000 !important;
    background: rgba(255, 20, 147, 0.2) !important;
    border: 2px solid #ff1493 !important;
}

body.quiz-complete-pink .door-content {
    background: linear-gradient(135deg, #ff69b4, #ff1493, #ffc0cb, #ffb6c1) !important;
    border: 3px solid #ff1493 !important;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6) !important;
    color: #000000 !important;
    transition: all 2s ease;
}

body.quiz-complete-pink p {
    color: #000000 !important;
}

body.quiz-complete-pink .door-title {
    color: #000000 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 20, 147, 0.4) !important;

}

body.quiz-complete-pink .trivia-title {
    color: #000000 !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8) !important;
}

body.quiz-complete-pink .trivia-subtitle {
    color: #333 !important;
}

body.quiz-complete-pink .back-button {
    background: linear-gradient(135deg, #ff69b4, #ff1493) !important;
    color: rgb(0, 0, 0) !important;
    border: 2px solid #ff1493 !important;
}

body.quiz-complete-pink .score-display h3 {
    color: #000000 !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 2px 2px 4px rgba(255, 255, 255, 0.6) !important;
}

body.quiz-complete-pink .score-display p {
    color: #000000 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.4) !important;
}

body.quiz-complete-pink .trivia-results {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.95), rgba(255, 105, 180, 0.9), rgba(255, 20, 147, 0.8)) !important;
    border: 3px solid #ff1493 !important;
    box-shadow: 
        0 0 40px rgba(255, 20, 147, 0.8),
        inset 0 0 20px rgba(255, 182, 193, 0.4),
        0 8px 32px rgba(255, 105, 180, 0.6) !important;
}

body.quiz-complete-pink .celebration {
    color: #000000 !important;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(255, 105, 180, 0.3)) !important;
    border: 2px solid rgba(255, 20, 147, 0.7) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.4), 
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Explosion effect animations */
@keyframes explosionParticle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

/* Link styling - make all links orange */
a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #ff9f1a;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
}

a:visited {
    color: #ff8c00;
}

a:active {
    color: #e67e00;
}

.red-link {
    color: #c30b0b !important;
}

.blue-link {
    color: #1e91e2 !important;
}

.door-content {
    max-width: 1400px;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #ff8c00;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.door-title {
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.door-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.back-button {
    background: linear-gradient(145deg, #ff8c00, #cc7000);
    color: #000 !important;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, #ff9f1a, #e67e00);
    color: #000 !important;
}

.placeholder-text {
    font-style: normal;
    color: #e0e0e0;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ff8c00;
    line-height: 1.8;
    font-size: 1.1rem;
}
/* Alternative placeholder text style for other doors */
.placeholder-text.italic {
    font-style: italic;
    color: #888;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed #666;
}

/* Text with image layout */
.text-with-image {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-top: 40px;
}

/* Text with image layout with reduced top margin */
.text-with-image-reduced {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-top: 5px;
}

.text-with-image .placeholder-text {
    flex: 1;
    min-width: 300px;
}

.moon-image {
    flex: 0 0 auto;
    max-width: 300px;
    text-align: center;
    margin-top: 120px;
}

.new-moon-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #ff8c00;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-moon-img:hover {
    transform: scale(3);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
}

/* New class for door 4 images - same size */
.door-4-img {
    max-width: 100%;
    height: 200px;
    border-radius: 15px;
    border: 3px solid #ff8c00;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Door 5 specific styling - same width, stacked vertically, match movie list height */
.door-5 .text-with-image {
    align-items: stretch;
}

.door-5 .moon-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 100%;
    justify-content: space-between;
    align-self: stretch;
}

.door-5 .new-moon-img {
    width: 200px;
    height: auto;
    display: block;
    flex: 1;
    object-fit: cover;
}

.door-4-img:hover {
    transform: scale(3);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
}

/* Specific styling for door 3 - center image vertically */
.door-3 .moon-image {
    margin-top: 0;
    align-self: center;
}

/* Text frame wrapper for consistent spacing */
.text-frame {
    margin: 0;
    padding: 0;
}

/* Centered images container for equal spacing between text frames */
.centered-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* Image container for individual images */
.image-container {
    flex: 0 0 auto;
    text-align: center;
}

/* Specific styling for door 4 - move image to the right */
.door-4 .text-with-image {
    flex-direction: row;
}

/* Movie list styling */
.movie-list {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    padding: 0 0 0 40px;
    list-style: decimal;
    font-style: bold;
}

.movie-list li {
    margin: 6px 0;
    padding: 0;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #16f63f;
}

/* Mobile optimizations for door pages */
@media (max-width: 768px) {
    .door-page {
        padding: 15px;
    }
    
    .door-content {
        padding: 25px;
        margin: 10px;
    }
    
    .door-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .door-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .movie-list {
        max-width: 100%;
        margin: 15px auto;
        padding: 0;
    }
    
    .movie-list li {
        font-size: 0.85rem;
        margin: 5px 0;
    }
    
    .back-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .placeholder-text {
        padding: 15px;
        font-size: 1rem;
        line-height: 1.6;
        font-style: bold;
    }
    
    .text-with-image {
        flex-direction: column;
        gap: 20px;
    }
    
    .text-with-image .placeholder-text {
        min-width: unset;
    }
    
    .moon-image {
        max-width: 100%;
        align-self: center;
    }
    
    .centered-images {
        margin: 35px 0;
        gap: 18px;
    }
    
    .image-container {
        max-width: 48%;
    }
}

@media (max-width: 480px) {
    .door-page {
        padding: 10px;
    }
    
    .door-content {
        padding: 20px;
        margin: 5px;
    }
    
    .door-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .door-text {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .movie-list {
        padding: 0;
        margin: 10px auto;
    }
    
    .movie-list li {
        font-size: 0.8rem;
        margin: 4px 0;
    }
    
    .back-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .placeholder-text {
        padding: 12px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .text-with-image {
        gap: 15px;
    }
    
    .moon-image {
        max-width: 90%;
    }
    
    .centered-images {
        margin: 30px 0;
        gap: 15px;
    }
    
    .image-container {
        max-width: 45%;
    }
}

/* Trivia Styles */
.trivia-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: transparent;
    border-radius: 25px;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 0 40px rgba(255, 140, 0, 0.4),
        inset 0 0 20px rgba(255, 140, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.trivia-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff8c00, #ff6b35, #9d4edd, #7b2cbf);
    border-radius: 25px;
    padding: 3px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.trivia-title {
    font-size: 2.5rem;
    color: #ff8c00;
    text-shadow: 
        0 0 10px rgba(255, 140, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 140, 0, 0.5);
    margin-bottom: 15px;
    text-align: center;
    animation: glow 2s ease-in-out infinite alternate;
    font-weight: bold;
    letter-spacing: 1px;
}

.trivia-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 35px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
}

.trivia-game {
    position: relative;
}

.question-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(45, 10, 92, 0.6));
    border-radius: 20px;
    padding: 35px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 0 25px rgba(157, 78, 221, 0.3),
        inset 0 0 15px rgba(157, 78, 221, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.question-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #9d4edd, #7b2cbf, #ff8c00, #ff6b35);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.question-number {
    font-size: 1.3rem;
    color: #ff8c00;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
    letter-spacing: 0.5px;
    position: relative;
}


.question-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 255, 255, 0.1);
    font-weight: 500;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.question-text::before {
    content: '❓';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.answer-btn {
    background: linear-gradient(135deg, rgba(45, 10, 92, 0.8), rgba(61, 15, 106, 0.9));
    border: 2px solid transparent;
    color: #fff;
    padding: 18px 25px;
    border-radius: 15px;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    font-family: inherit;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
}

.answer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.answer-btn:hover::before {
    left: 100%;
}

.answer-btn:hover {
    background: linear-gradient(135deg, rgba(61, 15, 106, 0.9), rgba(77, 26, 122, 0.9));
    border-color: #ff8c00;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(255, 140, 0, 0.4),
        0 0 20px rgba(255, 140, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
}

.answer-btn.selected {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    border-color: #ff6b35;
    color: #000;
    font-weight: bold;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(255, 140, 0, 0.6),
        0 0 30px rgba(255, 140, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    animation: selectedGlow 2s ease-in-out infinite alternate;
}

.answer-btn.correct {
    background: linear-gradient(135deg, #4caf50, #45a049);
    border-color: #4caf50;
    color: #fff;
    animation: correctPulse 0.8s ease-in-out;
    box-shadow: 
        0 8px 25px rgba(76, 175, 80, 0.5),
        0 0 20px rgba(76, 175, 80, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.answer-btn.incorrect {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-color: #f44336;
    color: #fff;
    animation: incorrectShake 0.8s ease-in-out;
    box-shadow: 
        0 8px 25px rgba(244, 67, 54, 0.5),
        0 0 20px rgba(244, 67, 54, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.answer-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    transform: none;
}

.answer-btn:disabled:hover {
    transform: none;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Answer Explanation Styles */
.answer-explanation {
    margin-top: 20px;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(45, 10, 92, 0.9), rgba(61, 15, 106, 0.9));
    border: 2px solid transparent;
    animation: explanationSlideIn 0.5s ease-out;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.explanation-content.correct-explanation {
}

.explanation-content.incorrect-explanation {
}

.explanation-text {
    color: #fff;
    margin: 8px 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.explanation-text:first-child {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

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

.submit-btn {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    border: 2px solid #ff6b35;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 20px auto 0;
    display: block;
    font-family: inherit;
    box-shadow: 
        0 6px 20px rgba(255, 140, 0, 0.5),
        0 0 15px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c00);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(255, 140, 0, 0.7),
        0 0 25px rgba(255, 140, 0, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 4px 15px rgba(255, 140, 0, 0.6),
        0 0 15px rgba(255, 140, 0, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 3px 8px rgba(255, 140, 0, 0.3);
}

.trivia-results {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.9), rgba(255, 105, 180, 0.8), rgba(255, 20, 147, 0.7));
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 0 40px rgba(255, 20, 147, 0.6),
        inset 0 0 20px rgba(255, 182, 193, 0.3),
        0 8px 32px rgba(255, 105, 180, 0.4);
    position: relative;
    overflow: hidden;
}

.trivia-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #ffc0cb, #ffb6c1);
    border-radius: 25px;
    padding: 3px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.score-display h3 {
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 20px;
    text-shadow: 
        0 0 15px rgba(255, 20, 147, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
    font-weight: bold;
    letter-spacing: 1px;
}

.score-display p {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 20, 147, 0.4);
    font-weight: 500;
}

.celebration {
    font-size: 1.3rem;
    color: #ff1493;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.2));
    border-radius: 15px;
    border: 2px solid rgba(255, 20, 147, 0.5);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: celebrationPulse 3s ease-in-out infinite;
}

.restart-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: 2px solid #ff1493;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 25px;
    font-family: inherit;
    box-shadow: 
        0 6px 20px rgba(157, 78, 221, 0.5),
        0 0 15px rgba(157, 78, 221, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.restart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.restart-btn:hover::before {
    left: 100%;
}

.restart-btn:hover {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(255, 20, 147, 0.7),
        0 0 25px rgba(255, 20, 147, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes correctPulse {
    0% { 
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(76, 175, 80, 0.5),
            0 0 20px rgba(76, 175, 80, 0.3);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 
            0 12px 35px rgba(76, 175, 80, 0.7),
            0 0 30px rgba(76, 175, 80, 0.5);
    }
    100% { 
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(76, 175, 80, 0.5),
            0 0 20px rgba(76, 175, 80, 0.3);
    }
}

@keyframes incorrectShake {
    0%, 100% { 
        transform: translateX(0);
        box-shadow: 
            0 8px 25px rgba(244, 67, 54, 0.5),
            0 0 20px rgba(244, 67, 54, 0.3);
    }
    25% { 
        transform: translateX(-8px);
        box-shadow: 
            0 8px 25px rgba(244, 67, 54, 0.7),
            0 0 25px rgba(244, 67, 54, 0.5);
    }
    75% { 
        transform: translateX(8px);
        box-shadow: 
            0 8px 25px rgba(244, 67, 54, 0.7),
            0 0 25px rgba(244, 67, 54, 0.5);
    }
}

@keyframes selectedGlow {
    0% {
        box-shadow: 
            0 8px 25px rgba(255, 140, 0, 0.6),
            0 0 30px rgba(255, 140, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(255, 140, 0, 0.8),
            0 0 40px rgba(255, 140, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes celebrationPulse {
    0% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(255, 20, 147, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 0 30px rgba(255, 20, 147, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(255, 20, 147, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50px) scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5) rotate(360deg);
    }
}

/* Responsive design for trivia */
@media (max-width: 768px) {
    .trivia-container {
        margin: 10px;
        padding: 20px;
    }
    
    .trivia-title {
        font-size: 2rem;
    }
    
    .trivia-subtitle {
        font-size: 1rem;
    }
    
    .question-container {
        padding: 25px;
    }
    
    .question-text {
        font-size: 1.3rem;
        padding: 15px;
    }
    
    .question-text::before {
        width: 25px;
        height: 25px;
        font-size: 1rem;
        top: -8px;
        left: 15px;
    }
    
    .answer-btn {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .submit-btn {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .trivia-results {
        padding: 25px;
    }
    
    .score-display h3 {
        font-size: 2rem;
    }
    
    .score-display p {
        font-size: 1.2rem;
    }
    
    .celebration {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .restart-btn {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}

/* Door 8 - Fibonacci Doors Styles */
.fibonacci-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    perspective: 2000px;
    position: relative;
    margin-top: 30px;
}

.door-stack {
    position: relative;
    width: 300px;
    height: 400px;
}

.fibonacci-door {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #8B4513, #654321);
    border: 4px solid #2F1B14;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Creepster', cursive;
    overflow: hidden;
}

.door-panel {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #8B4513, #654321);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.door-panel::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border: 2px solid #2F1B14;
    border-radius: 8px;
    background: linear-gradient(145deg, #A0522D, #8B4513);
}

.fibonacci-door .door-number {
    font-size: 7rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    color: #ff8c00;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
    z-index: 2;
    position: relative;
}

.door-handle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: radial-gradient(circle at 30% 30%, #FFD700, #FFA500, #B8860B);
    border-radius: 50%;
    border: 4px solid #8B4513;
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.door-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #8B4513, #654321);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.door-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.door-frame {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(145deg, #2F1B14, #1A0F0A);
    border-radius: 10px;
    z-index: -1;
}

.door-hinges {
    position: absolute;
    left: 10px;
    top: 20%;
    width: 8px;
    height: 60%;
    background: linear-gradient(to bottom, #2F1B14, #1A0F0A);
    border-radius: 4px;
    z-index: 1;
}

.door-hinges::before,
.door-hinges::after {
    content: '';
    position: absolute;
    left: -2px;
    width: 12px;
    height: 8px;
    background: #2F1B14;
    border-radius: 2px;
}

.door-hinges::before {
    top: 20%;
}

.door-hinges::after {
    bottom: 20%;
}

.fibonacci-door:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
}

.fibonacci-door:hover .door-handle {
    background: radial-gradient(circle at 30% 30%, #FFA500, #FF8C00, #FF6B00);
    transform: translateY(-50%) rotate(15deg) scale(1.3);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.6),
        0 4px 10px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 165, 0, 0.8),
        0 0 60px rgba(255, 140, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    animation: knobPulse 1.5s ease-in-out infinite alternate;
}

.fibonacci-door:hover .door-handle::after {
    background: radial-gradient(circle, #FFA500, #FF8C00);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 165, 0, 0.6),
        0 0 30px rgba(255, 140, 0, 0.3);
    transform: translate(-50%, -50%) scale(1.2);
}

.fibonacci-door.opening {
    transform: rotateY(-90deg) translateZ(-150px);
    opacity: 0.1;
}

.fibonacci-door.opened {
    transform: rotateY(-180deg) translateZ(-300px);
    opacity: 0.1;
    pointer-events: none;
}

.fibonacci-door .door-label {
    position: absolute;
    bottom: 20px;
    font-size: 1rem;
    color: #9d4edd;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@keyframes doorAppear {
    from {
        opacity: 0;
        transform: scale(0.8) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

.fibonacci-door.appearing {
    animation: doorAppear 0.6s ease-out;
}

.sequence-frame {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #2F1B14, #1A0F0A);
    border: 3px solid #8B4513;
    border-radius: 12px;
    padding: 8px 16px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    z-index: 10;
    font-family: 'Creepster', cursive;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff8c00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: frameGlow 2s ease-in-out infinite alternate;
}

.sequence-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(145deg, #8B4513, #654321);
    border-radius: 12px;
    z-index: -1;
}

@keyframes frameGlow {
    from {
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.6),
            inset 0 2px 4px rgba(255, 255, 255, 0.1),
            inset 0 -2px 4px rgba(0, 0, 0, 0.3),
            0 0 10px rgba(255, 140, 0, 0.3);
    }
    to {
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.6),
            inset 0 2px 4px rgba(255, 255, 255, 0.1),
            inset 0 -2px 4px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 140, 0, 0.6);
    }
}

@keyframes knobPulse {
    from {
        box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.6),
            0 4px 10px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(255, 165, 0, 0.8),
            0 0 60px rgba(255, 140, 0, 0.4),
            inset 0 3px 6px rgba(255, 255, 255, 0.6),
            inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    }
    to {
        box-shadow: 
            0 12px 30px rgba(0, 0, 0, 0.8),
            0 6px 15px rgba(0, 0, 0, 0.6),
            0 0 50px rgba(255, 165, 0, 1),
            0 0 100px rgba(255, 140, 0, 0.6),
            inset 0 4px 8px rgba(255, 255, 255, 0.8),
            inset 0 -3px 6px rgba(0, 0, 0, 0.6);
    }
}

/* Door 10 highlighted text styling */
.highlighted-text {
    font-weight: bold;
    font-size: 1.1rem;
    color: #08db91;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-style: italic;
    padding: 30px;
    margin: 30px;
}

/* Soul Effect - Divine Light Animation */
.soul-effect {
    color: #ffd700;
    text-shadow: 
        0 0 5px #ffd700,
        0 0 10px #ffd700,
        0 0 15px #ffd700,
        0 0 20px #ff8c00,
        0 0 35px #ff8c00,
        0 0 40px #ff8c00;
    animation: soulGlow 3s ease-in-out infinite alternate;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
}

.soul-effect:hover {
    transform: scale(1.1);
    animation-duration: 1s;
}

@keyframes soulGlow {
    0% {
        text-shadow: 
            0 0 5px #ffd700,
            0 0 10px #ffd700,
            0 0 15px #ffd700,
            0 0 20px #ff8c00,
            0 0 35px #ff8c00,
            0 0 40px #ff8c00;
        color: #ffd700;
    }
    50% {
        text-shadow: 
            0 0 10px #ffd700,
            0 0 20px #ffd700,
            0 0 30px #ffd700,
            0 0 40px #ff8c00,
            0 0 50px #ff8c00,
            0 0 60px #ff8c00;
        color: #fff;
    }
    100% {
        text-shadow: 
            0 0 15px #ffd700,
            0 0 25px #ffd700,
            0 0 35px #ffd700,
            0 0 45px #ff8c00,
            0 0 55px #ff8c00,
            0 0 65px #ff8c00;
        color: #ffd700;
    }
}

/* Beautiful Quote Styles */
.quote-container {
    position: relative;
    margin: 30px 0;
    perspective: 1000px;
}

.beautiful-quote {
    color: #fff;
    font-style: italic;
    font-size: 1.3rem;
    text-align: center;
    margin: 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(187, 59, 246, 0.15) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #ff8c00, #bb3bf6, #ff8c00) 1;
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(255, 140, 0, 0.3),
        0 0 60px rgba(187, 59, 246, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: rotateY(2deg) rotateX(1deg);
    transition: all 0.3s ease;
}

.beautiful-quote:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.quote-bg-rotate {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    animation: quoteRotate 20s linear infinite;
    pointer-events: none;
}

.quote-bg-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: quoteShimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.quote-text {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ff8c00, #ffb347, #bb3bf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-citation {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    color: #bb3bf6;
    text-shadow: 0 0 8px rgba(187, 59, 246, 0.6);
    position: relative;
    z-index: 2;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.quote-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 5px 0 0 0;
}

.quote-corner.top-left {
    top: 10px;
    left: 10px;
    border-top: 2px solid #ff8c00;
    border-left: 2px solid #ff8c00;
}

.quote-corner.top-right {
    top: 10px;
    right: 10px;
    border-top: 2px solid #bb3bf6;
    border-right: 2px solid #bb3bf6;
    border-radius: 0 5px 0 0;
}

.quote-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-bottom: 2px solid #bb3bf6;
    border-left: 2px solid #bb3bf6;
    border-radius: 0 0 0 5px;
}

.quote-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid #ff8c00;
    border-right: 2px solid #ff8c00;
    border-radius: 0 0 5px 0;
}

/* Quote Animation Keyframes */
@keyframes quoteRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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