* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            min-height: 100vh;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.2) 0%, transparent 50%);
            pointer-events: none;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .login-section-top {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            animation: fadeInDown 1s ease 0.2s both;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .login-section-top .btn {
            padding: 8px 18px;
            font-size: 13px;
            display: inline-block;
        }

        /* User Profile Button */
        .user-profile-btn {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 8px 18px;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
        }

        .user-profile-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .user-profile-btn .user-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* User dropdown menu */
        .user-dropdown {
            position: relative;
        }

        .user-dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 45px;
            background: rgba(30, 30, 50, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            min-width: 200px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            z-index: 1001;
            padding: 10px 0;
        }

        .user-dropdown:hover .user-dropdown-content {
            display: block;
        }

        .user-dropdown-content a,
        .user-dropdown-content button {
            display: block;
            width: 100%;
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.2s;
        }

        .user-dropdown-content a:hover,
        .user-dropdown-content button:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .user-dropdown-content .pro-badge-dropdown {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #000;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            margin-left: 8px;
        }

        /* ========================================
           THEME TOGGLE
           ======================================== */
        
        .theme-toggle {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            font-size: 1.2rem;
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(180deg);
        }

        /* Light Mode Styles */
        body.light-mode {
            background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
        }

        body.light-mode::before {
            display: none;
        }

        body.light-mode .container {
            background: rgba(255, 255, 255, 0.95);
        }

        body.light-mode .hero-content h1,
        body.light-mode .brand-name,
        body.light-mode .section-title,
        body.light-mode h2,
        body.light-mode h3,
        body.light-mode h4 {
            color: #1a1a2e;
        }

        body.light-mode .hero-content p,
        body.light-mode .section-subtitle,
        body.light-mode p {
            color: #4a4a68;
        }

        body.light-mode .feature-card,
        body.light-mode .pricing-card,
        body.light-mode .testimonial-card,
        body.light-mode .faq-item,
        body.light-mode .stat-item,
        body.light-mode .gallery-item {
            background: rgba(255, 255, 255, 0.8);
            border-color: rgba(102, 126, 234, 0.2);
        }

        body.light-mode .feature-card:hover,
        body.light-mode .pricing-card:hover {
            border-color: rgba(102, 126, 234, 0.5);
        }

        body.light-mode .feature-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        body.light-mode .stat-number,
        body.light-mode .stat-label {
            color: #1a1a2e;
        }

        body.light-mode .testimonial-author,
        body.light-mode .faq-question {
            color: #1a1a2e;
        }

        body.light-mode .footer-links a,
        body.light-mode .footer-description {
            color: #4a4a68;
        }

        body.light-mode .modal-content {
            background: rgba(255, 255, 255, 0.98);
        }

        body.light-mode .modal-content h2,
        body.light-mode .modal-content h3,
        body.light-mode .modal-content h4,
        body.light-mode .modal-content p,
        body.light-mode .modal-content label {
            color: #1a1a2e;
        }

        body.light-mode input,
        body.light-mode textarea,
        body.light-mode select {
            background: rgba(0, 0, 0, 0.05);
            border-color: rgba(0, 0, 0, 0.1);
            color: #1a1a2e;
        }

        body.light-mode .theme-toggle {
            background: rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 0, 0, 0.2);
            color: #1a1a2e;
        }

        body.light-mode .theme-toggle:hover {
            background: rgba(0, 0, 0, 0.15);
        }

        .header {
            text-align: center;
            color: white;
            margin-bottom: 50px;
            animation: fadeInDown 1s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo-container {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .logo-svg {
            width: 120px;
            height: 120px;
            filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.6));
        }

        @keyframes flipTransform {
            0% {
                transform: rotate(0deg);
            }
            20% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(90deg);
            }
            80% {
                transform: rotate(90deg);
            }
            100% {
                transform: rotate(90deg);
            }
        }

        .video-frame {
            animation: flipTransform 4s ease-in-out infinite;
            transform-origin: center;
        }

        @keyframes playPulse {
            0%, 100% { opacity: 0.9; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        @keyframes counterRotate {
            0% {
                transform: rotate(0deg);
            }
            20% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(-90deg);
            }
            80% {
                transform: rotate(-90deg);
            }
            100% {
                transform: rotate(-90deg);
            }
        }

        .play-icon {
            animation: playPulse 2s ease-in-out infinite, counterRotate 4s ease-in-out infinite;
            transform-origin: center;
        }

        .logo {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            text-shadow: 0 0 30px rgba(118, 75, 162, 0.5);
        }

        .tagline {
            font-size: 1.3rem;
            opacity: 0.95;
            font-weight: 300;
            margin-bottom: 10px;
            color: #e0e0e0;
        }

        .subtitle {
            font-size: 1rem;
            opacity: 0.7;
            color: #b0b0b0;
        }

        .demo-video-section {
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            aspect-ratio: 21 / 9;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 100px rgba(118, 75, 162, 0.2);
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .video-container video,
        .video-container iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
            backdrop-filter: blur(10px);
            color: white;
        }

        .video-placeholder-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.6;
        }

        .video-placeholder-text {
            font-size: 1.2rem;
            opacity: 0.8;
            text-align: center;
            padding: 0 20px;
        }

        .features-section {
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.4s both;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-content {
            background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #2d1b4e 100%);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 50px 40px;
            margin-top: 40px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 100px rgba(118, 75, 162, 0.2);
            border: 1px solid rgba(118, 75, 162, 0.3);
        }

        .features-content h2 {
            color: #ffffff;
            font-size: 2rem;
            margin-bottom: 12px;
            font-weight: 700;
            text-align: center;
        }

        .features-content > p {
            color: #d0d0e0;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
            text-align: center;
        }

        .features-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .feature-step {
            position: relative;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(118, 75, 162, 0.2);
            transition: all 0.3s ease;
        }

        .feature-step:hover {
            background: rgba(118, 75, 162, 0.1);
            border-color: rgba(118, 75, 162, 0.4);
            transform: translateY(-5px);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-step h3 {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .feature-step p {
            color: #b8b8d0;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .auth-section {
            background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #2d1b4e 100%);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 100px rgba(118, 75, 162, 0.2);
            animation: fadeInUp 1s ease 0.3s both;
            border: 1px solid rgba(118, 75, 162, 0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .auth-section h2 {
            color: #ffffff;
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .auth-section p {
            color: #d0d0e0;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 35px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 35px 0;
            text-align: left;
        }

        .feature-item {
            display: flex;
            align-items: start;
            gap: 12px;
        }

        .feature-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .feature-text p {
            color: #d0d0e0;
            font-size: 0.85rem;
            margin: 0;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            font-size: 17px;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-twitch {
            background: linear-gradient(135deg, #9146FF 0%, #772ce8 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(145, 70, 255, 0.3);
        }

        .btn-twitch:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(145, 70, 255, 0.4);
        }

        .btn-twitch:active {
            transform: translateY(-1px);
        }

        .btn-logout {
            background: #e74c3c;
            color: white;
        }

        .user-info {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .user-info .user-details {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pro-badge-home {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            }
            to {
                box-shadow: 0 4px 25px rgba(102, 126, 234, 0.8);
            }
        }

        .vods-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .vods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .vod-card {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .vod-card:hover {
            border-color: #9146FF;
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(145, 70, 255, 0.3);
        }

        .vod-thumbnail {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: #f0f0f0;
        }

        .vod-info {
            padding: 15px;
        }

        .vod-title {
            font-weight: 600;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .vod-meta {
            font-size: 0.85rem;
            color: #777;
        }

        .processing-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-top: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .option-group {
            margin-bottom: 20px;
        }

        .option-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .option-group select {
            width: 100%;
            padding: 10px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
            margin: 20px 0;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea, #764ba2);
            width: 0%;
            transition: width 0.3s;
        }

        .status-message {
            padding: 15px;
            border-radius: 6px;
            margin-top: 15px;
        }

        .status-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .status-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .status-info {
            background: #d1ecf1;
            color: #0c5460;
            border: 1px solid #bee5eb;
        }

        .hidden {
            display: none;
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: #666;
        }

        .spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #9146FF;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Login Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 20px;
            padding: 40px;
            max-width: 450px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(118, 75, 162, 0.3);
            position: relative;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 28px;
            color: #888;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: #fff;
        }

        .modal-content h2 {
            color: #fff;
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.8rem;
        }

        .auth-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            border-bottom: 2px solid rgba(118, 75, 162, 0.3);
        }

        .auth-tab {
            flex: 1;
            padding: 12px;
            background: transparent;
            border: none;
            color: #888;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
        }

        .auth-tab.active {
            color: #fff;
            border-bottom-color: #764ba2;
        }

        .auth-panel {
            display: none;
        }

        .auth-panel.active {
            display: block;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #ccc;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #764ba2;
            background: rgba(255, 255, 255, 0.15);
        }

        .oauth-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .btn-oauth {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-google {
            background: #fff;
            color: #333;
        }

        .btn-google:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        .btn-twitch-oauth {
            background: linear-gradient(135deg, #9146FF 0%, #772ce8 100%);
            color: #fff;
        }

        .btn-twitch-oauth:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(145, 70, 255, 0.4);
        }

        .error-message {
            background: rgba(231, 76, 60, 0.2);
            border: 1px solid #e74c3c;
            color: #ff6b6b;
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .auth-switch {
            text-align: center;
            margin-top: 15px;
            color: #888;
            font-size: 0.9rem;
        }

        .auth-switch a {
            color: #764ba2;
            text-decoration: none;
            cursor: pointer;
        }

        .auth-switch a:hover {
            text-decoration: underline;
        }

        /* ========================================
           TOAST NOTIFICATIONS
           ======================================== */
        
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }

        .toast {
            background: rgba(30, 30, 40, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 16px 20px;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 300px;
            max-width: 400px;
            pointer-events: all;
            animation: toastSlideIn 0.3s ease;
            border-left: 4px solid #667eea;
        }

        .toast.success {
            border-left-color: #10b981;
        }

        .toast.error {
            border-left-color: #ef4444;
        }

        .toast.warning {
            border-left-color: #f59e0b;
        }

        .toast.info {
            border-left-color: #3b82f6;
        }

        .toast-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .toast-message {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .toast-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            opacity: 0.6;
            padding: 0;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .toast-close:hover {
            opacity: 1;
        }

        @keyframes toastSlideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .toast.hiding {
            animation: toastSlideOut 0.3s ease forwards;
        }

        @keyframes toastSlideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(400px);
                opacity: 0;
            }
        }

        /* Stats Section */
        .stats-section {
            background: rgba(118, 75, 162, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            text-align: center;
            border: 1px solid rgba(118, 75, 162, 0.2);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            color: #b0b0b0;
            font-size: 1rem;
        }

        /* Before/After Gallery */
        .gallery-section {
            margin-bottom: 40px;
        }

        .gallery-section h2 {
            color: #fff;
            text-align: center;
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .gallery-section > p {
            color: #b0b0b0;
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            border-color: rgba(118, 75, 162, 0.5);
        }

        .gallery-item h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .gallery-placeholder {
            width: 100%;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .gallery-placeholder.vertical {
            aspect-ratio: 9/16;
            max-width: 200px;
            margin: 0 auto 10px;
        }

        .gallery-caption {
            color: #888;
            font-size: 0.9rem;
            text-align: center;
        }

        /* Testimonials */
        .testimonials-section {
            background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #2d1b4e 100%);
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(118, 75, 162, 0.3);
        }

        .testimonials-section h2 {
            color: #fff;
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .testimonial-text {
            color: #d0d0e0;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .author-role {
            color: #888;
            font-size: 0.85rem;
        }

        /* FAQ Section */
        .faq-section {
            margin-bottom: 40px;
        }

        .faq-section h2 {
            color: #fff;
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(118, 75, 162, 0.1);
        }

        .faq-question h3 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
        }

        .faq-icon {
            color: #764ba2;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 20px 20px;
            color: #b0b0b0;
            line-height: 1.6;
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #2d1b4e 100%);
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(118, 75, 162, 0.3);
        }

        .pricing-section h2 {
            color: #fff;
            text-align: center;
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .pricing-section > p {
            color: #b0b0b0;
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 35px 25px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: rgba(118, 75, 162, 0.5);
        }

        .pricing-card.featured {
            border-color: #764ba2;
            background: rgba(118, 75, 162, 0.1);
        }

        .pricing-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .pricing-card h3 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 5px;
        }

        .pricing-period {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .pricing-features li {
            color: #b0b0b0;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        /* ========================================
           PRICING COMPARISON TABLE
           ======================================== */
        
        .comparison-table-wrapper {
            margin-top: 60px;
            overflow-x: auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
        }

        .comparison-table thead  th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-table tbody tr:last-child {
            border-bottom: none;
        }

        .comparison-table th {
            text-align: left;
            padding: 16px 20px;
            color: #fff;
            font-weight: 600;
        }

        .comparison-table td {
            text-align: center;
            padding: 16px 20px;
            color: #b0b0b0;
        }

        .comparison-table .check {
            color: #10b981;
            font-size: 1.2rem;
        }

        .comparison-table .cross {
            color: #ef4444;
            font-size: 1.2rem;
        }

        .comparison-table .feature-name {
            min-width: 200px;
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(118, 75, 162, 0.2);
            padding: 50px 40px 30px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #764ba2;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.9rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .footer-description {
            color: #b0b0b0;
            line-height: 1.6;
        }

        /* ========================================
           MOBILE RESPONSIVENESS
           ======================================== */
        
        /* Tablet Landscape */
        @media (max-width: 1024px) {
            .container {
                padding: 30px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .demo-section {
                flex-direction: column;
            }

            .demo-video,
            .features-list {
                width: 100%;
            }

            .pricing-cards {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        /* Tablet Portrait */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .container {
                padding: 20px;
                border-radius: 20px;
            }

            .login-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .logo-container {
                width: 80px;
                height: 80px;
            }

            .brand-name {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }

            .btn-twitch,
            .btn-secondary {
                width: 100%;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .pricing-card {
                max-width: 400px;
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .modal-content {
                width: 95%;
                max-width: 500px;
                padding: 30px;
                margin: 40px auto;
            }

            .auth-tabs {
                flex-direction: column;
            }

            .auth-tab {
                width: 100%;
                text-align: center;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.75rem;
                line-height: 1.2;
            }

            .hero-content p {
                font-size: 0.95rem;
            }

            .logo-container {
                width: 70px;
                height: 70px;
            }

            .brand-name {
                font-size: 1.75rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .modal-content {
                padding: 25px 20px;
                margin: 20px auto;
            }

            .modal-content h2 {
                font-size: 1.5rem;
            }

            .faq-question {
                font-size: 1rem;
            }

            .pricing-card h3 {
                font-size: 1.5rem;
            }

            .price {
                font-size: 2rem;
            }
        }

        /* Small Mobile */
        @media (max-width: 360px) {
            .hero-content h1 {
                font-size: 1.5rem;
            }

            .brand-name {
                font-size: 1.5rem;
            }

            .logo-container {
                width: 60px;
                height: 60px;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .btn-twitch,
            .btn-secondary {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }
