        :root {
            /* Default Dark Theme */
            --background-color: #1a1a1a;
            --container-color: #333333;
            --text-color: #e0e0e0;
            --header-color: #222222;
            --footer-text-color: #a0a0a0;
            --link-color: #f0f0f0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            transition: background-color 0.3s, color 0.3s;
        }
        
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5px;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5px;
            background-color: var(--header-color);
            border-radius: 8px;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .logo-container img {
            height: 40px;
            width: auto;
        }

        .header-icons img {
            height: 28px;
            width: 28px;
            margin-left: 15px;
            cursor: pointer;
        }
        

		
        #channels-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 8px;
            padding: 5px;
        }

        .channel-block {
            background-color: var(--container-color);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            aspect-ratio: 1 / 1;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .channel-block a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .channel-block img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.2s ease-in-out;
        }

        .channel-block:hover img {
            transform: scale(1.05);
        }

        .info-section {
            background-color: var(--container-color);
            padding: 20px;
            margin: 15px 5px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .info-section h1 {
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        .info-section p {
            font-size: 0.9em;
            line-height: 1.5;
            color: var(--text-color);
            opacity: 0.9;
        }

        footer {
            padding: 15px 10px;
            font-size: 0.8em;
            color: var(--footer-text-color);
            text-align: left;
        }

        footer p {
            margin-bottom: 10px;
        }

        footer a {
            color: var(--link-color);
            text-decoration: none;
        }

        .footer-copyright {
            text-align: center;
            margin-top: 20px;
            padding-top: 10px;
            border-top: 1px solid #444;
        }
        
        /* Reusing these styles for consistency */
        .channel-name {
            color: var(--text-color);
        }
