/* =============== ROOT VARIABLES =============== */
:root {
    /* Dark Theme - Vibrant Modern Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111318;
    --bg-card: rgba(18, 20, 26, 0.95);
    --bg-tertiary: #1a1d2e;
    --text-primary: #ffffff;
    --text-secondary: #b8c1ec;
    --text-muted: #7a85a3;
    --border-color: rgba(55, 65, 81, 0.5);
    
    /* Vibrant Accent Colors */
    --primary: #6366f1;
    --primary-light: #8183f4;
    --primary-dark: #4f52e0;
    --secondary: #ec4899;
    --secondary-light: #f472b6;
    --secondary-dark: #db2777;
    --success: #10b981;
    --success-light: #34d399;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --purple: #a855f7;
    --cyan: #06b6d4;
    --orange: #f97316;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #a855f7 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-bg: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

/* Light Theme - Clean & Vibrant */
[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-tertiary: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border-color: rgba(203, 213, 225, 0.7);
    
    /* Vibrant Accent Colors for Light Mode */
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --secondary: #db2777;
    --secondary-light: #ec4899;
    --secondary-dark: #be185d;
    --success: #059669;
    --success-light: #10b981;
    --danger: #dc2626;
    --warning: #d97706;
    --info: #2563eb;
    --purple: #9333ea;
    --cyan: #0891b2;
    --orange: #ea580c;
    
    /* Gradients for Light Theme */
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #db2777 100%);
    --gradient-secondary: linear-gradient(135deg, #0891b2 0%, #9333ea 100%);
    --gradient-success: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-warning: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    --gradient-bg: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(219, 39, 119, 0.03) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    position: relative;
}

/* Global Background Image for All Pages - Responsive */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/hero-bg-dark.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: -2;
}

[data-theme="light"] body::before {
    background-image: url('../assets/hero-bg-light.png');
    opacity: 0.3;
}

/* Responsive background adjustments for different screen sizes */
@media (max-width: 768px) {
    body::before {
        background-size: cover;
        background-position: 50% 50%;
    }
}

@media (max-width: 480px) {
    body::before {
        background-size: cover;
        background-position: 50% 40%;
    }
}

/* For landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    body::before {
        background-size: cover;
        background-position: 50% 50%;
    }
}

/* For tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    body::before {
        background-size: cover;
        background-position: center;
    }
}

/* For large screens (4K, etc.) */
@media (min-width: 1920px) {
    body::before {
        background-size: cover;
        background-position: center;
    }
}

/* Keep the radial gradient as a separate overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

[data-theme="light"] body::after {
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 60%);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    background: var(--bg-primary);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-theme-toggle, .theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-color);
}

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

.mobile-menu a, .mobile-theme-toggle {
    display: block;
    padding: 1rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.mobile-theme-toggle i { color: var(--primary); }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}

.overlay.active { display: block; }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5% 4rem;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-content { flex: 1; min-width: 300px; }

.badge {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.typed-text {
    color: var(--primary);
    border-right: 2px solid var(--primary);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: var(--primary); }
    50% { border-color: transparent; }
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-item p {
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

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

.features {
    padding: 5rem 5%;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i { font-size: 1.8rem; color: white; }

.how-it-works { padding: 5rem 5%; }

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    text-align: center;
    min-width: 200px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    color: white;
}

.faq {
    padding: 5rem 5%;
    background: var(--bg-secondary);
}

.accordion-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.accordion-header {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-header i { transition: transform 0.3s; }

.accordion-item.active .accordion-header i { transform: rotate(180deg); }

.accordion-content {
    max-height: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}

.cta-section {
    padding: 5rem 5%;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
}

.cta-section h2, .cta-section p { color: white; }

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary);
}

.footer {
    padding: 4rem 5% 2rem;
    background: var(--bg-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section { flex: 1; min-width: 200px; }

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-section a:hover { color: var(--primary); }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
}

[data-theme="light"] .btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

[data-theme="light"] .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="light"] .btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.theme-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.6rem !important; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { flex-direction: column; text-align: center; padding-top: 5rem !important; }
    .hero-content { text-align: center; }
    .cta-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .steps { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr !important; }
    .footer-content { flex-direction: column; text-align: center; }
    .social-links { justify-content: center; }
    .features, .how-it-works, .faq { padding: 3rem 1rem !important; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.6rem !important; }
    h2 { font-size: 1.3rem !important; }
    .hero-stats { gap: 1rem !important; }
    .stat-item h4 { font-size: 1rem !important; }
    .btn { padding: 0.5rem 1rem !important; font-size: 0.85rem !important; }
}
/* Notification Styles */
.notification-slide {
    position: fixed;
    top: 20px;
    right: -400px;
    z-index: 10000;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: right 0.3s ease-in-out;
    max-width: 350px;
    min-width: 250px;
}

.notification-success {
    background: #10b981;
    color: white;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-info {
    background: #3b82f6;
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 18px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Custom Modal Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Glass morphism effect for cards */
.detail-card, .card {
    backdrop-filter: blur(10px);
    background: var(--bg-secondary);
    transition: all 0.3s;
}
/* =============== GLOBAL LOADING SPINNER =============== */
.global-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
}

.global-spinner-overlay.active {
    visibility: visible;
    opacity: 1;
}

.spinner-container {
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

/* Advanced Logo Container */
.spinner-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

/* Logo Image */
.spinner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 0 60px rgba(0, 212, 255, 0.1);
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 3;
    position: relative;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 0 40px rgba(0, 212, 255, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.4), 0 0 80px rgba(0, 212, 255, 0.2);
        transform: scale(1.02);
    }
}

/* Fire Particles Container */
.fire-particles {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    pointer-events: none;
    z-index: 4;
}

.fire-particle {
    position: absolute;
    bottom: 0;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ff6600, #ff3300, #ffcc00);
    border-radius: 50%;
    opacity: 0;
    animation: fireRise 0.8s ease-out infinite;
}

.fire-particle:nth-child(1) { left: 30%; animation-delay: 0s; width: 3px; height: 3px; }
.fire-particle:nth-child(2) { left: 45%; animation-delay: 0.1s; width: 5px; height: 5px; background: radial-gradient(circle, #ffcc00, #ff6600); }
.fire-particle:nth-child(3) { left: 55%; animation-delay: 0.2s; width: 4px; height: 4px; }
.fire-particle:nth-child(4) { left: 40%; animation-delay: 0.15s; width: 6px; height: 6px; background: radial-gradient(circle, #ff3300, #cc0000); }
.fire-particle:nth-child(5) { left: 60%; animation-delay: 0.25s; width: 3px; height: 3px; }
.fire-particle:nth-child(6) { left: 50%; animation-delay: 0.3s; width: 5px; height: 5px; }
.fire-particle:nth-child(7) { left: 35%; animation-delay: 0.35s; width: 4px; height: 4px; }
.fire-particle:nth-child(8) { left: 65%; animation-delay: 0.4s; width: 3px; height: 3px; }
.fire-particle:nth-child(9) { left: 42%; animation-delay: 0.05s; width: 7px; height: 7px; background: radial-gradient(circle, #ffaa00, #ff4400); }
.fire-particle:nth-child(10) { left: 58%; animation-delay: 0.12s; width: 4px; height: 4px; }

@keyframes fireRise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0.8;
        transform: translateY(-40px) scale(1);
    }
    100% {
        transform: translateY(-60px) scale(0.5);
        opacity: 0;
    }
}


/* Spinning Ring around logo */
.spinner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-top: 2px solid #00d4ff;
    border-radius: 50%;
    animation: spinRing 1.5s linear infinite;
}

@keyframes spinRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Sparkle effects around logo */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 1.5s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: -10px; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: -5px; right: 15%; animation-delay: 0.3s; width: 3px; height: 3px; }
.sparkle:nth-child(3) { bottom: 15px; left: -5px; animation-delay: 0.6s; width: 5px; height: 5px; background: #00d4ff; }
.sparkle:nth-child(4) { bottom: 20px; right: 0; animation-delay: 0.9s; width: 3px; height: 3px; }
.sparkle:nth-child(5) { top: 30%; left: -8px; animation-delay: 0.15s; width: 4px; height: 4px; }
.sparkle:nth-child(6) { top: 40%; right: -8px; animation-delay: 0.45s; width: 5px; height: 5px; background: #ffcc00; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.spinner-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 500;
}

.spinner-text i {
    margin-right: 8px;
    color: var(--primary);
}

.spinner-dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 5px;
}

.spinner-dots span {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.spinner-dots span:nth-child(1) { animation-delay: 0s; }
.spinner-dots span:nth-child(2) { animation-delay: 0.2s; }
.spinner-dots span:nth-child(3) { animation-delay: 0.4s; }

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

@keyframes dotPulse {
    0%, 60%, 100% { transform: scale(0.8); opacity: 0.4; }
    30% { transform: scale(1.2); opacity: 1; }
}

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

/* Light theme adjustments */
[data-theme="light"] .global-spinner-overlay {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .spinner-circle {
    border-top-color: #000000;
}

[data-theme="light"] .spinner-logo .logo-icon {
    color: #000000;
}

[data-theme="light"] .spinner-text {
    color: #666666;
}
/* =============== DEPLOYMENT PROGRESS BAR =============== */
.deploy-progress-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100001;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.deploy-progress-overlay.active {
    transform: translateY(0);
}

.deploy-progress-container {
    padding: 1rem 1.5rem;
}

.deploy-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.deploy-progress-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.deploy-progress-title i {
    color: var(--primary);
}

.deploy-progress-percentage {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.deploy-progress-bar-wrapper {
    background: var(--bg-tertiary);
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.deploy-progress-bar {
    width: 0%;
    height: 100%;
    transition: width 0.3s ease-out;
    border-radius: 20px;
}

.deploy-progress-bar.step-cloning { background: #3b82f6; width: 20%; }
.deploy-progress-bar.step-installing { background: #f59e0b; width: 50%; }
.deploy-progress-bar.step-building { background: #8b5cf6; width: 75%; }
.deploy-progress-bar.step-running { background: #10b981; width: 100%; }
.deploy-progress-bar.error { background: #ef4444; }

.deploy-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.deploy-progress-step {
    text-align: center;
    flex: 1;
}

.deploy-progress-step.active {
    color: var(--primary);
    font-weight: 600;
}

.deploy-progress-step.completed {
    color: #10b981;
}

.deploy-progress-message {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    font-family: monospace;
}
/* Footer Styles */
.footer {
    padding: 2rem 5% 1.5rem;
    background: var(--bg-primary);
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section {
    flex: 1;
    min-width: 140px;
}

.footer-section h4 {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-section a i {
    width: 18px;
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.social-links a i {
    margin: 0;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.social-links a:hover i {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-section {
        min-width: 130px;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .footer-section {
        min-width: calc(50% - 0.5rem);
    }
    
    .footer-content {
        gap: 0.8rem;
    }
}