* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Consolas, monospace;
    background: radial-gradient(circle at top, #0b1220, #05070d);
    color: #00ff99;
    padding: 30px;
}


/* MAIN TITLE */
h1 {
    text-align: center;
    font-size: 3rem;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 0 0 25px rgba(0,255,153,0.6);
}

p {
    margin-top: 0px;
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: center;
    color: #00ff88;
}

.kou {
    text-align: center;
    margin-bottom: 30px;
    color:#00ff88;
    font-size: 5rem;
}

.koup {
    text-align: center;
    margin-bottom: 15px;
    color:#00ff88;
    font-size: 5rem;
    margin-top: 40px;
}

/* SECTION TITLES */
.stats-title {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #7dffcc;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0,255,153,0.2);
}

/* TIME GRID */
.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1700px;
    margin: 0 auto;
}

/* TIME CARD */
.time-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(0,255,153,0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,255,153,0.05);
    transition: 0.2s;
}

.time-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0,255,153,0.2);
}

/* TIME TEXT */
.time {
    margin-top: 10px;
    font-size: 14px;
    color: #aaffdd;
}

/* STATS GRID (FIXED LAYOUT 4 + 3) */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* druhý řádek (3 karty) zarovnáme doprostřed */
.stats::after {
    content: "";
    grid-column: span 1;
}

/* STAT BOX (VĚTŠÍ KARTY) */
.stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,153,0.2);
    border-radius: 16px;
    padding: 26px;

    min-height: 120px;

    box-shadow: 0 0 15px rgba(0,255,153,0.08);
    transition: 0.2s ease;
    backdrop-filter: blur(8px);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* hover efekt */
.stat-box:hover {
    transform: scale(1.06);
    border-color: rgba(0,255,153,0.5);
    box-shadow: 0 0 30px rgba(0,255,153,0.25);
}

/* label */
.label {
    font-size: 14px;
    color: #9fffe0;
    margin-bottom: 10px;
}

/* value */
.stat-box div:last-child {
    font-size: 26px;
    font-weight: bold;
    color: #00ff99;
}

/* VALUE */
.stat-box div:last-child {
    font-size: 20px;
    font-weight: bold;
    color: #00ff99;
}

/* SMOOTH GLOW TITLE */
h1 {
    animation: glow 3s infinite;
}

@keyframes glow {
    0% { text-shadow: 0 0 10px #00ff99; }
    50% { text-shadow: 0 0 30px #00ff99; }
    100% { text-shadow: 0 0 10px #00ff99; }
}


/* 4 KARTY NAHOŘE */
.stats-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 3 KARTY DOLE */
.stats-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;   /* 👈 tohle je STŘED */
}


#matrix {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;

    width: 100%;
    height: 100%;

    background: #000;
}

body {
    background: #000;
    overflow-x: hidden;
}

.dashboard {
    position: relative;
    z-index: 1;
}