/* Variables for premium theme */
:root {
    --bg-primary: #020813;
    --bg-secondary: #081225;
    --card-bg: rgba(10, 25, 47, 0.45);
    --card-border: rgba(255, 255, 255, 0.07);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-blue: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.35);
    --accent-green: #34d399;
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    background-image: radial-gradient(circle at 50% 50%, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    font-family: var(--font-family);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Glowing Orbs */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
    animation: drift 20s infinite alternate ease-in-out;
}

.bg-glow-1 {
    top: 10%;
    left: 15%;
    width: 350px;
    height: 350px;
    background: var(--accent-blue);
}

.bg-glow-2 {
    bottom: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: #6366f1;
    animation-delay: -5s;
}

/* App Container */
.container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

/* Glassmorphic Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 50px 40px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(56, 189, 248, 0.05);
}

.glass-card:hover::before {
    left: 100%;
    transition: 0.8s ease-in-out;
}

/* Logo Wrapper & Image */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.logo-image {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

/* Typography */
.title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 30%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    padding: 0 10px;
}

/* Progress Status Section */
.status-container {
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.status-track {
    width: 100%;
    max-width: 280px;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.status-bar {
    height: 100%;
    width: 65%; /* Representing active work in progress */
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    border-radius: 10px;
    box-shadow: 0 0 10px var(--accent-glow);
    position: relative;
    animation: pulseGlow 2s infinite alternate ease-in-out;
}

.status-text {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-blue);
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.2);
}

/* Footer & Branding */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: center;
}

.zuxtech-badge {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: default;
}

.zuxtech-name {
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.zuxtech-badge:hover {
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.25);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

.zuxtech-badge:hover .zuxtech-name {
    color: var(--accent-blue);
}

/* Keyframe Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 6px var(--accent-glow);
    }
    100% {
        box-shadow: 0 0 14px rgba(56, 189, 248, 0.6);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .glass-card {
        padding: 40px 24px;
    }
    .title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 0.95rem;
    }
}
