/* ScriptHub Pro Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #0f0f12;
    --bg-secondary: #16161a;
    --bg-tertiary: #1c1c21;
    --bg-hover: #232329;
    
    --accent-primary: #6366f1;
    --accent-secondary: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.3);
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --border: #27272a;
    --border-light: #3f3f46;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #12121a 50%, var(--bg-primary) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Floating Orbs Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle 100px at 15% 25%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle 150px at 85% 15%, rgba(129, 140, 248, 0.12) 0%, transparent 50%),
        radial-gradient(circle 80px at 25% 75%, rgba(99, 102, 241, 0.18) 0%, transparent 50%),
        radial-gradient(circle 120px at 75% 85%, rgba(129, 140, 248, 0.1) 0%, transparent 50%);
    animation: orbsFloat 20s ease-in-out infinite;
    z-index: -2;
    pointer-events: none;
}

@keyframes orbsFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.8; }
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-orbs::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: orb1 25s ease-in-out infinite;
}

.floating-orbs::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation: orb2 20s ease-in-out infinite reverse;
}

@keyframes orb1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

@keyframes orb2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 40px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Status Bar */
.status-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: 0.85rem;
    z-index: 1001;
    height: 45px;
    box-sizing: border-box;
}

.status-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.status-item:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: var(--success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-dot.working {
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    height: 70px;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.logo-text h2 {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(99, 102, 241, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a.nav-download {
    color: var(--accent-secondary);
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
}

.nav-btn {
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.download-btn {
    background: linear-gradient(135deg, var(--accent-primary), #7c3aed);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-announcement {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
}

.announcement-badge {
    background: var(--accent-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.announcement-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--accent-secondary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    line-height: 1.1;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-description strong {
    color: var(--text-primary);
}

.hero-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-secondary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.highlight-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-primary), #7c3aed);
    color: white;
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.cta-icon {
    font-size: 1.3rem;
}

.cta-title {
    display: block;
    font-size: 1rem;
}

.cta-subtitle {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-icon {
    color: var(--success);
    font-weight: bold;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-secondary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* App Preview */
.hero-right {
    display: flex;
    justify-content: center;
}

.app-preview {
    width: 100%;
    max-width: 450px;
}

.preview-window {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.window-header {
    background: var(--bg-tertiary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ef4444; }
.control.minimize { background: #f59e0b; }
.control.maximize { background: #10b981; }

.window-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
}

.preview-content {
    display: flex;
    min-height: 280px;
}

.preview-sidebar {
    width: 140px;
    background: var(--bg-tertiary);
    border-right: 1px solid var(--border);
    padding: 12px 8px;
}

.sidebar-item {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-item:hover {
    background: var(--bg-hover);
}

.sidebar-item.active {
    background: linear-gradient(135deg, var(--accent-primary), #7c3aed);
    color: white;
}

.preview-main {
    flex: 1;
    padding: 12px;
}

.preview-search {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.preview-scripts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-script {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    transition: all 0.2s ease;
}

.preview-script:hover {
    border-color: var(--accent-primary);
}

.script-icon {
    font-size: 1.2rem;
}

.script-info {
    flex: 1;
}

.script-info .script-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

.script-info .script-game {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.execute-btn {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-primary), #7c3aed);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.preview-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}


/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(99, 102, 241, 0.2);
    color: var(--accent-secondary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-highlights span {
    font-size: 0.85rem;
    color: var(--success);
}

/* Scripts Preview Section */
.scripts-section {
    padding: 80px 0;
}

.scripts-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.script-preview-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
}

.script-preview-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.script-preview-card .script-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.script-preview-card .script-game {
    font-size: 1rem;
    font-weight: 600;
}

.script-preview-card .script-count {
    font-size: 0.85rem;
    color: var(--accent-secondary);
}

.script-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.script-list span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

.script-list span:last-child {
    color: var(--accent-secondary);
    font-weight: 500;
}

/* Download Prompt */
.download-prompt {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.prompt-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.prompt-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.prompt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-primary), #7c3aed);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.prompt-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.download-card {
    background: var(--bg-tertiary);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px var(--accent-glow);
}

.download-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.download-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-details h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.download-details p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.download-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.download-main-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-primary), #7c3aed);
    color: white;
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.download-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.download-main-btn .btn-icon {
    font-size: 1.3rem;
}

.download-main-btn .btn-title {
    display: block;
    font-size: 1rem;
}

.download-main-btn .btn-subtitle {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.download-alt {
    display: flex;
    gap: 16px;
}

.alt-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.alt-link:hover {
    color: var(--accent-secondary);
}

/* Install Steps */
.install-steps h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step {
    text-align: center;
    padding: 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--success);
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left { order: 1; }
    .hero-right { order: 0; margin-bottom: 2rem; }
    
    .hero-description { max-width: 100%; margin: 0 auto 2rem; }
    
    .hero-highlights, .hero-cta, .trust-indicators, .hero-stats {
        justify-content: center;
    }
    
    .title-main { font-size: 2.5rem; }
    
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    
    .faq-grid { grid-template-columns: 1fr; }
    
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    
    .download-info { flex-direction: column; }
    .download-actions { align-items: center; }
}

@media (max-width: 600px) {
    .status-container { gap: 1rem; }
    .status-item { font-size: 0.75rem; padding: 3px 8px; }
    
    .title-main { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    
    .scripts-preview-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    
    .preview-sidebar { display: none; }
}


/* Tutorial Section */
.tutorial-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--bg-primary);
    margin-bottom: 24px;
}

.tutorial-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--bg-primary);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

.video-info {
    text-align: center;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.video-info p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-features span {
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 600px) {
    .video-features {
        flex-direction: column;
        gap: 8px;
    }
}
