

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #0c0c0c;
    color: #f2f2f2;
}

header {
    text-align: center;
    padding: 60px 20px 40px 20px;
    background: #111;
    border-bottom: 2px solid #ff7b00;
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #ff7b00;
}

header p {
    font-size: 1.1em;
    color: #aaa;
}

.odpocet {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.digit-box {
    background-color: #2b2b2b;
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Courier New', monospace;
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 50px;
    text-align: center;
}

.separator {
    color: #999;
    font-size: 1.5rem;
    font-weight: bold;
}


main {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

section {
    background: #121212;
    padding: 40px;
}

h2 {
    color: #ff7b00;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff7b00;
    padding-bottom: 8px;
}

p, li {
    color: #ddd;
    line-height: 1.7;
}

ul {
    margin-left: 20px;
}

#sponzori {
    text-align: center;
}

.sponzori2 {
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: 30px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponzori3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    width: max-content;
    animation: scrollSponsors 25s linear infinite;
}

.sponzori3 img {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s, filter 0.3s;
    filter: brightness(0.9);
}

.tabulka {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #1a1a1a;
    overflow: hidden;
}

.tabulka th, 
.tabulka td {
    padding: 10px 15px;
    text-align: left;
}

.tabulka th {
    background-color: #ff7b00;
    color: #fff;
    font-weight: 600;
}

.tabulka tr:nth-child(even) {
    background-color: #222;
}

.tabulka tr:hover {
    background-color: #333;
}

.tabulka a {
    color: #ff7b00;
    text-decoration: none;
    font-weight: bold;
}

.tabulka a:hover {
    text-decoration: underline;
}


@keyframes scrollSponsors {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


footer {
    background-color: #0a0a0a;
    color: #aaa;
    font-size: 0.9rem;
    text-align: center;
    padding: 25px 20px;
    border-top: 2px solid #ff7b00;
    line-height: 1.5;
}

/* Responzivita */
@media (max-width: 900px) {
   
    section {
        padding: 20px;
    }
    .sponzori2 {
        width: 95%;
        height: 140px;
    }
    .sponzori3 {
        gap: 60px;
        animation: scrollSponsors 20s linear infinite;
    }
    .sponzori3 img {
        height: 80px;
    }
}


