/* Light Theme Styles */
.preview-wrapper.light-theme {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    color: #1a1a1a;
}

.light-theme .preview-bg-pattern {
    opacity: 0.02;
}

.light-theme .preview-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.light-theme .preview-nav-link {
    color: #666;
}

.light-theme .preview-nav-link:hover {
    color: #1a1a1a;
}

.light-theme .hero-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--sentauri-blue);
}

.light-theme .website-title,
.light-theme .features-title,
.light-theme .cta-title {
    color: #1a1a1a;
}

.light-theme .website-subtitle,
.light-theme .features-subtitle,
.light-theme .cta-subtitle {
    color: #666;
}

.light-theme .website-stats {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.light-theme .stat-label {
    color: #666;
}

.light-theme .feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.light-theme .feature-card:hover {
    border-color: rgba(0, 206, 200, 0.5);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.light-theme .feature-title {
    color: #1a1a1a;
}

.light-theme .feature-desc {
    color: #666;
}

.light-theme .website-cta {
    background: rgba(59, 130, 246, 0.05);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.light-theme .preview-footer {
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.light-theme .footer-brand p,
.light-theme .footer-links a {
    color: #666;
}

.light-theme .footer-links h4 {
    color: #1a1a1a;
}

.light-theme .footer-links a:hover {
    color: var(--sentauri-blue);
}

.light-theme .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #999;
}

.light-theme .website-button-secondary {
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

.light-theme .website-button-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--sentauri-blue);
    color: var(--sentauri-blue);
}

/* Preview Website Specific Styles */
.preview-wrapper {
    background: linear-gradient(180deg, #0a0f1c 0%, #050810 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.preview-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--sentauri-blue) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--sentauri-cyan) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, var(--sentauri-green) 0%, transparent 50%);
    animation: bgMove 20s ease-in-out infinite;
}

@keyframes bgMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, -20px) scale(1.1); }
    66% { transform: translate(20px, -10px) scale(0.9); }
}

.preview-navbar {
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.5s ease;
}

.website-hero {
    text-align: center;
    padding: 120px 48px 80px;
    position: relative;
    transition: all 0.6s ease;
}

.website-title.gradient {
    background: linear-gradient(135deg, var(--sentauri-blue), var(--sentauri-cyan), var(--sentauri-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.website-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding: 80px 48px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sentauri-cyan), transparent);
    transform: translateX(-100%);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    to { transform: translateX(100%); }
}

/* Mobile Responsive Styles */
.mobile-screen .preview-navbar {
    padding: 12px 16px;
    position: sticky;
    top: 0;
}

.mobile-screen .preview-nav-links {
    display: none;
}

.mobile-screen .website-hero {
    padding: 60px 24px 40px;
}

.mobile-screen .website-title {
    font-size: 36px;
}

.mobile-screen .website-subtitle {
    font-size: 16px;
}

.mobile-screen .hero-buttons {
    flex-direction: column;
    align-items: stretch;
}

.mobile-screen .website-button {
    width: 100%;
}

.mobile-screen .website-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 24px;
    gap: 24px;
}

.mobile-screen .stat-value {
    font-size: 32px;
}

.mobile-screen .features-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
}

.mobile-screen .website-features {
    padding: 40px 0;
}

.mobile-screen .feature-card {
    padding: 24px;
}

.mobile-screen .footer-content {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
}

.mobile-screen .preview-footer {
    padding: 32px 0;
}

/* Custom Scrollbar */
.preview-content::-webkit-scrollbar,
.mobile-screen::-webkit-scrollbar,
.command-list::-webkit-scrollbar {
    width: 6px;
}

.preview-content::-webkit-scrollbar-track,
.mobile-screen::-webkit-scrollbar-track,
.command-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}

.preview-content::-webkit-scrollbar-thumb,
.mobile-screen::-webkit-scrollbar-thumb,
.command-list::-webkit-scrollbar-thumb {
    background: rgba(0, 206, 200, 0.3);
    border-radius: 3px;
    transition: background 0.2s ease;
}

.preview-content::-webkit-scrollbar-thumb:hover,
.mobile-screen::-webkit-scrollbar-thumb:hover,
.command-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 206, 200, 0.5);
}
