
        /* General Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            transition: background 0.3s ease-in-out;
        }
        .dark-mode {
            background-color: #121212;
            color: white;
        }
        
        /* Dark Mode Toggle Button (Top Left) */
        #themeToggle {
            position: fixed;
            top: 15px;
            left: 15px;
            font-size: 1.5rem;
            border: none;
            background: none;
            cursor: pointer;
            color: white;
            transition: color 0.3s;
        }
        #themeToggle:hover {
            color: #ffdd57;
        }

        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            height: 50vh;
            overflow: hidden;
        }
        #heroVideo {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        .overlay h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .overlay input, .overlay button {
            padding: 10px;
            margin: 5px;
            font-size: 1rem;
            border: none;
            border-radius: 5px;
        }
        .overlay button {
            background: #ff4500;
            color: white;
            cursor: pointer;
        }
        .overlay button:hover {
            background: #e63e00;
        }
        
        /* Tags Section */
        #tagsContainer {
            text-align: center;
            padding: 20px;
        }
        .tag-item {
            display: inline-block;
            background: #ffdd57;
            color: #333;
            padding: 8px 12px;
            margin: 5px;
            border-radius: 5px;
            cursor: pointer;
        }
        .tag-item:hover {
            background: #ffcc00;
        }
        
        /* Copy Button */
        #copyAllButton {
            display: block;
            margin: 20px auto;
            padding: 10px 15px;
            font-size: 1rem;
            background: #28a745;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        #copyAllButton:hover {
            background: #218838;
        }

        /* Attribution */
        .credits {
            text-align: center;
            padding: 10px;
            font-size: 0.9rem;
        }
        .credits a {
            color: #ff4500;
            text-decoration: none;
        }
        .credits a:hover {
            text-decoration: underline;
        }
    
