
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-image: url('https://i.imgur.com/VPcfVUz.jpeg');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            color: #ffffff;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.85);
            min-height: 100vh;
        }
        
        header {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 30px;
            border-bottom: 2px solid #e50914;
        }
        
        .logo {
            width: 300px;
            margin-bottom: 20px;
        }
        
        .search-container {
            width: 100%;
            max-width: 600px;
            display: flex;
            margin-top: 10px;
        }
        
        .search-box {
            flex: 1;
            padding: 12px 15px;
            font-size: 16px;
            border: none;
            border-radius: 4px 0 0 4px;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .search-button {
            padding: 12px 20px;
            background: #e50914;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .search-button:hover {
            background: #b20710;
        }
        
        .ad-container {
            margin: 20px 0;
            text-align: center;
        }
        
        .main-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        
        .stream-button {
            display: block;
            width: 250px;
            margin: 20px auto;
            padding: 15px 20px;
            background: #e50914;
            color: white;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            border-radius: 4px;
            transition: transform 0.3s, background 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .stream-button:hover {
            transform: translateY(-3px);
            background: #b20710;
        }
        
        .content {
            padding: 30px 0;
        }
        
        .section {
            margin-bottom: 40px;
            background: rgba(20, 20, 20, 0.7);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        
        .section h2 {
            color: #e50914;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }
        
        .section p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .section ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .section li {
            margin-bottom: 10px;
        }
        
        .highlight {
            color: #e50914;
            font-weight: bold;
        }
        
        footer {
            text-align: center;
            padding: 30px 20px;
            background: rgba(0, 0, 0, 0.9);
            margin-top: 40px;
            border-top: 2px solid #e50914;
        }
        
        footer p {
            margin: 10px 0;
            color: #aaa;
        }
        
        @media (max-width: 768px) {
            .logo {
                width: 200px;
            }
            
            .search-container {
                flex-direction: column;
            }
            
            .search-box {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .search-button {
                border-radius: 4px;
            }
        }
    