/* ======================== */
/*   ZÁKLADNÍ STYL STRÁNKY  */
/* ======================== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #000000; /* tmavé černé pozadí */
    color: #f0f0f0; /* světle šedý text pro lepší čitelnost */
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.section {
    text-align: center;
    padding: 60px 20px;
    animation: fadeSlide 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeSlide {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}

/* ======================== */
/*       NAVIGACE           */
/* ======================== */
nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: rgba(0,0,0,0.85); /* tmavší průhledná černá */
    position: sticky;
    top: 0;
    backdrop-filter: blur(5px);
}

nav a {
    color: #ccc;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #00ff9d;
    text-shadow: 0 0 10px #00ff9d;
}

/* ======================== */
/*        HERO SEC          */
/* ======================== */
#hero {
    text-align: center;
    padding: 120px 20px;
    background: rgba(0,0,0,0.85); /* tmavší pozadí hrdiny */
}

#hero h1 {
    font-size: 4em;
    text-shadow: 0 0 15px #00ff8c;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ff8c; }
    to { text-shadow: 0 0 25px #00ffaa; }
}

/* ======================== */
/*         BUTTON           */
/* ======================== */
.btn {
    background: #00885c; /* tmavší zelená */
    padding: 12px 25px;
    border-radius: 8px;
    color: #fff; /* světlý text */
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn:hover {
    background: #00cc77;
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ff99;
}

/* ======================== */
/*     KARTY & OBSAH        */
/* ======================== */
.card {
    background: rgba(0,0,0,0.85); /* tmavší karta */
    padding: 25px;
    border-radius: 15px;
    width: 80%;
    margin: auto;
    text-align: left;
    border: 2px solid #00ff99;
    box-shadow: 0 0 20px rgba(0,255,150,0.2); /* jemnější světlo */
}

.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ======================== */
/*        SHOP ITEM         */
/* ======================== */
.shop-box {
    width: 220px;
    background: rgba(0,0,0,0.85);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #0aff9a;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.shop-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px #00ff9d;
}

.item-img {
    width: 100%;
    image-rendering: pixelated;
    border-radius: 8px;
}

/* ======================== */
/*         TEAM GRID        */
/* ======================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    padding: 20px;
}

.team-card {
    background: rgba(0,0,0,0.85);
    border: 2px solid #00ffaa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ffaa;
}

.team-card img {
    width: 80px;
    border-radius: 8px;
}

/* ======================== */
/*     SEASON COUNTDOWN     */
/* ======================== */
#countdown {
    font-size: 2.2em;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88, 0 0 25px #009955;
}

/* ======================== */
/*     ZOMBIE EFFECTS       */
/* ======================== */
.zombie-glow {
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88, 0 0 20px #00bb66;
}

.zombie-border {
    border: 2px solid #00ff88;
    box-shadow: 0 0 15px #00ff88;
}

/* ======================== */
/* MOBILE RESPONSIVE */
/* ======================== */
@media(max-width: 700px) {
    #hero h1 { font-size: 2.7em; }
    .card { width: 95%; }
    .shop-box { width: 90%; }
} 
