/* Reveal Animation Styles */

/* Container for reveal animations */
.reveal-animation-container {
    min-height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.reveal-animation-container.home-reveal {
    width: 100%;
    height: 100%;
}

/* Base Styles for all reveal cards */
.coming-soon .reveal-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.revealing {
    animation: revealPulse 0.5s ease-in-out infinite;
}

@keyframes revealPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ==================== FLIP CLOCK ==================== */
.reveal-flip-clock .reveal-card-inner {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.flip-clock-header {
    margin-bottom: 20px;
}

.flip-clock-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.flip-clock-display {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.flip-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flip-card {
    position: relative;
    background: linear-gradient(180deg, #3a3a4e 0%, #2a2a3e 50%, #252535 50%, #1a1a2e 100%);
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    min-width: 48px;
    text-align: center;
}

.flip-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%);
    z-index: 2;
}

.flip-card::after {
    content: '';
    position: absolute;
    left: 4px;
    right: 4px;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    z-index: 1;
}

.flip-card-inner {
    position: relative;
}

.flip-number {
    font-family: 'Courier New', monospace;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.flip-card.flipping {
    animation: flipCard 0.6s ease-in-out;
    transform-style: preserve-3d;
}

@keyframes flipCard {
    0% { 
        transform: rotateX(0deg);
    }
    50% { 
        transform: rotateX(-90deg);
        background: linear-gradient(180deg, #2a2a3e 0%, #1a1a2e 100%);
    }
    51% {
        transform: rotateX(90deg);
    }
    100% { 
        transform: rotateX(0deg);
    }
}

.flip-card.flipping .flip-number {
    animation: flipNumberFade 0.6s ease-in-out;
}

@keyframes flipNumberFade {
    0%, 45% { opacity: 1; }
    50% { opacity: 0; }
    55%, 100% { opacity: 1; }
}

.flip-label {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.flip-separator {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
    height: 52px;
    display: flex;
    align-items: center;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.flip-clock-footer {
    margin-top: 24px;
}

.mystery-text {
    font-size: 1.5rem;
    letter-spacing: 8px;
    color: var(--color-primary);
    animation: mysteryPulse 2s ease-in-out infinite;
}

@keyframes mysteryPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ==================== MATRIX ==================== */
.reveal-matrix .reveal-card-inner {
    background: #0a0a14;
    position: relative;
}

.matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.matrix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 20, 0.8) 100%);
}

.matrix-content {
    text-align: center;
    z-index: 1;
}

.matrix-title {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #6366f1;
    letter-spacing: 4px;
    margin-bottom: 16px;
    animation: matrixFlicker 0.5s infinite;
}

@keyframes matrixFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.matrix-countdown {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.matrix-time {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.matrix-sep {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    color: #00ff00;
    opacity: 0.5;
}

.matrix-progress {
    width: 200px;
    height: 4px;
    background: rgba(0, 255, 0, 0.2);
    border-radius: 2px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.matrix-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #6366f1);
    border-radius: 2px;
    transition: width 1s linear;
    box-shadow: 0 0 10px #00ff00;
}

.matrix-text {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #6366f1;
    letter-spacing: 2px;
}

/* ==================== FROST ==================== */
.reveal-frost .reveal-card-inner {
    background: linear-gradient(180deg, #1e3a5f 0%, #0a1628 100%);
    position: relative;
}

.frost-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.frost-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 2s ease-out;
}

.frost-layer-1 {
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.frost-layer-2 {
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.frost-layer-3 {
    background: linear-gradient(180deg, rgba(173, 216, 230, 0.3) 0%, transparent 50%);
}

.frost-crystals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 2%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 3%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.7) 0%, transparent 2%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 2%);
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.frost-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 24px;
    text-align: center;
}

.frost-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    animation: frostFloat 3s ease-in-out infinite;
}

@keyframes frostFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.frost-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b8e4f0;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(184, 228, 240, 0.5);
}

.frost-countdown {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.frost-time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.frost-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.frost-label {
    font-size: 0.65rem;
    color: #b8e4f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.frost-melt-bar {
    width: 80%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.frost-melt-progress {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #b8e4f0);
    border-radius: 3px;
    transition: width 1s linear;
}

/* ==================== FIREWORKS ==================== */
.reveal-fireworks .reveal-card-inner {
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.fireworks-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fireworks-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 24px;
}

.fireworks-ball-container {
    position: relative;
    margin-bottom: 20px;
}

.fireworks-ball {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #d946ef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    transition: transform 1s ease-out;
}

.ball-shine {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 20px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.ball-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.fireworks-rope {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3));
    transform: translateX(-50%);
}

.fireworks-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.fw-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fw-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
}

.fw-label {
    font-size: 0.6rem;
    color: var(--color-text-muted);
}

.fw-sep {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.fireworks-label {
    font-size: 0.9rem;
    color: var(--color-primary);
    letter-spacing: 2px;
}

/* ==================== PUZZLE ==================== */
.reveal-puzzle .reveal-card-inner {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1f4e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.puzzle-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.puzzle-hidden-image {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: linear-gradient(135deg, #6366f1 0%, #d946ef 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
    z-index: 1;
}

.puzzle-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: visible;
}

.puzzle-piece {
    position: absolute;
    width: 50px;
    height: 50px;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Jigsaw piece SVG background */
.puzzle-piece::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #252540;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,20 Q0,0 20,0 L40,0 Q45,0 45,5 Q45,15 50,15 Q55,15 55,5 Q55,0 60,0 L80,0 Q100,0 100,20 L100,40 Q100,45 95,45 Q85,45 85,50 Q85,55 95,55 Q100,55 100,60 L100,80 Q100,100 80,100 L60,100 Q55,100 55,95 Q55,85 50,85 Q45,85 45,95 Q45,100 40,100 L20,100 Q0,100 0,80 L0,60 Q0,55 5,55 Q15,55 15,50 Q15,45 5,45 Q0,45 0,40 Z'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,20 Q0,0 20,0 L40,0 Q45,0 45,5 Q45,15 50,15 Q55,15 55,5 Q55,0 60,0 L80,0 Q100,0 100,20 L100,40 Q100,45 95,45 Q85,45 85,50 Q85,55 95,55 Q100,55 100,60 L100,80 Q100,100 80,100 L60,100 Q55,100 55,95 Q55,85 50,85 Q45,85 45,95 Q45,100 40,100 L20,100 Q0,100 0,80 L0,60 Q0,55 5,55 Q15,55 15,50 Q15,45 5,45 Q0,45 0,40 Z'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

/* Final positions (in a 4x4 grid within the container) */
.puzzle-piece:nth-child(1) { --final-x: 10px; --final-y: 10px; }
.puzzle-piece:nth-child(2) { --final-x: 55px; --final-y: 10px; }
.puzzle-piece:nth-child(3) { --final-x: 100px; --final-y: 10px; }
.puzzle-piece:nth-child(4) { --final-x: 145px; --final-y: 10px; }
.puzzle-piece:nth-child(5) { --final-x: 10px; --final-y: 55px; }
.puzzle-piece:nth-child(6) { --final-x: 55px; --final-y: 55px; }
.puzzle-piece:nth-child(7) { --final-x: 100px; --final-y: 55px; }
.puzzle-piece:nth-child(8) { --final-x: 145px; --final-y: 55px; }
.puzzle-piece:nth-child(9) { --final-x: 10px; --final-y: 100px; }
.puzzle-piece:nth-child(10) { --final-x: 55px; --final-y: 100px; }
.puzzle-piece:nth-child(11) { --final-x: 100px; --final-y: 100px; }
.puzzle-piece:nth-child(12) { --final-x: 145px; --final-y: 100px; }
.puzzle-piece:nth-child(13) { --final-x: 10px; --final-y: 145px; }
.puzzle-piece:nth-child(14) { --final-x: 55px; --final-y: 145px; }
.puzzle-piece:nth-child(15) { --final-x: 100px; --final-y: 145px; }
.puzzle-piece:nth-child(16) { --final-x: 145px; --final-y: 145px; }

/* Revealed pieces go to their final positions */
.puzzle-piece.revealed {
    left: var(--final-x) !important;
    top: var(--final-y) !important;
    transform: rotate(0deg) !important;
}

.puzzle-piece.revealed::before {
    background: transparent;
}

/* Scattered positions - ON the image area but rotated/displaced */
.puzzle-piece:nth-child(1):not(.revealed) { left: 20px; top: 30px; transform: rotate(-25deg); }
.puzzle-piece:nth-child(2):not(.revealed) { left: 90px; top: 15px; transform: rotate(18deg); }
.puzzle-piece:nth-child(3):not(.revealed) { left: 130px; top: 50px; transform: rotate(-12deg); }
.puzzle-piece:nth-child(4):not(.revealed) { left: 60px; top: 70px; transform: rotate(30deg); }
.puzzle-piece:nth-child(5):not(.revealed) { left: 15px; top: 100px; transform: rotate(-20deg); }
.puzzle-piece:nth-child(6):not(.revealed) { left: 110px; top: 90px; transform: rotate(15deg); }
.puzzle-piece:nth-child(7):not(.revealed) { left: 50px; top: 120px; transform: rotate(-35deg); }
.puzzle-piece:nth-child(8):not(.revealed) { left: 140px; top: 130px; transform: rotate(22deg); }
.puzzle-piece:nth-child(9):not(.revealed) { left: 25px; top: 60px; transform: rotate(28deg); }
.puzzle-piece:nth-child(10):not(.revealed) { left: 85px; top: 140px; transform: rotate(-18deg); }
.puzzle-piece:nth-child(11):not(.revealed) { left: 120px; top: 25px; transform: rotate(12deg); }
.puzzle-piece:nth-child(12):not(.revealed) { left: 40px; top: 150px; transform: rotate(-28deg); }
.puzzle-piece:nth-child(13):not(.revealed) { left: 100px; top: 60px; transform: rotate(35deg); }
.puzzle-piece:nth-child(14):not(.revealed) { left: 10px; top: 140px; transform: rotate(-15deg); }
.puzzle-piece:nth-child(15):not(.revealed) { left: 70px; top: 40px; transform: rotate(20deg); }
.puzzle-piece:nth-child(16):not(.revealed) { left: 130px; top: 110px; transform: rotate(-30deg); }

/* Different piece colors for variety */
.puzzle-piece:nth-child(odd)::before { background: #2d2d4a; }
.puzzle-piece:nth-child(even)::before { background: #252540; }
.puzzle-piece:nth-child(3n)::before { background: #353560; }

.puzzle-content {
    text-align: center;
    width: 100%;
}

.puzzle-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.puzzle-subtitle {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.puzzle-countdown {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.puzzle-time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(99, 102, 241, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
}

.puzzle-time {
    font-weight: bold;
    font-size: 1.3rem;
    color: #fff;
}

.puzzle-time-label {
    font-size: 0.6rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.puzzle-progress {
    position: relative;
    width: 100%;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.puzzle-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #d946ef);
    border-radius: 12px;
    transition: width 1s linear;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}

.puzzle-progress-text {
    font-size: 0.75rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

/* ==================== CLOCKCLOCK 24 ==================== */
.reveal-clockclock .reveal-card-inner {
    background: linear-gradient(180deg, #0a0a12 0%, #12121f 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.clockclock-header {
    text-align: center;
    margin-bottom: 12px;
}

.clockclock-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.clockclock-days {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
}

.clockclock-days span {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
}

.clockclock-display {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.clockclock-digit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    padding: 4px;
}

.mini-clock {
    width: 22px;
    height: 22px;
    background: linear-gradient(145deg, #1a1a2a, #0f0f1a);
    border-radius: 50%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mini-clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 2px;
    height: 9px;
    background: linear-gradient(to top, #6366f1, #a5b4fc);
    transform-origin: bottom center;
    margin-left: -1px;
    border-radius: 1px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 3px rgba(99, 102, 241, 0.5);
}

.mini-clock-hand.hand-b {
    background: linear-gradient(to top, #d946ef, #f0abfc);
    box-shadow: 0 0 3px rgba(217, 70, 239, 0.5);
}

.mini-clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.clockclock-colon {
    font-size: 1.8rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
    animation: blink 1s infinite;
}

.clockclock-footer {
    margin-top: 12px;
}

.clockclock-sublabel {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==================== ANALOG CLOCKS ==================== */
.reveal-clocks .reveal-card-inner {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.clocks-header {
    margin-bottom: 16px;
}

.clocks-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.clocks-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.clock-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.analog-clock {
    position: relative;
    width: 56px;
    height: 56px;
}

.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

.clock-marks {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: 
        repeating-conic-gradient(
            from 0deg,
            rgba(255, 255, 255, 0.2) 0deg 2deg,
            transparent 2deg 30deg
        );
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    border-radius: 2px;
    transition: transform 0.3s ease-out;
}

.clock-hand.hour-hand {
    width: 3px;
    height: 16px;
    background: linear-gradient(to top, #6366f1, #a5b4fc);
    margin-left: -1.5px;
    box-shadow: 0 0 4px rgba(99, 102, 241, 0.5);
}

.clock-hand.minute-hand {
    width: 2px;
    height: 20px;
    background: linear-gradient(to top, #d946ef, #f0abfc);
    margin-left: -1px;
    box-shadow: 0 0 4px rgba(217, 70, 239, 0.5);
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6366f1, #d946ef);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.clock-digital {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
}

.clock-label {
    font-size: 0.6rem;
    color: var(--color-text-muted);
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clock-separator {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 16px;
    animation: blink 1s infinite;
}

.clocks-footer {
    margin-top: 20px;
}

.clocks-mystery {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 600px) {
    .flip-clock-display {
        gap: 4px;
    }
    
    .flip-card {
        padding: 8px 10px;
    }
    
    .flip-top, .flip-bottom {
        font-size: 1.3rem;
    }
    
    .flip-separator {
        font-size: 1.3rem;
    }
    
    .frost-countdown {
        gap: 6px;
    }
    
    .frost-time-unit {
        padding: 8px 10px;
    }
    
    .frost-number {
        font-size: 1.2rem;
    }
    
    .fw-number {
        font-size: 1.3rem;
    }
    
    .puzzle-grid {
        width: 120px;
        height: 120px;
    }
}
