
        /* Reset & Base */
        * {
            box-sizing: border-box;
        }
        html, body {
            margin: 0;
            padding: 0;
            font-family: 'Open Sans', sans-serif;
            background: #f4f6f9;
            color: #222;
            overflow-x: hidden;
            padding-top: 60px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            background-color: rgba(206, 40, 40, 0.95);
            padding: 0.7rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .logo {
            display: flex;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo img {
            height: 50px;
            margin-right: 10px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 1rem;
            margin: 0;
            transition: transform 0.3s ease-in-out;
        }

        .nav-links li a {
            font-family: 'Open Sans', sans-serif;
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background-color 0.2s;
            display: block;
        }
        .nav-links li a:hover,
        .nav-links li a.active {
            background-color: rgba(183, 28, 28, 0.8);
            color: white;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .hamburger span {
            height: 3px;
            width: 25px;
            background: #fff;
            margin-bottom: 4px;
            border-radius: 2px;
            transition: 0.3s;
        }

        /* Utility Classes */
        .container {
            max-width: 1400px; 
            margin: 0 auto;
            padding: 0 40px;
        }
        .section-padding {
            padding: 100px 0;
        }
        h1 {
            font-size: 3.5rem;
            letter-spacing: -2px;
        }
        h2 {
            font-size: 2.5rem;
            letter-spacing: -1px;
            text-align: center;
            margin-bottom: 60px;
        }
        p {
            font-size: 1.1rem;
            color: #444;
            max-width: 600px;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Video Section */
        #video-section {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: #fff;
            position: relative;
            overflow-x: hidden;
            padding: 100px 0;
        }
        #video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            z-index: -1;
        }
        #video-section h2 {
            color: white;
            margin-bottom: 20px;
        }
        #video-section p {
            color: #ddd;
            margin: 0 auto 40px;
            text-align: center;
        }
        
        /* Enhanced Video Player Styles */
        .video-wrapper {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            background: #000;
            position: relative;
            aspect-ratio: 16/9;
        }
        
        .video-player {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .video-element {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            background: #000;
        }
        
        .video-element[poster] {
            object-fit: cover;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            transform: scale(1.1);
            background: white;
        }
        
        .play-button i {
            font-size: 2rem;
            color: #c62828;
            margin-left: 5px;
        }
        
        /* Video Controls */
        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.7), transparent);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }
        
        .video-wrapper:hover .video-controls,
        .video-controls.show {
            opacity: 1;
        }
        
        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255,255,255,0.3);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .progress-filled {
            height: 100%;
            background: linear-gradient(90deg, #ff416c, #ff4b2b);
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s linear;
        }
        
        .progress-buffered {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: rgba(255,255,255,0.5);
            border-radius: 3px;
            width: 0%;
        }
        
        .progress-hover {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: rgba(255,255,255,0.2);
            border-radius: 3px;
            width: 0%;
            pointer-events: none;
        }
        
        .progress-tooltip {
            position: absolute;
            bottom: 15px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.2s, transform 0.2s;
            pointer-events: none;
            white-space: nowrap;
        }
        
        .progress-tooltip.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .controls-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }
        
        .controls-left, .controls-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .control-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.2s ease;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .control-btn:hover {
            color: #ffdd40;
            transform: scale(1.1);
        }
        
        .control-btn:active {
            transform: scale(0.95);
        }
        
        .control-btn .tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            opacity: 0;
            pointer-events: none;
            white-space: nowrap;
            margin-bottom: 5px;
            transition: opacity 0.2s;
        }
        
        .control-btn:hover .tooltip {
            opacity: 1;
        }
        
        .time-display {
            color: white;
            font-size: 0.9rem;
            font-family: 'Open Sans', sans-serif;
            min-width: 100px;
            text-align: center;
        }
        
        .volume-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .volume-slider {
            width: 80px;
            height: 4px;
            background: rgba(255,255,255,0.3);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .volume-filled {
            height: 100%;
            background: white;
            border-radius: 2px;
            width: 100%;
        }
        
        .speed-selector {
            background: rgba(255,255,255,0.9);
            border: 1px solid rgba(255,255,255,0.9);
            color: #333;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .speed-selector:hover {
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .fullscreen-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.2s ease;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .fullscreen-btn:hover {
            color: #ffdd40;
            transform: scale(1.1);
        }
        
        .fullscreen-btn:active {
            transform: scale(0.95);
        }
        
        /* Loading Spinner */
        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: #ff4b2b;
            animation: spin 1s linear infinite;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .loading-spinner.show {
            opacity: 1;
        }
        
        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        /* Video Quality Selector */
        .quality-selector {
            position: absolute;
            bottom: 70px;
            right: 20px;
            background: rgba(0,0,0,0.9);
            border-radius: 5px;
            padding: 10px;
            display: none;
            flex-direction: column;
            gap: 5px;
            z-index: 3;
        }
        
        .quality-selector.show {
            display: flex;
        }
        
        .quality-btn {
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.9rem;
            text-align: left;
        }
        
        .quality-btn:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .quality-btn.active {
            background: #ff4b2b;
            color: white;
        }
        
        /* Captions Display */
        .captions-display {
            position: absolute;
            bottom: 100px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            font-size: 1.2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            padding: 10px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }
        
        .captions-display.show {
            opacity: 1;
        }
        
        /* Video Stats Overlay */
        .stats-overlay {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }
        
        .stats-overlay.show {
            opacity: 1;
        }
        
        /* Video Playback Rate Display */
        .playback-rate-display {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }
        
        .playback-rate-display.show {
            opacity: 1;
        }
        
        /* Steps Section */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        .step-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .step-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }
        .step-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffdd40;
        }
        .step-description {
            font-size: 0.95rem;
            color: #ddd;
            line-height: 1.5;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            text-decoration: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-primary {
            background-color: #c62828;
            color: white;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-secondary {
            background-color: transparent;
            color: #c62828;
            border: 2px solid #c62828;
        }
        .btn-secondary:hover {
            background-color: #c62828;
            color: white;
            transform: translateY(-3px);
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(255, 75, 43, 0.4);
            border: none;
            cursor: pointer;
            min-width: 200px;
            justify-content: center;
        }
        .action-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(255, 75, 43, 0.6);
        }
        .action-btn.secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .action-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Custom gradient */
        .tblood-gradient {
            background: linear-gradient(to right, #780000, #c1121f);
        }

        .social-icon {
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-3px) scale(1.1);
        }

        /* Footer styles */
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 20px;
        }

        .footer-column {
            margin-bottom: 20px;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
            width: 100%;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }
            
            h2 {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .captions-display {
                font-size: 1rem;
                bottom: 80px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: absolute;
                top: 60px;
                right: 0;
                height: calc(100vh - 60px);
                background: rgba(206, 40, 40, 0.95);
                flex-direction: column;
                align-items: flex-start;
                width: 200px;
                padding: 1rem;
                transform: translateX(100%);
            }
            .nav-links.open {
                transform: translateX(0);
            }
            .nav-links li {
                width: 100%;
                margin-bottom: 1rem;
            }
            .nav-links li a {
                width: 100%;
                padding: 0.8rem 1rem;
            }
            .hamburger span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger span:nth-child(2) {
                opacity: 0;
            }
            .hamburger span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
            
            .logo {
                font-size: 1.3rem;
            }
            
            .logo img {
                height: 40px;
            }
            
            h2 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            #video-section p {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .video-wrapper {
                margin: 0 10px;
                border-radius: 15px;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
            }
            
            .play-button i {
                font-size: 1.5rem;
            }
            
            .video-controls {
                padding: 15px;
            }
            
            .control-btn {
                font-size: 1rem;
            }
            
            .time-display {
                font-size: 0.8rem;
                min-width: 80px;
            }
            
            .volume-slider {
                width: 60px;
            }
            
            .speed-selector {
                font-size: 0.8rem;
                padding: 3px 8px;
            }
            
            .fullscreen-btn {
                padding: 3px;
                font-size: 0.9rem;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 40px;
            }
            
            .step-card {
                padding: 20px;
            }
            
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .step-title {
                font-size: 1.1rem;
            }
            
            .step-description {
                font-size: 0.9rem;
            }
            
            .action-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-top: 40px;
            }
            
            .action-btn {
                width: 100%;
                max-width: 300px;
                font-size: 1rem;
                padding: 12px 20px;
            }
            
            .quality-selector {
                bottom: 60px;
                right: 10px;
            }
            
            .captions-display {
                font-size: 0.9rem;
                bottom: 70px;
                padding: 5px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }

            .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .footer-links a {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            .video-wrapper {
                margin: 0;
                border-radius: 10px;
            }
            
            .play-button {
                width: 50px;
                height: 50px;
            }
            
            .play-button i {
                font-size: 1.2rem;
            }
            
            .video-controls {
                padding: 10px;
            }
            
            .controls-left, .controls-right {
                gap: 8px;
            }
            
            .volume-container {
                display: none;
            }
            
            .speed-selector {
                font-size: 0.7rem;
                padding: 3px 6px;
            }
            
            .fullscreen-btn {
                padding: 3px;
                font-size: 0.9rem;
            }
            
            .step-card {
                padding: 15px;
            }
            
            .action-btn {
                font-size: 0.9rem;
                padding: 10px 15px;
            }
            
            .quality-selector {
                bottom: 50px;
                right: 5px;
                padding: 5px;
            }
            
            .captions-display {
                font-size: 0.8rem;
                bottom: 60px;
            }
        }
    