:root {
    --background: 240 10% 3.9%;
    --foreground: 0 0% 98%;
    --card: 240 10% 3.9%;
    --muted: 240 5% 64.9%;
    --accent: 263.4 90% 50.4%;
    --border: 240 3.7% 15.9%;
}

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

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
}

.main-container {
    width: 100%;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.glass {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.glass-strong {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid hsl(var(--border));
    border-radius: 16px;
}

.hero-section {
    align-items: center;
    text-align: center;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139,92,246,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.icon-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(244, 114, 182, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #a78bfa;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-wrapper {
    display: flex;
    justify-content: center;
}

.status-badge {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #4ade80;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

.input-group {
    width: 100%;
    max-width: 320px;
    margin: 25px 0;
    text-align: left;
}

select {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid hsl(var(--border));
    padding: 14px;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    margin-top: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

select:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.btn-generate {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-generate:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-generate:disabled {
    background: #1f1f23;
    color: hsl(var(--muted));
    cursor: not-allowed;
    border: 1px solid hsl(var(--border));
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.progress-container {
    background: #1f1f23;
    height: 8px;
    border-radius: 100px;
    width: 100%;
    margin: 15px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #a78bfa, #f472b6);
    border-radius: 100px;
    transition: width 0.5s ease;
}