     
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow: hidden;
        }
        
        body {
            background: #000;
            height: 100vh;
            width: 100vw;
            display: flex;
            flex-direction: column;
            font-family: Arial, sans-serif;
        }
          #video-title {
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 10px;
            text-align: center;
            font-size: 18px;
            flex-shrink: 0;
            z-index: 10;
        }
        
        #video-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        #video-player {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            background: #000;
        }
        
        /* Video kontrolleri için özel stil */
        #video-player::-webkit-media-controls {
            display: flex !important;
        }
        #video-player::-webkit-media-controls-panel {
            background: rgba(0,0,0,0.7);
            bottom: 0;
            position: absolute;
            width: 100%;
            z-index: 10;
        }
        #video-player::-webkit-media-controls-play-button,
        #video-player::-webkit-media-controls-volume-slider,
        #video-player::-webkit-media-controls-mute-button {
            display: none;
        }
        
        #news-ticker {
            background: red;
            padding: 1.2vh 0;
            position: relative;
            flex-shrink: 0;
            z-index: 10;
        }
        
        #ticker-content {
            display: inline-block;
            padding-left: 100%;
            white-space: nowrap;
            color: white;
            font-size: 1.8vw;
            animation: ticker 30s linear infinite;
        }
        
        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        /* TV'ler için ek optimizasyon */
        @media (orientation: portrait) {
            #video-title { font-size: 3vh; }
            #ticker-content { font-size: 2vh; }
        }

        /* Video yükleme animasyonu */
        .video-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2vw;
            display: none;
            z-index: 5;
        }