/**
 * games.css - Games Hub Page Styles
 *
 * Styles specific to the games hub page (games.html).
 * Includes game card grid, hidden card effects, and animations.
 */

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

@keyframes secretSpin {
    to { transform: rotate(360deg); }
}

@keyframes mysteryPulse {
    0%, 100% { transform: scale(1); filter: hue-rotate(0deg); }
    50% { transform: scale(1.1); filter: hue-rotate(30deg); }
}

@keyframes titleWobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes floatUp {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-100px); }
}

@keyframes rainbowPulse {
    0% { box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 0 30px var(--glow-color), 0 0 60px var(--glow-color); }
    100% { box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
}

@keyframes dizzyWobble {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(1.5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes swirlSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes swapBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes cardFlipOut {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}
@keyframes cardFlipIn {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@keyframes naughtyWiggle {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px) rotate(-2deg); }
    40% { transform: translateX(8px) rotate(2deg); }
    60% { transform: translateX(-5px) rotate(-1deg); }
    80% { transform: translateX(5px) rotate(1deg); }
}
@keyframes emojiExplode {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--ex), var(--ey)) scale(0.3); opacity: 0; }
}
@keyframes speechPop {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    60% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@keyframes floatZ {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-60px); opacity: 0; }
}
@keyframes scanlineScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 4px; }
}

@keyframes flappyPopIn {
    0% { transform: scale(0) rotate(-10deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes gamesGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes dotDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes floatDeco {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-30px) translateX(15px) rotate(5deg); }
    50% { transform: translateY(-10px) translateX(30px) rotate(0deg); }
    75% { transform: translateY(-40px) translateX(15px) rotate(-5deg); }
    100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

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

@keyframes headerEntrance {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes gamesTextGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes titleGlitch {
    0%, 96%, 98.5%, 100% {
        letter-spacing: normal;
        text-shadow: 0 0 10px rgba(56, 239, 125, 0.5), 0 0 20px rgba(123, 47, 247, 0.3), 0 0 40px rgba(0, 210, 255, 0.2);
    }
    97% {
        letter-spacing: 3px;
        text-shadow: 2px 0 #ff0055, -2px 0 #00ff88, 0 0 10px rgba(56, 239, 125, 0.5);
    }
    97.5% {
        letter-spacing: -1px;
        text-shadow: -2px 0 #ff0055, 2px 0 #00ff88, 0 0 10px rgba(56, 239, 125, 0.5);
    }
    98% {
        letter-spacing: 1px;
        text-shadow: 1px 0 #ff0055, -1px 0 #00ff88, 0 0 10px rgba(56, 239, 125, 0.5);
    }
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    40% { transform: scale(1.2); }
    60% { transform: scale(0.95); }
    80% { transform: scale(1.05); }
}

/* ========================================
   RESET
   ======================================== */

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

/* ========================================
   BODY & LAYOUT
   ======================================== */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a0533 15%, #7b2ff7 30%, #00d2ff 50%, #11998e 65%, #38ef7d 80%, #1a0533 100%);
    background-size: 400% 400%;
    animation: gamesGradientShift 15s ease infinite;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    animation: dotDrift 8s linear infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.08) 2px,
        rgba(0, 0, 0, 0.08) 4px
    );
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    animation: scanlineScroll 0.8s linear infinite;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    animation: headerEntrance 0.6s ease-out backwards;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.4rem;
    background: linear-gradient(45deg, #38ef7d, #00d2ff, #7b2ff7, #ff6b9d, #ffd700, #38ef7d);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gamesTextGradient 4s ease infinite, titleGlitch 12s linear infinite;
    text-shadow: 0 0 10px rgba(56, 239, 125, 0.5), 0 0 20px rgba(123, 47, 247, 0.3), 0 0 40px rgba(0, 210, 255, 0.2);
}

.back-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.back-btn:hover, .back-btn:active {
    background: white;
    color: #11998e;
}

/* ========================================
   NAUGHTY MESSAGE
   ======================================== */

.naughty-message {
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 30px;
    text-align: center;
    animation: headerEntrance 0.6s ease-out 0.15s backwards;
    position: relative;
    z-index: 1;
}

.naughty-message h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.naughty-message p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* ========================================
   GAMES GRID
   ======================================== */

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========================================
   GAME CARDS
   ======================================== */

.game-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: cardEntrance 0.5s ease-out backwards, cardFloat 5s ease-in-out 0.8s infinite;
    position: relative;
    z-index: 1;
}

.game-card:nth-child(1) { animation-delay: 0.2s, 1.0s; }
.game-card:nth-child(2) { animation-delay: 0.27s, 1.07s; }
.game-card:nth-child(3) { animation-delay: 0.34s, 1.14s; }
.game-card:nth-child(4) { animation-delay: 0.41s, 1.21s; }
.game-card:nth-child(5) { animation-delay: 0.48s, 1.28s; }
.game-card:nth-child(6) { animation-delay: 0.55s, 1.35s; }
.game-card:nth-child(7) { animation-delay: 0.62s, 1.42s; }
.game-card:nth-child(8) { animation-delay: 0.69s, 1.49s; }
.game-card:nth-child(9) { animation-delay: 0.76s, 1.56s; }
.game-card:nth-child(10) { animation-delay: 0.83s, 1.63s; }
.game-card:nth-child(11) { animation-delay: 0.90s, 1.70s; }
.game-card:nth-child(12) { animation-delay: 0.97s, 1.77s; }
.game-card:nth-child(13) { animation-delay: 1.04s, 1.84s; }
.game-card:nth-child(14) { animation-delay: 1.11s, 1.91s; }
.game-card:nth-child(15) { animation-delay: 1.18s, 1.98s; }
.game-card:nth-child(16) { animation-delay: 1.25s, 2.05s; }

/* Cancel float animation during easter egg states */
.game-card.shuffling {
    animation: none !important;
}
.game-card.sleepy {
    animation: none;
}
.game-card.drag-source {
    animation: none !important;
}
.game-card.drag-target {
    animation: none;
}

.game-card:hover, .game-card:active {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 210, 255, 0.3), 0 0 40px rgba(123, 47, 247, 0.15);
    animation-play-state: paused, paused;
    border-color: rgba(255, 255, 255, 0.6);
}

.game-card:hover .game-icon {
    animation: iconBounce 0.5s ease;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
}

.game-card h2 {
    color: #11998e;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
}

/* ========================================
   HIDDEN GAME CARD
   ======================================== */

.hidden-game-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.95), rgba(75, 0, 130, 0.95));
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.4);
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease, transform 2s ease;
    border: 3px dashed rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

.hidden-game-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hidden-game-card.clickable {
    pointer-events: auto;
}

.hidden-game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: secretSpin 4s linear infinite;
    pointer-events: none;
}

.hidden-game-card .game-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
    animation: mysteryPulse 2s ease infinite;
}

.hidden-game-card h2 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.hidden-game-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.4;
}

.hidden-game-card:hover, .hidden-game-card:active {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.6);
}

/* ========================================
   CARD SHUFFLE (SHAKE)
   ======================================== */

.game-card.shuffling {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1.2) !important;
    z-index: 50;
    transform: translate(var(--shuffle-x, 0), var(--shuffle-y, 0)) rotate(var(--shuffle-r, 0));
    animation: none !important;
}

/* ========================================
   RAINBOW GRID (CIRCLE GESTURE)
   ======================================== */

.game-card.rainbow-glow {
    animation: rainbowPulse 0.8s ease forwards;
}

.circle-indicator {
    position: fixed;
    border: 3px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
}

/* ========================================
   SPEED SCROLL (DIZZY)
   ======================================== */

body.dizzy-mode {
    animation: dizzyWobble 0.3s ease infinite;
}

.dizzy-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200vmax;
    height: 200vmax;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.08) 60deg,
        transparent 120deg,
        rgba(255, 255, 255, 0.08) 180deg,
        transparent 240deg,
        rgba(255, 255, 255, 0.08) 300deg,
        transparent 360deg
    );
    animation: swirlSpin 2s linear infinite;
    opacity: 0.7;
    transition: opacity 0.5s;
}

.dizzy-overlay.fading {
    opacity: 0;
}

/* ========================================
   CARD SWAP (DRAG & DROP)
   ======================================== */

.game-card.drag-source {
    opacity: 0.4;
    transform: scale(0.95) !important;
    transition: opacity 0.2s, transform 0.2s !important;
    animation: none !important;
}

.game-card.drag-target {
    box-shadow: 0 0 20px rgba(17, 153, 142, 0.6), 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    transform: scale(1.03);
    transition: box-shadow 0.2s, transform 0.2s !important;
    animation: none;
}

.drag-ghost {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.85;
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    text-align: center;
    max-width: 280px;
}

.game-card.swap-bounce {
    animation: swapBounce 0.3s ease;
}

/* ========================================
   GRAVITY TILT
   ======================================== */

.game-card.tilt-enabled {
    transition: transform 0.15s ease-out;
}

/* ========================================
   CARD FLIP
   ======================================== */

.game-card.flip-out {
    animation: cardFlipOut 0.15s ease-in forwards;
}
.game-card.flip-in {
    animation: cardFlipIn 0.15s ease-out forwards;
}
.game-card.flipped .flip-joke {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    font-size: 1.1rem;
    color: #11998e;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    padding: 10px;
}

/* ========================================
   NAUGHTY TAP
   ======================================== */

.naughty-message.wiggling {
    animation: naughtyWiggle 0.4s ease;
}
.naughty-exploding {
    position: fixed;
    font-size: 2.5rem;
    pointer-events: none;
    z-index: 1000;
    animation: emojiExplode 0.8s ease-out forwards;
}

/* ========================================
   KONAMI RETRO MODE
   ======================================== */

body.retro-mode {
    filter: contrast(1.5) saturate(2) brightness(1.1);
    transition: filter 0.3s;
}
.retro-scanlines {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    animation: scanlineScroll 0.5s linear infinite;
    opacity: 1;
    transition: opacity 0.5s;
}
.retro-scanlines.fading {
    opacity: 0;
}

/* ========================================
   SECRET TYPER SPEECH BUBBLE
   ======================================== */

.dad-speech-bubble {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 320px;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.5;
    animation: speechPop 0.4s ease forwards;
}
.dad-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px; left: 50%;
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-top-color: white;
    border-bottom: 0;
}
.dad-speech-bubble.fading {
    opacity: 0;
    transition: opacity 0.3s;
}

/* ========================================
   SLEEPY CARDS
   ======================================== */

.game-card.sleepy {
    transform: rotate(var(--tilt, -3deg));
    opacity: 0.7;
    transition: transform 0.5s ease, opacity 0.5s ease;
    animation: none;
}
.floating-z {
    position: fixed;
    font-size: 1.5rem;
    pointer-events: none;
    z-index: 100;
    animation: floatZ 2s ease-in-out infinite;
    opacity: 0.8;
}

/* ========================================
   FLAPPY REVEAL (CARD SHUFFLE)
   ======================================== */

.flappy-reveal {
    animation: flappyPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ========================================
   FLOATING DECORATIVE EMOJIS
   ======================================== */

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

.floating-deco {
    position: absolute;
    opacity: 0.15;
    animation: floatDeco var(--float-duration, 20s) ease-in-out infinite;
    will-change: transform;
}

.floating-deco:nth-child(1) {
    top: 10%; left: 5%;
    font-size: 2.5rem;
    --float-duration: 18s;
    animation-delay: 0s;
}
.floating-deco:nth-child(2) {
    top: 60%; right: 8%;
    font-size: 2rem;
    --float-duration: 22s;
    animation-delay: -4s;
    opacity: 0.12;
}
.floating-deco:nth-child(3) {
    top: 25%; right: 15%;
    font-size: 3rem;
    --float-duration: 25s;
    animation-delay: -8s;
    opacity: 0.18;
}
.floating-deco:nth-child(4) {
    bottom: 15%; left: 12%;
    font-size: 1.8rem;
    --float-duration: 20s;
    animation-delay: -2s;
    opacity: 0.14;
}
.floating-deco:nth-child(5) {
    top: 45%; left: 3%;
    font-size: 2.2rem;
    --float-duration: 28s;
    animation-delay: -6s;
    opacity: 0.16;
}
.floating-deco:nth-child(6) {
    bottom: 30%; right: 5%;
    font-size: 2.8rem;
    --float-duration: 24s;
    animation-delay: -10s;
    opacity: 0.13;
}
.floating-deco:nth-child(7) {
    top: 75%; left: 40%;
    font-size: 1.6rem;
    --float-duration: 16s;
    animation-delay: -3s;
    opacity: 0.12;
}
.floating-deco:nth-child(8) {
    top: 5%; right: 35%;
    font-size: 2rem;
    --float-duration: 30s;
    animation-delay: -12s;
    opacity: 0.17;
}

/* ========================================
   TWINKLING SPARKLES
   ======================================== */

.games-sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.games-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: gamesTwinkle var(--twinkle-duration, 3s) ease-in-out infinite;
    opacity: 0;
}

.games-sparkle:nth-child(1) { top: 8%; left: 15%; --twinkle-duration: 2.5s; animation-delay: 0s; }
.games-sparkle:nth-child(2) { top: 15%; right: 20%; --twinkle-duration: 3.2s; animation-delay: 0.5s; }
.games-sparkle:nth-child(3) { top: 30%; left: 8%; --twinkle-duration: 2.8s; animation-delay: 1.2s; }
.games-sparkle:nth-child(4) { top: 40%; right: 12%; --twinkle-duration: 3.5s; animation-delay: 0.8s; }
.games-sparkle:nth-child(5) { top: 55%; left: 25%; --twinkle-duration: 2.2s; animation-delay: 1.8s; }
.games-sparkle:nth-child(6) { top: 65%; right: 30%; --twinkle-duration: 4s; animation-delay: 0.3s; }
.games-sparkle:nth-child(7) { top: 78%; left: 45%; --twinkle-duration: 2.6s; animation-delay: 2.1s; }
.games-sparkle:nth-child(8) { top: 85%; right: 8%; --twinkle-duration: 3.8s; animation-delay: 1.5s; }
.games-sparkle:nth-child(9) { top: 20%; left: 50%; --twinkle-duration: 3s; animation-delay: 2.5s; }
.games-sparkle:nth-child(10) { top: 50%; right: 45%; --twinkle-duration: 2.4s; animation-delay: 0.7s; }

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }

    .naughty-message h2 {
        font-size: 1.4rem;
    }

    .game-card {
        padding: 25px 20px;
    }

    .game-icon {
        font-size: 3rem;
    }

    .game-card h2 {
        font-size: 1.3rem;
    }

    .drag-ghost {
        max-width: 200px;
        padding: 20px;
    }

    .dad-speech-bubble {
        max-width: 85vw;
        padding: 20px 25px;
        font-size: 1rem;
    }

    .floating-deco {
        font-size: 1.5rem !important;
        opacity: 0.10 !important;
    }

    .games-sparkle {
        width: 3px;
        height: 3px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
