:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-gray: #f8f9fa;
    --dark-gray: #1a202c;
    --border-color: #e2e8f0;
    --white-color: #fff;
    --text-muted: #6c757d;
    --text-light: #8892b0;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warning: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-cyber: linear-gradient(135deg, #00d4ff 0%, #090979 100%);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 20px rgba(13, 110, 253, 0.3);
    
    /* Animation Variables */
    --animation-speed: 0.3s;
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    box-sizing: border-box;
}

/* =============================================
   PREVENT HORIZONTAL OVERFLOW - CRITICAL FIX
   ============================================= */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    color: white !important;
    margin: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* CRITICAL: Force background gradient on mobile */
@media (max-width: 768px) {
    body {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        min-height: 100vh !important;
    }
    
    /* Ensure all text remains white on mobile */
    body, body * {
        color: white !important;
    }
    
    /* Override any white backgrounds that might appear */
    .hero-section,
    .content-card,
    .platform-card,
    .feature-card,
    .trust-item,
    .faq-item,
    .stats-counter {
        background: rgba(255,255,255,0.1) !important;
        color: white !important;
    }
    
    /* Ensure text in cards remains white */
    .hero-content h1,
    .hero-content .subtitle,
    .content-card h2,
    .content-card p,
    .platform-name,
    .platform-desc,
    .feature-card h3,
    .feature-card p,
    .stat-number,
    .stat-label,
    .faq-question,
    .faq-answer p {
        color: white !important;
    }
}

/* Animated Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

main { 
    flex: 1; 
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* =============================================
   HEADER PREMIUM DESIGN - MODERN & LUXURIOUS
   ============================================= */
.main-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-heavy);
    transition: all var(--animation-speed) ease;
    width: 100%;
    overflow-x: hidden;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    backdrop-filter: blur(20px);
    z-index: -1;
}

.navbar { 
    padding: 0 1rem; 
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1400px; 
    margin: 0 auto; 
    height: 80px;
    position: relative;
    width: 100%;
}

/* Brand Logo - Premium Style */
.nav-brand { 
    font-size: 1.75rem; 
    font-weight: 800; 
    text-decoration: none; 
    color: white !important;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255,255,255,0.3);
    transition: all var(--animation-speed) ease;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.nav-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #f0f8ff);
    border-radius: 2px;
    transition: width var(--animation-speed) ease;
}

.nav-brand:hover::after {
    width: 100%;
}

.nav-brand:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 15px rgba(255,255,255,0.4);
}

/* Navigation Right Section */
.nav-right { 
    display: flex; 
    align-items: center; 
    gap: 1.5rem; 
    flex-shrink: 0;
}

/* Navigation Menu - Premium Style */
.nav-menu { 
    list-style: none; 
    display: flex; 
    gap: 1rem; 
    margin: 0; 
    padding: 0; 
}

.nav-menu li {
    position: relative;
}

.nav-menu a { 
    text-decoration: none; 
    color: rgba(255,255,255,0.9) !important; 
    font-weight: 500; 
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover { 
    color: white !important;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Language Switcher - Premium Design */
.lang-switcher { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all var(--animation-speed) ease;
    flex-shrink: 0;
}

.lang-switcher:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.lang-switcher label { 
    font-size: 0.85rem; 
    color: rgba(255,255,255,0.9) !important; 
    font-weight: 500; 
    margin: 0;
    white-space: nowrap;
}

.lang-switcher select {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 0.4rem 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    backdrop-filter: blur(5px);
    font-weight: 500;
    min-width: 120px;
}

.lang-switcher select:hover {
    background: rgba(255,255,255,1);
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lang-switcher select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
    background: rgba(255,255,255,1);
}

.lang-switcher select option {
    background: white;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem;
}

.lang-switcher select option:hover {
    background: var(--light-gray);
}

.lang-switcher select option:checked {
    background: var(--primary-color);
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white !important;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all var(--animation-speed) ease;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--animation-speed) ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 90vw;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    transition: right var(--animation-speed) ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white !important;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all var(--animation-speed) ease;
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    display: block;
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all var(--animation-speed) ease;
}

.mobile-nav-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: white !important;
    transform: translateX(10px);
}

.mobile-lang-switcher {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.mobile-lang-switcher label {
    display: block;
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.mobile-lang-switcher select {
    width: 100%;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 500;
}

.mobile-lang-switcher select option {
    background: white;
    color: var(--dark-gray);
    font-weight: 500;
}

/* =============================================
   HERO SECTION - PREMIUM UNIX STYLE
   ============================================= */
.hero-section { 
    text-align: center; 
    padding: 4rem 1rem 3rem; 
    position: relative;
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    margin: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: var(--shadow-heavy);
    width: calc(100% - 2rem);
    max-width: calc(100vw - 2rem);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    pointer-events: none;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content { 
    max-width: 800px; 
    margin: 0 auto; 
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(255,255,255,0.3);
    animation: glow 3s ease-in-out infinite alternate;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: white !important;
}

/* CRITICAL: Fallback for mobile gradient text */
@media (max-width: 768px) {
    .hero-content h1 {
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: white !important;
        background-clip: unset !important;
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    }
    
    .gradient-text {
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: white !important;
        background-clip: unset !important;
        color: white !important;
    }
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(255,255,255,0.5)); }
}

.hero-content .subtitle { 
    font-size: 1.1rem; 
    color: rgba(255,255,255,0.9) !important; 
    margin-bottom: 2rem; 
    font-weight: 400;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.form-container { 
    max-width: 700px; 
    margin: 0 auto 2rem; 
    position: relative;
    width: 100%;
}

/* =============================================
   TERMINAL HEADER STYLE
   ============================================= */
.terminal-header {
    background: rgba(0,0,0,0.8);
    border-radius: 8px 8px 0 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    overflow: hidden;
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca3f; }

.terminal-title {
    color: #00ff00 !important;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =============================================
   TYPING ANIMATION
   ============================================= */
.typing-text {
    display: inline-block;
    position: relative;
}

.typing-text::after {
    content: '|';
    display: inline-block;
    animation: blink 1s infinite;
    color: #00ff00;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #090979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   STATS COUNTER
   ============================================= */
.stats-counter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    color: white !important;
    min-width: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    color: white !important;
}

/* CRITICAL: Mobile fallback for stat numbers */
@media (max-width: 768px) {
    .stat-number {
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: white !important;
        background-clip: unset !important;
        color: white !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
    }
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

/* =============================================
   PREMIUM INPUT FORM - CYBER STYLE
   ============================================= */
.input-group { 
    display: flex; 
    align-items: center; 
    background: rgba(255,255,255,0.95); 
    border-radius: 50px; 
    box-shadow: var(--shadow-heavy);
    border: 2px solid rgba(255,255,255,0.2); 
    padding: 0.75rem 1rem; 
    transition: all var(--animation-speed) ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.input-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transition: left 0.6s ease;
}

.input-group:focus-within::before {
    left: 100%;
}

.input-group:focus-within { 
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.input-icon-wrapper {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    flex-shrink: 0;
}

.input-icon { 
    margin: 0 0.5rem 0 0; 
    color: var(--primary-color); 
    transition: all var(--animation-speed) ease;
    flex-shrink: 0;
}

.input-group:focus-within .input-icon {
    transform: scale(1.1);
    color: var(--primary-dark);
}

#video-url { 
    flex-grow: 1; 
    padding: 1rem 0.5rem; 
    border: none; 
    background: transparent; 
    font-size: 1rem; 
    outline: none; 
    color: var(--dark-gray);
    font-weight: 500;
    width: 100%;
    min-width: 0;
}

#video-url::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

#process-btn { 
    padding: 1rem 1.5rem; 
    border: none; 
    background: var(--gradient-primary); 
    color: white !important; 
    font-size: 1rem; 
    font-weight: 600; 
    cursor: pointer; 
    border-radius: 25px; 
    transition: all var(--animation-speed) var(--animation-bounce);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
}

#process-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

#process-btn:hover::before {
    left: 100%;
}

#process-btn:hover { 
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

#process-btn:active {
    transform: translateY(-1px) scale(1.02);
}

#process-btn:disabled { 
    background: var(--text-muted); 
    cursor: not-allowed; 
    transform: none;
    box-shadow: var(--shadow-light);
}

.btn-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

/* =============================================
   QUICK ACTIONS
   ============================================= */
.quick-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.quick-btn {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* =============================================
   FEATURES GRID
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
}

.feature-card {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    color: white !important;
    min-width: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white !important;
    word-wrap: break-word;
}

.feature-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9) !important;
    margin: 0;
    word-wrap: break-word;
}

/* =============================================
   SUPPORTED PLATFORMS - PREMIUM CARDS
   ============================================= */
.supported-platforms { 
    margin-top: 2rem;
    width: 100%;
}

.platform-title {
    text-align: center;
    margin-bottom: 2rem;
}

.platform-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.platform-title p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1rem;
    word-wrap: break-word;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    color: white !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.platform-card:hover::before {
    left: 100%;
}

.platform-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white !important;
}

.platform-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.platform-logo svg {
    width: 24px;
    height: 24px;
    fill: white;
    flex-shrink: 0;
}

.platform-info {
    flex-grow: 1;
    min-width: 0;
}

.platform-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
}

.platform-desc {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8) !important;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Platform-specific hover colors */
.platform-card.youtube:hover .platform-logo { background: #FF0000; }
.platform-card.tiktok:hover .platform-logo { background: #000000; }
.platform-card.instagram:hover .platform-logo { background: linear-gradient(45deg, #E4405F, #833AB4); }
.platform-card.facebook:hover .platform-logo { background: #1877F2; }
.platform-card.twitter:hover .platform-logo { background: #000000; }
.platform-card.vimeo:hover .platform-logo { background: #1ab7ea; }
.platform-card.dailymotion:hover .platform-logo { background: #0066CC; }
.platform-card.twitch:hover .platform-logo { background: #9146FF; }
.platform-card.more-sites:hover .platform-logo { background: linear-gradient(135deg, #00d4ff 0%, #090979 100%); }

/* =============================================
   TRUST INDICATORS
   ============================================= */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.75rem 0.5rem;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 0;
}

.trust-item:hover {
    background: rgba(255,255,255,0.15) !important;
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* =============================================
   LOADING ANIMATION - CYBER STYLE
   ============================================= */
#loader { 
    display: none; 
    margin: 2rem auto; 
    width: 60px; 
    height: 60px; 
    position: relative;
}

#loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    border-top: 4px solid #ffffff;
    animation: spin 1s linear infinite;
}

#loader::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: 2px solid rgba(13, 110, 253, 0.3);
    border-radius: 50%;
    border-bottom: 2px solid var(--primary-color);
    animation: spin 0.8s linear infinite reverse;
}

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

/* =============================================
   CONTENT CARDS - PREMIUM GLASS MORPHISM
   ============================================= */
.container { 
    max-width: 1200px; 
    margin: 2rem auto; 
    padding: 0 1rem; 
    width: 100%;
    overflow-x: hidden;
}

.content-card {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-heavy);
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    color: white !important;
    width: 100%;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(255,255,255,0.1);
}

.content-card h2 {
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: white !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
}

/* CRITICAL: Mobile fallback for content card headings */
@media (max-width: 768px) {
    .content-card h2 {
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: white !important;
        background-clip: unset !important;
        color: white !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
    }
}

.content-card p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.1rem;
    line-height: 1.7;
    word-wrap: break-word;
}

.content-card strong {
    color: white !important;
    font-weight: 700;
}

/* =============================================
   HOW TO USE - STEP CARDS
   ============================================= */
.how-to-use ol {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 2rem;
}

.how-to-use li {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all var(--animation-speed) ease;
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.1rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow: hidden;
}

.how-to-use li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--gradient-primary);
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
}

.how-to-use ol {
    counter-reset: step-counter;
}

.how-to-use li:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.15) !important;
    box-shadow: var(--shadow-medium);
}

.how-to-use li strong {
    color: white !important;
    font-weight: 700;
}

/* =============================================
   FAQ SECTION - PREMIUM ACCORDION
   ============================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--animation-speed) ease;
}

.faq-item:hover {
    background: rgba(255,255,255,0.15) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    gap: 1rem;
    background: none;
    border: none;
    text-align: left;
    transition: all var(--animation-speed) ease;
    color: white !important;
    word-wrap: break-word;
    overflow: hidden;
}

.faq-question:hover {
    color: #f0f8ff !important;
}

.faq-question .faq-icon {
    color: var(--primary-color);
    stroke: var(--primary-color);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px rgba(13, 110, 253, 0.5));
}

.faq-question span {
    flex-grow: 1;
    font-weight: 600;
    min-width: 0;
    word-wrap: break-word;
    color: white !important;
}

.faq-question .faq-chevron {
    transition: transform var(--animation-speed) ease;
    flex-shrink: 0;
    stroke: rgba(255,255,255,0.7);
    width: 24px;
    height: 24px;
}

.faq-question:hover .faq-chevron {
    stroke: white;
}

.faq-question.active .faq-chevron {
    transform: rotate(180deg);
    stroke: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--animation-speed) ease;
    padding: 0;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 4rem;
}

.faq-answer p {
    margin: 0;
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.7;
    font-size: 1.05rem;
    word-wrap: break-word;
}

/* =============================================
   FOOTER - PREMIUM DESIGN
   ============================================= */
footer { 
    text-align: center; 
    padding: 3rem 1rem; 
    margin-top: 4rem; 
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1); 
    font-size: 1rem;
    color: rgba(255,255,255,0.8) !important;
    width: 100%;
    overflow-x: hidden;
}

footer .container { 
    padding: 0; 
    box-shadow: none; 
    background: transparent; 
}

/* =============================================
   MODAL STYLES - PREMIUM POPUP
   ============================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn var(--animation-speed) ease;
    padding: 1rem;
    overflow-y: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(255,255,255,0.2);
    animation: slideUp var(--animation-speed) var(--animation-bounce);
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0,0,0,0.1);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--animation-speed) ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(0,0,0,0.2);
    color: var(--dark-gray);
    transform: scale(1.1);
}

.modal-video-info { 
    display: flex; 
    gap: 1.5rem; 
    margin-bottom: 2rem; 
    padding: 1.5rem;
    background: rgba(0,0,0,0.05);
    border-radius: 15px;
    overflow: hidden;
}

.modal-video-info img { 
    width: 120px; 
    height: auto; 
    border-radius: 12px; 
    object-fit: cover;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
}

.modal-video-details {
    flex: 1;
    min-width: 0;
}

.modal-video-details h3 { 
    margin: 0 0 0.75rem 0; 
    font-size: 1.3rem; 
    line-height: 1.3; 
    font-weight: 700;
    color: var(--dark-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-video-details p { 
    margin: 0; 
    color: var(--text-muted); 
    font-size: 1rem;
    font-weight: 500;
    word-wrap: break-word;
}

.modal-tabs { 
    display: flex; 
    border-bottom: 2px solid var(--border-color); 
    margin-bottom: 2rem; 
    gap: 1rem;
    overflow-x: auto;
}

.tab-link {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    transition: all var(--animation-speed) ease;
    border-radius: 8px 8px 0 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-link:hover {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(13, 110, 253, 0.1);
}

.tab-content { 
    display: none; 
}

.tab-content.active { 
    display: block; 
    animation: fadeIn var(--animation-speed) ease;
}

.form-group { 
    margin-bottom: 2rem; 
}

.form-group label { 
    display: block; 
    font-weight: 600; 
    margin-bottom: 0.75rem; 
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.form-group select, .form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--animation-speed) ease;
    background: white;
    box-sizing: border-box;
}

.form-group select:focus, .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.btn.btn-primary { 
    width: 100%; 
    padding: 1.25rem; 
    font-size: 1.2rem; 
    font-weight: 700;
    background: var(--gradient-primary); 
    color: white; 
    border: none; 
    border-radius: 12px; 
    cursor: pointer; 
    transition: all var(--animation-speed) var(--animation-bounce);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn.btn-primary:hover::before {
    left: 100%;
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Toggle Switch - Premium Style */
.toggle-group { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem;
    background: rgba(0,0,0,0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.switch { 
    position: relative; 
    display: inline-block; 
    width: 60px; 
    height: 34px; 
}

.switch input { 
    opacity: 0; 
    width: 0; 
    height: 0; 
}

.slider { 
    position: absolute; 
    cursor: pointer; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: var(--border-color); 
    transition: var(--animation-speed); 
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.slider:before { 
    position: absolute; 
    content: ""; 
    height: 26px; 
    width: 26px; 
    left: 4px; 
    bottom: 4px; 
    background: white; 
    transition: var(--animation-speed); 
    box-shadow: var(--shadow-light);
}

input:checked + .slider { 
    background: var(--primary-color); 
}

input:checked + .slider:before { 
    transform: translateX(26px); 
}

.slider.round { 
    border-radius: 34px; 
}

.slider.round:before { 
    border-radius: 50%; 
}

.cut-file-inputs { 
    display: none; 
    gap: 1rem; 
    margin-top: 1rem; 
    margin-bottom: 2rem; 
}

.processing-message { 
    display: none; 
    text-align: center; 
    margin-top: 1.5rem; 
    color: var(--text-muted); 
    font-weight: 500;
    padding: 1rem;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

/* =============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATION
   ============================================= */

/* Tablet Styles */
@media (max-width: 1024px) {
    .nav-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-section {
        margin: 0.5rem;
        padding: 3rem 1rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .main-header {
        height: auto;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 0.5rem;
    }
    
    .nav-brand {
        font-size: 1.3rem;
    }
    
    .nav-menu,
    .lang-switcher {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section {
        margin: 0.25rem;
        padding: 2rem 1rem;
        width: calc(100% - 0.5rem);
        max-width: calc(100vw - 0.5rem);
    }
    
    .hero-content h1 { 
        font-size: 2rem; 
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .navbar {
        padding: 0 0.5rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .platform-card {
        padding: 1rem;
    }
    
    .platform-logo {
        width: 35px;
        height: 35px;
    }
    
    .platform-logo svg {
        width: 20px;
        height: 20px;
    }
    
    .content-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .content-card h2 {
        font-size: 1.5rem;
    }
    
    .how-to-use li {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
        gap: 0.75rem;
    }
    
    .faq-answer.open {
        padding: 0 1.25rem 1.25rem 3rem;
    }
    
    .stats-counter {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feature-card {
        padding: 1.25rem 0.75rem;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.25rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .quick-btn {
        width: 200px;
    }
    
    .input-group {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 20px;
    }
    
    #process-btn {
        width: 100%;
        padding: 1rem;
        justify-content: center;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
        max-width: calc(100vw - 1rem);
    }
    
    .modal-video-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal-video-info img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .terminal-header {
        padding: 0.5rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }
    
    .terminal-title {
        font-size: 0.8rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .nav-container {
        height: 60px;
        padding: 0 0.5rem;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .navbar {
        padding: 0 0.5rem;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100vw;
        right: -100%;
        padding: 1rem;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .hero-section {
        margin: 0.125rem;
        padding: 1.5rem 0.75rem;
        width: calc(100% - 0.25rem);
        max-width: calc(100vw - 0.25rem);
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content .subtitle {
        font-size: 0.95rem;
    }
    
    .stats-counter {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .feature-card {
        padding: 1rem 0.5rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .platform-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .platform-name {
        font-size: 0.9rem;
    }
    
    .platform-desc {
        font-size: 0.8rem;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
        padding: 0.5rem 0.25rem;
    }
    
    .content-card {
        padding: 1rem;
    }
    
    .content-card h2 {
        font-size: 1.25rem;
    }
    
    .content-card p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer.open {
        padding: 0 1rem 1rem 2.5rem;
    }
    
    .modal-content {
        padding: 1rem;
        margin: 0.25rem;
        max-width: calc(100vw - 0.5rem);
    }
    
    .modal-video-details h3 {
        font-size: 1.1rem;
    }
    
    .tab-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 0.9rem;
    }
    
    .stats-counter {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .platform-grid {
        gap: 0.5rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .content-card h2 {
        font-size: 1.1rem;
    }
    
    .terminal-header {
        padding: 0.25rem 0.5rem;
        gap: 0.25rem;
    }
    
    .terminal-title {
        font-size: 0.7rem;
    }
    
    .terminal-dot {
        width: 8px;
        height: 8px;
    }
}

/* =============================================
   ADDITIONAL PREMIUM EFFECTS
   ============================================= */

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .content-card {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.6s ease forwards;
    }
    
    .content-card:nth-child(2) { animation-delay: 0.1s; }
    .content-card:nth-child(3) { animation-delay: 0.2s; }
    .content-card:nth-child(4) { animation-delay: 0.3s; }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Selection styling */
::selection {
    background: rgba(13, 110, 253, 0.3);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

/* Prevent text selection on interactive elements */
.platform-card,
.feature-card,
.trust-item,
.quick-btn,
button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Ensure all containers respect viewport width */
* {
    max-width: 100%;
}

/* Additional overflow prevention */
.hero-section,
.container,
.content-card,
.platform-grid,
.features-grid,
.stats-counter,
.trust-indicators {
    overflow-x: hidden;
}