/* VINSpot Command Center Styles */
:root {
    --vs-bg: #0a0a0f;
    --vs-surface: #12121a;
    --vs-surface-light: #1a1a25;
    --vs-border: #2a2a3a;
    --vs-text: #e0e0e0;
    --vs-text-muted: #8a8a9a;
    --vs-purple: #f97316;
    --vs-purple-dark: #ea580c;
    --vs-purple-light: #fb923c;
    --vs-green: #00ff64;
    --vs-gray: #3a3a4a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--vs-bg);
    color: var(--vs-text);
    min-height: 100vh;
    overflow-x: hidden;
}

.vs-bg-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.vs-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--vs-border);
}

.vs-header-content {
    max-width: 1400px; margin: 0 auto; padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}

.vs-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }

.vs-logo-icon {
    background: linear-gradient(135deg, var(--vs-purple) 0%, var(--vs-purple-dark) 100%);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800; font-size: 0.9rem;
    padding: 0.5rem 0.75rem; border-radius: 8px;
}

.vs-logo-text { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--vs-text); }

.vs-nav { display: flex; align-items: center; gap: 1.5rem; }
.vs-nav a { color: var(--vs-text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.vs-nav a:hover { color: var(--vs-purple); }

.vs-hero {
    position: relative; z-index: 1; min-height: auto;
    display: flex; align-items: center; justify-content: center;
    max-width: 900px; margin: 0 auto; padding: 8rem 2rem 2rem; text-align: center;
}

.vs-hero-content { display: flex; flex-direction: column; align-items: center; }

.vs-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--vs-purple);
    padding: 0.5rem 1rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 500; margin-bottom: 1.5rem;
}

.vs-pulse {
    width: 8px; height: 8px; background: var(--vs-purple);
    border-radius: 50%; animation: pulse 2s infinite;
}

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

.vs-hero h1 { font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }

.vs-gradient-text {
    background: linear-gradient(135deg, var(--vs-purple) 0%, var(--vs-purple-light) 50%, var(--vs-purple-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.vs-hero p { font-size: 1.15rem; color: var(--vs-text-muted); line-height: 1.7; margin-bottom: 2.5rem; max-width: 550px; }

.vs-hero-actions { display: flex; gap: 1rem; margin-bottom: 2rem; width: 100%; max-width: 500px; }

.vs-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
    padding: 1rem 2rem; border-radius: 12px;
    font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 1.1rem;
    text-decoration: none; transition: all 0.3s;
}

.vs-btn-large { width: 100%; padding: 1.5rem 2.5rem; font-size: 1.3rem; border-radius: 14px; }

.vs-btn-primary {
    background: linear-gradient(135deg, var(--vs-purple) 0%, var(--vs-purple-dark) 100%);
    color: #fff; box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.vs-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4); }

.vs-training-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--vs-text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.2s;
}
.vs-training-link:hover { color: var(--vs-purple); }

.vs-installation { position: relative; z-index: 1; padding: 2rem 2rem 5rem; max-width: 1000px; margin: 0 auto; }
.vs-installation-header { text-align: center; margin-bottom: 4rem; }

.vs-section-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--vs-purple);
    padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem;
}

.vs-installation-header h2 { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.vs-installation-header p { color: var(--vs-text-muted); font-size: 1.1rem; }

.vs-steps { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem; }

.vs-step {
    display: flex; gap: 1.5rem;
    background: var(--vs-surface);
    border: 1px solid var(--vs-border);
    border-radius: 16px; padding: 2rem;
}

.vs-step-number {
    flex-shrink: 0; width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--vs-purple) 0%, var(--vs-purple-dark) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', sans-serif; font-weight: 800; font-size: 1.25rem; color: #fff;
}

.vs-step-content h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--vs-text); }
.vs-step-content > p { color: var(--vs-text-muted); margin-bottom: 1rem; line-height: 1.6; }

.vs-step-tip {
    display: flex; align-items: flex-start; gap: 0.75rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 10px; padding: 1rem; margin-top: 1rem;
}

.vs-step-tip svg { flex-shrink: 0; color: var(--vs-purple); margin-top: 2px; }
.vs-step-tip span { color: var(--vs-text-muted); font-size: 0.9rem; }
.vs-step-tip.vs-success { background: rgba(0, 255, 100, 0.1); border-color: rgba(0, 255, 100, 0.2); }
.vs-step-tip.vs-success svg { color: var(--vs-green); }

.vs-code-block {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--vs-bg); border: 1px solid var(--vs-border);
    border-radius: 10px; padding: 1rem 1.25rem; margin: 1rem 0;
}

.vs-code-block code { font-family: 'Courier New', monospace; font-size: 1rem; color: var(--vs-purple); }

.vs-copy-btn {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--vs-surface-light);
    border: 1px solid var(--vs-border);
    border-radius: 6px; padding: 0.5rem 0.75rem;
    color: var(--vs-text-muted); font-size: 0.8rem; cursor: pointer; transition: all 0.2s;
}
.vs-copy-btn:hover { border-color: var(--vs-purple); color: var(--vs-purple); }

.vs-substeps { margin: 1rem 0; padding-left: 1.5rem; }
.vs-substeps li { color: var(--vs-text-muted); margin-bottom: 0.5rem; line-height: 1.6; }
.vs-substeps li strong { color: var(--vs-text); }

.vs-supported-sites { text-align: center; padding: 2rem; background: var(--vs-surface); border: 1px solid var(--vs-border); border-radius: 16px; }
.vs-supported-sites h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--vs-text-muted); }
.vs-sites-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.vs-site { background: var(--vs-bg); border: 1px solid var(--vs-border); border-radius: 8px; padding: 0.75rem 1.5rem; font-family: 'Rajdhani', sans-serif; font-weight: 600; color: var(--vs-purple); }

.vs-training { position: relative; z-index: 1; padding: 5rem 2rem; max-width: 1400px; margin: 0 auto; }
.vs-training-header { text-align: center; margin-bottom: 4rem; }
.vs-training-header h2 { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.vs-training-header p { color: var(--vs-text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.vs-theater { background: var(--vs-surface); border: 1px solid var(--vs-border); border-radius: 20px; padding: 2rem; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.vs-main-video { margin-bottom: 2rem; }
.vs-video-container { position: relative; background: #000; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9; }
.vs-video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--vs-text-muted); background: linear-gradient(135deg, var(--vs-surface) 0%, var(--vs-bg) 100%); }
.vs-video-placeholder svg { opacity: 0.5; color: var(--vs-purple); }
.vs-video-container video { width: 100%; height: 100%; object-fit: cover; }

.vs-video-info { padding: 1.5rem 0.5rem 0.5rem; }
.vs-video-info h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 0.5rem; }
.vs-video-info p { color: var(--vs-text-muted); font-size: 0.95rem; }

.vs-video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.vs-thumbnail { background: var(--vs-surface-light); border: 1px solid var(--vs-border); border-radius: 12px; padding: 1rem; cursor: pointer; transition: all 0.3s; display: flex; flex-direction: column; gap: 0.75rem; }
.vs-thumbnail:hover { border-color: var(--vs-purple); transform: translateY(-3px); }
.vs-thumbnail.active { border-color: var(--vs-purple); background: rgba(249, 115, 22, 0.05); }
.vs-thumb-img { position: relative; background: linear-gradient(135deg, var(--vs-bg) 0%, var(--vs-surface) 100%); border-radius: 8px; aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; color: var(--vs-purple); overflow: hidden; }
.vs-thumb-number { position: absolute; top: 8px; left: 8px; font-family: 'Orbitron', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--vs-text-muted); }
.vs-thumb-img svg { opacity: 0.7; transition: all 0.3s; }
.vs-thumbnail:hover .vs-thumb-img svg { opacity: 1; transform: scale(1.1); }
.vs-thumb-title { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.95rem; }
.vs-thumb-duration { font-size: 0.8rem; color: var(--vs-text-muted); }

.vs-quicklinks { position: relative; z-index: 1; padding: 4rem 2rem 6rem; max-width: 1400px; margin: 0 auto; }
.vs-quicklinks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.vs-quicklink-card { background: var(--vs-surface); border: 1px solid var(--vs-border); border-radius: 16px; padding: 2rem; text-decoration: none; transition: all 0.3s; }
.vs-quicklink-card:hover { border-color: var(--vs-purple); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }
.vs-quicklink-icon { width: 50px; height: 50px; background: rgba(249, 115, 22, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--vs-purple); margin-bottom: 1.25rem; }
.vs-quicklink-icon-green { background: rgba(0, 255, 100, 0.1); color: var(--vs-green); }
.vs-quicklink-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--vs-text); margin-bottom: 0.5rem; }
.vs-quicklink-card p { font-size: 0.9rem; color: var(--vs-text-muted); }

.vs-footer { position: relative; z-index: 1; border-top: 1px solid var(--vs-border); padding: 3rem 2rem; background: rgba(10, 14, 23, 0.8); }
.vs-footer-content { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.vs-footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.vs-footer-icb-logo { display: inline-block; transition: all 0.3s ease; }
.vs-footer-icb-logo:hover { transform: translateY(-2px); filter: brightness(1.1); }
.icb-logo-img { max-width: 200px; height: auto; }
.vs-footer-links { display: flex; gap: 2rem; }
.vs-footer-links a { color: var(--vs-text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.vs-footer-links a:hover { color: var(--vs-orange); }
.vs-copyright { color: var(--vs-text-muted); font-size: 0.8rem; }

@media (max-width: 1024px) {
    .vs-hero h1 { font-size: 2.5rem; }
    .vs-video-grid { grid-template-columns: repeat(2, 1fr); }
    .vs-quicklinks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .vs-header-content { padding: 1rem; }
    .vs-logo-text { display: none; }
    .vs-hero h1 { font-size: 2rem; }
    .vs-btn-large { padding: 1.25rem 2rem; font-size: 1.15rem; }
    .vs-step { flex-direction: column; }
    .vs-installation-header h2, .vs-training-header h2 { font-size: 2rem; }
    .vs-theater { padding: 1rem; }
    .vs-video-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .vs-thumbnail { padding: 0.75rem; }
    .vs-quicklinks-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .vs-hero-actions { flex-direction: column; }
    .vs-btn { width: 100%; justify-content: center; }
    .vs-sites-grid { flex-direction: column; }
    .vs-site { width: 100%; text-align: center; }
}
