:root {
    --color-bg: #05050a;
    --color-bg-secondary: #0f0f1a;
    --color-primary: #00f2ff; /* Neon Cyan */
    --color-secondary: #ff0055; /* Neon Pink */
    --color-accent: #ffc107; /* Gold/Yellow */
    --color-text: #ffffff;
    --color-text-muted: #8b9bb4;
    --color-success: #39ff14; /* Toxic Green */
    --color-danger: #ff0000; /* Toxic Red */
    
    --font-main: 'Outfit', sans-serif;
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 10px;
    
    --shadow-glow-primary: 0 0 20px rgba(0, 242, 255, 0.3);
    --shadow-glow-secondary: 0 0 20px rgba(255, 0, 85, 0.3);
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* --- Background Effects --- */
.app-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 50%, rgba(0, 242, 255, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 0, 85, 0.08), transparent 25%);
    pointer-events: none;
}

/* --- Header --- */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5,5,10,0.9), transparent);
    pointer-events: none;
}

.app-header__brand {
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text);
    pointer-events: auto;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
    animation: heartbeat-glow 3s ease-in-out infinite;
}

.app-header__subtitle {
    display: none;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 10;
}

.hero__content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero__title--highlight {
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
    text-shadow: var(--shadow-glow-primary);
    font-style: italic;
}

.hero__text {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    font-weight: 300;
}

/* Categories Grid */
.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    width: 100%;
    perspective: 1000px;
}

/* Modern Category Card (for non-electric ones) */
.modern-category-card {
    width: 300px;
    height: 420px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);

    /* Dynamic Color Generation based on --hue */
    --hue: 180; /* Default Cyan */
    --neon: hsl(var(--hue), 90%, 60%);
    --neon-glow: hsl(var(--hue), 100%, 50%);
    --neon-bg: hsla(var(--hue), 90%, 60%, 0.15);
    --neon-border: hsla(var(--hue), 90%, 60%, 0.3);
}

.modern-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--neon-bg), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.modern-category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--neon-bg);
}

.modern-category-card:hover::before {
    opacity: 1;
}

.modern-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-card-badge {
    align-self: flex-start;
    background: var(--neon-bg);
    color: var(--neon);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--neon-border);
}

.modern-card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 2rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-card-divider {
    margin-top: auto;
    margin-bottom: 1rem;
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black, transparent);
}

.modern-card-description {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.modern-card-arrow {
    margin-top: 2rem;
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modern-category-card:hover .modern-card-arrow {
    background: var(--neon);
    border-color: var(--neon);
    color: black;
    transform: rotate(-45deg);
}

/* --- Game Section --- */
.game {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
}

.game__cards {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Card Styles */
.card {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--color-bg-secondary);
    transition: flex 0.5s ease;
}

.card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.7;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s;
    filter: grayscale(10%) contrast(110%);
}

.card:hover .card__image {
    transform: scale(1.05);
    opacity: 0.8;
    filter: grayscale(0%) contrast(110%);
}

.card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,10,0.2), rgba(5,5,10,0.8));
    z-index: 2;
    transition: background 0.3s;
}

.card__content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: block;
}

.card__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    letter-spacing: -1px;
    
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 2rem;
    margin: 0 0 4rem 0;
    z-index: 1;
}

.card__value-placeholder {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
    min-height: 1.2em;
    font-variant-numeric: tabular-nums;
    
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    margin: 0;
    z-index: 2;
}

.card__unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 4rem;
    width: auto;
    z-index: 1;
    white-space: nowrap;
}

/* VS Badge */
.vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: var(--color-bg);
    border-radius: 50%;
    /* Optical adjustment for italic text */
    padding-right: 8px; 
}

/* Ring / Loader */
.vs-ring {
    display: block;
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.1);
    z-index: -1;
    transition: border-color 0.3s, box-shadow 0.3s;
    /* Force hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.vs-badge.loading .vs-ring {
    border-color: rgba(255,255,255,0.1);
    border-top-color: #fff;
    animation: spin-ring 1s linear infinite;
    -webkit-animation: spin-ring 1s linear infinite;
    transition: none;
}

.vs-badge.correct .vs-ring {
    border-color: var(--color-success);
    box-shadow: 0 0 20px var(--color-success);
    animation: none;
    -webkit-animation: none;
}

.vs-badge.wrong .vs-ring {
    border-color: var(--color-danger);
    box-shadow: 0 0 20px var(--color-danger);
    animation: none;
    -webkit-animation: none;
}

@keyframes spin-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@-webkit-keyframes spin-ring {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

.vs-char {
    font-weight: 900;
    font-style: italic;
    font-size: 2.5rem;
    color: var(--color-text);
    line-height: 1;
}

.vs-v { 
    color: var(--color-danger); 
    text-shadow: 0 0 20px var(--color-danger); 
    /* Remove negative margin to prevent off-center look */
}
.vs-s { 
    color: var(--color-success); 
    text-shadow: 0 0 20px var(--color-success); 
}
.vs-slash { display: none; } /* Simplified VS */

/* Game Buttons */
.game__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8rem; /* Unit margin (4rem) + Unit height (~2.5rem) + Gap (1.5rem) */
    z-index: 10;
}

.game__button {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    font-family: var(--font-main);
}

.game__button i { font-size: 1.2em; }

@media (hover: hover) {
    .game__button--higher:hover:not(:disabled) {
        background: rgba(0, 255, 157, 0.1);
        border-color: var(--color-success);
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
        transform: translateY(-2px);
    }

    .game__button--lower:hover:not(:disabled) {
        background: rgba(255, 51, 102, 0.1);
        border-color: var(--color-danger);
        box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
        transform: translateY(-2px);
    }
}

.game__button--higher:active:not(:disabled),
.game__button--higher.active {
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--color-success);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
    transform: translateY(-2px);
}

.game__button--lower:active:not(:disabled),
.game__button--lower.active {
    background: rgba(255, 51, 102, 0.1);
    border-color: var(--color-danger);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
    transform: translateY(-2px);
}

.game__button:disabled {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

/* UI Layer */
.game__ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    justify-content: center;
    padding: 1.5rem;
    pointer-events: none;
}

.game__scoreboard {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-radius: 50px;
    padding: 0.5rem;
    pointer-events: auto;
    position: relative;
    min-width: 320px;
}

.game__score-box {
    text-align: center;
    padding: 0.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game__score-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.game__score-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    min-width: 3ch; /* Prevent jumping */
}

/* Info Icon */
.game__info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    cursor: help;
    transition: all 0.2s;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.game__info-icon:hover { 
    color: var(--color-text);
    background: rgba(255,255,255,0.15);
}

.game__info-tooltip {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a24;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    width: 320px;
    font-size: 0.9rem;
    color: #ddd;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 100;
}

.game__info-icon:hover .game__info-tooltip {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 20px);
}

.tooltip-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

.tooltip-row:last-child { border: none; margin: 0; padding: 0; }
.tooltip-label { color: var(--color-text-muted); font-size: 0.85rem; }
.tooltip-value { color: var(--color-text); font-weight: 600; text-align: right; }

/* Game Status */
.game__status {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* Feedback States */
.card.correct .card__overlay { background: rgba(0, 255, 157, 0.4); }
.card.wrong .card__overlay { background: rgba(255, 51, 102, 0.4); }

/* Game Over */
.game-over {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(5, 5, 10, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.game-over__title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-danger);
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px var(--color-danger);
    animation: pulse-danger 2s infinite;
}

@keyframes pulse-danger {
    0% { text-shadow: 0 0 30px var(--color-danger); opacity: 1; }
    50% { text-shadow: 0 0 60px var(--color-danger); opacity: 0.8; }
    100% { text-shadow: 0 0 30px var(--color-danger); opacity: 1; }
}

.game-over__score {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--color-text);
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.game-over__actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.game-over__button {
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-main);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.game-over__button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255,255,255,0.4);
    background: white;
}

.game-over__button--secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--color-text);
    box-shadow: none;
}

.game-over__button--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-text);
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    color: white;
}

/* Report Button */
.card__credit {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 20;
    font-size: 0.8rem;
    opacity: 0.6;
    color: var(--color-text-muted);
}

.card__credit a {
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.card__credit a:hover {
    color: var(--color-primary);
    border-bottom-style: solid;
    border-color: var(--color-primary);
    opacity: 1;
}

.card__report {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 20;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.card__report:hover {
    background: var(--color-danger);
    color: white;
    border-color: var(--color-danger);
}

/* Mobile */
@media (max-width: 768px) {
    /* Hide App Header when game is active to save space */
    body.game-active .app-header {
        display: none;
    }

    .hero__title { font-size: 3rem; }
    
    .game__cards {
        flex-direction: column;
        flex: 1;
        height: auto;
        min-height: 0;
    }
    
    .card {
        justify-content: center; /* Center content vertically */
        padding-bottom: 2rem; /* Space for credits */
    }

    /* Add spacing around VS badge */
    .card--left {
        padding-bottom: 3rem;
    }
    
    .card--right {
        padding-top: 3rem;
    }
    
    .card__content { 
        padding: 0.5rem 1rem; 
        gap: 0.25rem; 
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
        justify-content: center;
        align-items: center;
    }
    
    .card__title { 
        font-size: 1.3rem; 
        word-break: break-word; /* Prevent overflow */
        margin: 0;
        position: static;
        width: auto;
        padding: 0;
        transform: none;
    }
    
    .card__value-placeholder { 
        font-size: 2rem; 
        min-height: 1.2em;
        position: static;
        transform: none;
        margin: 0;
        width: auto;
    }
    
    .card__unit {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin: 0;
        position: static;
        transform: none;
        width: auto;
    }
    
    .vs-badge { 
        width: 3.5rem; 
        height: 3.5rem; 
        padding-right: 5px;
        z-index: 50;
        
        /* Anchor to the seam between cards */
        position: relative;
        top: auto;
        left: auto;
        transform: translate(0, 0);
        margin: -1.75rem auto;
    }

    .vs-ring {
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-width: 3px;
    }
    
    .vs-char { font-size: 1.2rem; }
    
    .game__buttons {
        flex-direction: row;
        position: static;
        margin-top: 1rem;
        max-width: 100%;
        padding: 0;
        transform: none;
        gap: 0.5rem;
    }
    
    .game__button { 
        flex: 1; 
        padding: 0.8rem; 
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .game__ui-layer {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        order: -1;
        padding: 0.25rem;
        background: transparent;
        pointer-events: none;
        z-index: 60;
        height: auto;
        flex-shrink: 0; /* Don't shrink scoreboard */
    }
    
    .game__scoreboard {
        padding: 0.25rem 0.75rem;
        gap: 0.25rem;
        background: rgba(0,0,0,0.8);
        min-width: auto; /* Allow shrinking */
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        border-radius: 16px;
    }
    
    .game__score-value { font-size: 1rem; }
    .game__score-label { font-size: 0.6rem; }
    
    .game__info-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    /* Position credits safely at bottom corners */
    .card__credit { 
        bottom: 0.5rem; 
        right: 0.5rem; 
        font-size: 0.6rem;
        max-width: 60%;
    }
    
    .card__report { 
        bottom: 0.5rem; 
        left: 0.5rem; 
        width: 28px;
        height: 28px;
    }

    /* Game Over Mobile */
    .game-over__title {
        font-size: 3rem;
    }

    .game-over__actions {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
        box-sizing: border-box;
        gap: 1rem;
    }

    .game-over__button {
        width: 100%;
        padding: 1rem;
        min-height: 48px;
    }
}

/* Animations */
@keyframes heartbeat-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255,255,255,0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 157, 255, 0.652), 0 0 40px rgba(0, 242, 255, 0.4);
    }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.card__image { animation: fadeIn 0.5s ease-out; }

.skeleton {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    animation: pulse-skeleton 1.5s infinite;
}

@keyframes pulse-skeleton {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

/* Utility */
[hidden] {
    display: none !important;
}
