:root {
    --bg-color: #0f172a;
    --text-color: #f1f5f9;
    --card-bg: rgba(30, 41, 59, 0.7);
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    --hover-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Dynamic Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
    overflow: hidden;
}

.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.background-animation::before {
    background: #6366f1;
    top: -100px;
    left: -100px;
    animation-delay: -5s;
}

.background-animation::after {
    background: #ec4899;
    bottom: -100px;
    right: -100px;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(100px, 50px);
    }
}

/* Layout */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.hero {
    margin-bottom: 4rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    color: #94a3b8;
    font-weight: 300;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-bottom: 4rem;
}

/* Card Styling */
.card {
    background: var(--card-bg);
    border: 1px solid var(--hover-border);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 102, 241, 0.5);
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover .icon {
    transform: scale(1.1);
}

.card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card p {
    color: #cbd5e1;
    font-weight: 300;
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.card:hover .card-shine {
    animation: shine 0.75s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--hover-border);
}

/* Entrance Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.5s;
}

.delay-4 {
    animation-delay: 0.6s;
}

.delay-5 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.cta-container {
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #cbd5e1;
    font-size: 1rem;
    padding: 0.8rem 2rem;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Full height hero adjustment */
.hero.full-height {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: auto;
    width: 100%;
}

.contact-info {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-info .highlight {
    color: #a855f7;
    /* Purple to match theme */
    font-weight: 700;
}

/* Pro Status Page Styles */
.filter-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-end;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.status-banner {
    width: 100%;
    background-color: #22c55e;
    color: white;
    padding: 1rem;
    text-align: left;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-banner.partial-outage {
    background-color: #eab308;
}

.status-banner.major-outage {
    background-color: #ef4444;
}

.uptime-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.uptime-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.uptime-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.uptime-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.uptime-status {
    font-size: 0.9rem;
    font-weight: 600;
}

.uptime-status.operational {
    color: #22c55e;
}

.uptime-status.down {
    color: #ef4444;
}

.uptime-bars {
    display: flex;
    gap: 4px;
    height: 35px;
}

.bar {
    flex: 1;
    background-color: #22c55e;
    border-radius: 2px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 100;
    pointer-events: none;
    /* Let mouse pass through */
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    width: 250px;
}

.tooltip.visible {
    opacity: 1;
}

.tooltip-date {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.tooltip-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tooltip-status.outage {
    color: #eab308;
}

.tooltip-status.operational {
    color: #22c55e;
}

.tooltip-duration {
    margin-left: auto;
    font-weight: 400;
    color: #cbd5e1;
}

.tooltip-details {
    font-size: 0.85rem;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.bar {
    position: relative;
    /* For cursor positioning context if needed */
    cursor: pointer;
}

.bar.empty {
    background-color: rgba(255, 255, 255, 0.1);
}

.bar.down {
    background-color: #ef4444;
}

.uptime-footer {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Countdown Styles */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--hover-border);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 120px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Canvas Background */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: auto; /* Required to catch mouse movement */
}

/* Clicker Game Styling */
.clicker-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--hover-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.clicker-score-board h2 {
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
}

#cps-display {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.main-click-btn {
    background: var(--primary-gradient);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-main);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: transform 0.1s, box-shadow 0.1s;
    user-select: none;
    -webkit-user-select: none;
}

.main-click-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.upgrades-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.upgrade-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f1f5f9;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s;
    flex: 1;
}

.upgrade-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.upgrade-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255,255,255,0.05);
}

.upg-cost {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-top: 0.3rem;
}

/* Theme Selector */
.theme-selector {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid var(--hover-border);
    padding: 0.5rem;
    border-radius: 15px;
    z-index: 10;
}

.theme-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #cbd5e1;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.2s;
    text-align: left;
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.theme-btn.active {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    color: #fff;
    font-weight: 500;
}

/* -------------- Achievements System -------------- */
/* Toast Notification */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
    pointer-events: none;
}

.achievement-toast {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid #a855f7;
    border-left: 5px solid #a855f7;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.achievement-toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 2rem;
}

.toast-content h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toast-content p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: var(--bg-color);
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.modal-overlay.hidden .modal-content {
    transform: translateY(-50px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.close-modal {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #ef4444;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.2s;
}

.achievement-card.unlocked {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.achievement-card.locked {
    opacity: 0.5;
    filter: grayscale(1);
}

.ac-icon {
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ac-details h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: #fff;
}

.ac-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* -------------- New Features (Election Pack) -------------- */

/* 1. Taxpayer Money Counter */
.taxpayer-counter {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem auto;
    text-align: center;
    max-width: 600px;
}
.taxpayer-counter p { margin: 0 0 0.5rem 0; color: #fca5a5; font-size: 1.1rem; }
.taxpayer-counter h2 { margin: 0; color: #ef4444; font-size: 2.5rem; letter-spacing: 2px; }

/* 2. Tug of War (Kötélhúzás) */
.tug-of-war-section {
    background: var(--card-bg);
    border: 1px solid var(--hover-border);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.tug-of-war-section h3 { margin-bottom: 0.5rem; }
.tug-of-war-section p { color: #94a3b8; margin-bottom: 1.5rem; }

.tug-bar-container {
    width: 100%;
    height: 30px;
    background: #ef4444; /* Right side default color (Government) */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255,255,255,0.1);
}
.tug-bar-fill {
    height: 100%;
    background: #3b82f6; /* Left side default color (Opposition) */
    transition: width 0.3s ease-out;
}
.tug-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}
.tug-btn {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.1s;
    color: white;
}
.tug-btn:active { transform: scale(0.95); }
.left-side { background: #3b82f6; }
.right-side { background: #ef4444; }

/* 3. BINGO Grid */
.bingo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 15px;
}
.bingo-cell {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
    padding: 0.5rem;
    overflow: hidden;
    word-break: break-word;
}
.bingo-cell:hover {
    background: rgba(255,255,255,0.1);
}
.bingo-cell.stamped {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    color: #4ade80;
    text-decoration: line-through;
    font-weight: bold;
}
.bingo-cell.free {
    font-weight: bold;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
}

/* 4. News Marquee */
.news-marquee {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #0f172a;
    border-top: 2px solid #ef4444;
    display: flex;
    z-index: 100;
}
.marquee-label {
    background: #ef4444;
    color: white;
    font-weight: bold;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 2;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.marquee-content-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    position: absolute;
    animation: marquee 30s linear infinite;
    color: white;
    font-size: 1.1rem;
}
.marquee-item {
    margin-right: 3rem;
}
.marquee-item::after {
    content: "•";
    color: #ef4444;
    margin-left: 3rem;
}

@keyframes marquee {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}



/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .container {
        padding: 1rem;
    }

    .countdown-container {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 90px;
        padding: 1rem;
    }

    .countdown-value {
        font-size: 2.5rem;
    }
}

/* Krumpliosztás */
.falling-potato {
    position: absolute;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto; /* Potatoes must be clickable */
    animation: fall linear forwards;
    transition: transform 0.1s;
}
.falling-potato:hover {
    transform: scale(1.2);
}
@keyframes fall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Guruló dollárok */
.floating-dollar {
    position: absolute;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.5rem;
    pointer-events: none;
    animation: floatUp 1s ease-out forwards;
    z-index: 1000;
}
@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0;
    }
}

/* Snake Game */
#snake-canvas {
    background: #111;
    border: 3px solid #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    margin: 1rem auto;
}

/* Kenőpénz Táska */
.volner-taska {
    position: fixed;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 9999;
    animation: bounceTaska 0.5s infinite alternate ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
}

@keyframes bounceTaska {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

/* Felcsúti Kisvasút */
.kisvasut {
    position: fixed;
    bottom: 20px;
    left: -200px;
    font-size: 3rem;
    z-index: 1000;
    cursor: pointer;
    white-space: nowrap;
    transition: left 15s linear;
    pointer-events: auto;
}

/* Phase 4 Extras */
.blinking-dot {
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}