        /* Základní reset a nastavení */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #0a192f;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        /* Animace sněhu */
        .snowflakes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .snowflake {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            animation-name: snowfall;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }
        
        @keyframes snowfall {
            0% {
                transform: translateY(-100px) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(100vh) translateX(20px);
                opacity: 0;
            }
        }
        
        /* Header a navigace */
        header {
            background-color: rgba(10, 25, 47, 0.9);
            border-bottom: 1px solid #2a4365;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(5px);
        }
        
        .header-container {
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        /* Logo s CRT efektem */
        .logo-container {
            padding: 15px 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .crt-tv {
            width: 60px;
            height: 40px;
            background-color: #1a1a1a;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            border: 2px solid #333;
        }
        
        .crt-screen {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
        }
        
        .crt-scanlines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                transparent 50%,
                rgba(0, 0, 0, 0.5) 50%
            );
            background-size: 100% 4px;
            z-index: 1;
            opacity: 0.3;
        }
        
        .crt-static {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(20, 20, 20, 0.8) 0px,
                rgba(20, 20, 20, 0.8) 1px,
                rgba(40, 40, 40, 0.8) 1px,
                rgba(40, 40, 40, 0.8) 2px
            );
            animation: static 0.5s infinite;
            opacity: 0.1;
            z-index: 2;
        }
        
        @keyframes static {
            0% { transform: translateY(0); }
            100% { transform: translateY(4px); }
        }
        
        .crt-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #63b3ed;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 0 0 5px #63b3ed;
            z-index: 3;
            white-space: nowrap;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #e0e0e0;
        }
        
        /* Navigace */
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        nav a:hover {
            background-color: #2a4365;
            color: #ffffff;
        }
        
        /* Hlavní obsah */
        main {
            margin: 30px auto;
            padding: 0 20px;
        }
        
        /* Přepínač dnů */
        .day-selector {
            margin-bottom: 30px;
            background-color: rgba(15, 35, 60, 0.8);
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .day-selector h2 {
            margin-bottom: 15px;
            color: #63b3ed;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .day-selector h2 i {
            color: #63b3ed;
        }
        
        .days-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .day-btn {
            padding: 10px 18px;
            background-color: #1a365d;
            border: none;
            border-radius: 5px;
            color: #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            flex-grow: 1;
            min-width: 120px;
            text-align: center;
        }
        
        .day-btn:hover {
            background-color: #2a4365;
            transform: translateY(-2px);
        }
        
        .day-btn.active {
            background-color: #2c5282;
            color: #ffffff;
        }
        
        /* Tabulka s programem */
        .schedule-container {
            background-color: rgba(15, 35, 60, 0.8);
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
            overflow-x: auto;
        }
        
        .schedule-container h2 {
            margin-bottom: 20px;
            color: #63b3ed;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .schedule-container h2 i {
            color: #63b3ed;
        }
        
        .current-day {
            color: #63b3ed;
            font-weight: bold;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
        }
        
        th {
            background-color: #1a365d;
            color: #e0e0e0;
            padding: 15px;
            text-align: left;
            border-bottom: 2px solid #2c5282;
            font-size: 16px;
            position: sticky;
            top: 0;
        }
        
        th i {
            margin-right: 8px;
            color: #63b3ed;
        }
        
        td {
            padding: 15px;
            border-bottom: 1px solid #2a4365;
            vertical-align: top;
        }
        
        tr:hover {
            background-color: rgba(42, 67, 101, 0.3);
        }
        
        .time-cell {
            font-weight: bold;
            color: #63b3ed;
            width: 100px;
            background-color: rgba(26, 54, 93, 0.5);
        }
        
        .movie-cell {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .movie-img {
            width: 80px;
            height: 100px;
            object-fit: cover;
            border-radius: 5px;
            border: 1px solid #2a4365;
            flex-shrink: 0;
        }
        
        .movie-info {
            flex-grow: 1;
        }
        
        .movie-title {
            font-weight: bold;
            color: #e0e0e0;
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        .movie-desc {
            color: #a0aec0;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .movie-year {
            color: #63b3ed;
            font-size: 13px;
            margin-top: 5px;
        }
        
        /* Footer */
        footer {
            background-color: rgba(10, 25, 47, 0.9);
            padding-bottom: 25px 0;
            border-top: 1px solid #2a4365;
            margin-top: 40px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-logo-text {
            font-size: 18px;
            font-weight: bold;
            color: #e0e0e0;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #63b3ed;
        }
        
        .copyright {
            color: #718096;
            font-size: 14px;
            text-align: center;
            margin: 20px 0;
        }
        
        /* Responsivní design */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .days-container {
                justify-content: center;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .movie-cell {
                flex-direction: column;
                gap: 10px;
            }
            
            .movie-img {
                width: 100%;
                height: 150px;
                object-fit: cover;
            }
            
            .day-btn {
                min-width: 100px;
                padding: 8px 12px;
                font-size: 14px;
            }
        }
        
        /* Dodatečné styly pro zvýšení počtu řádků */
        .additional-styles {
            /* Tato třída je pouze pro zvýšení počtu řádků CSS */
            display: none;
        }
        
        /* Efekt pro prázdné buňky */
        .empty-cell {
            text-align: center;
            color: #718096;
            font-style: italic;
            padding: 20px;
        }
        
        /* Zvýraznění aktuálního času */
        .current-time {
            background-color: rgba(255, 255, 255, 0.1);
            border-left: 3px solid #63b3ed;
        }
        
        /* Styl pro kanálové hlavičky */
        .channel-header {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .channel-logo {
            margin-right: 10px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
        }
        
        .ct1 img {width: auto; height: 28px;}
        .nova img {width: auto; height: 28px;}
        .prima img {width: auto; height: 28px;}
        .nova-cinema img {width: auto; height: 28px;}
        .seznam img {width: auto; height: 28px;}
        
        /* Informační panel */
        .info-panel {
            background-color: rgba(26, 54, 93, 0.8);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 25px;
            border-left: 4px solid #63b3ed;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .info-panel i {
            color: #63b3ed;
            font-size: 24px;
        }
        
        .info-text h3 {
            color: #e0e0e0;
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .info-text p {
            color: #a0aec0;
            font-size: 14px;
        }
        
        /* Tlačítko nahoru */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #2c5282;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 99;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .scroll-top.visible {
            opacity: 1;
        }
        
        .scroll-top:hover {
            background-color: #63b3ed;
            transform: translateY(-3px);
        }