* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
        body { 
            background: #0e0e0e; 
            color: white; 
            display: flex; 
            justify-content: center; 
            align-items: flex-start; 
            min-height: 100vh; 
            padding: 20px; 
            flex-direction: column;
        }

        p{
            margin-top: 10px;
        }

        .main-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
        }

        

        .banner img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            display: block; 
        }

        

        .video-container video { 
            width: 100%; 
            height: 100%;
            object-fit: cover; 
            border-radius: 10px; 
            box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
        }

        .nav-buttons { 
            position: absolute; 
            top: 10px; 
            left: 50%; 
            transform: translateX(-50%); 
            display: flex; 
            gap: 10px; 
        }

        .nav-buttons a { 
            background: rgba(120, 99, 121, 0.744); 
            border: none; 
            padding: 10px 15px; 
            border-radius: 5px; 
            text-decoration: none; 
            color: rgb(3, 3, 3); 
            transition: 0.3s; 
            font-size: 14px;
        }

        .nav-buttons a:hover { background: rgba(255,255,255,0.7); }

        .content { 
            flex: 1;
            width: 35%; /* Default for larger screens */
            max-width: 800px;
            height: 100vh; 
            padding: 20px;
            display: flex; 
            flex-direction: column; 
            align-items: flex-start;
            overflow-y: auto;
        }

        .content h2 { 
            margin-bottom: 15px;
            font-size: 2rem;
            text-align: center;
        }

        .hashtags { 
            display: flex; 
            justify-content: flex-start; 
            gap: 15px; 
            margin: 20px 0; 
            flex-wrap: wrap; 
        }

        .hashtags button, .special-btn, .view-code { 
            padding: 12px 20px; 
            border: none; 
            border-radius: 5px; 
            cursor: pointer; 
            transition: 0.3s; 
            font-size: 14px; 
        }

        .hashtags button { background: #444; color: white; }

        .special-btn { 
            background: linear-gradient(45deg, #ff416c, #ff4b2b); 
            color: white; 
            font-weight: bold; 
        }

        .special-btn:hover { background: linear-gradient(45deg, #ff4b2b, #ff416c); }

        .view-code { 
            margin-top: 20px; 
            background: #0078ff; 
            color: white; 
        }

        .view-code:hover { background: #0056b3; }

        p{
            font-size: 16px;
        }

        