/**
 * 888HR - AI Resume Screening
 * Luxury Tech Edition Styles
 */

/* ==================== VARIABLES ==================== */
:root {
    /* Primary Colors - HR Theme (Blue-Purple) */
    --gold: #6366f1;
    --gold-light: #818cf8;
    --gold-dark: #4f46e5;
    --rose-gold: #ec4899;
    
    /* Neon Accents */
    --neon-blue: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-green: #22c55e;
    --neon-yellow: #eab308;
    --neon-red: #ef4444;
    
    /* Background */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(18, 18, 26, 0.8);
    --bg-input: rgba(255, 255, 255, 0.05);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(99, 102, 241, 0.3);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 40px;
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --container-width: 1400px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==================== RESET ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==================== ANIMATED BACKGROUND ==================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
    animation: bgPulse 20s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(2%, 2%) scale(1.02); }
    50% { transform: translate(-1%, 1%) scale(0.98); }
    75% { transform: translate(1%, -2%) scale(1.01); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { 
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--rose-gold));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoRotate 10s linear infinite;
}

@keyframes logoRotate {
    0% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); }
    50% { box-shadow: 0 0 30px rgba(236, 72, 153, 0.5); }
    100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); }
}

.logo-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.logo-label {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-weight: 800;
    font-size: 1.25rem;
    background: linear-gradient(90deg, var(--gold-light), var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--rose-gold), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: var(--spacing-xl);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.hero-btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.hero-btn:hover svg {
    transform: translateY(4px);
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

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

/* ==================== FORM CARDS ==================== */
.form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.form-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

.step-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.form-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* ==================== FORM ELEMENTS ==================== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.required {
    color: var(--rose-gold);
}

.label-with-icon {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.label-with-icon svg {
    width: 14px;
    height: 14px;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.demo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem;
    background: transparent;
    border: 1px dashed var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.demo-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.demo-btn svg {
    width: 16px;
    height: 16px;
}

/* ==================== TABS ==================== */
.tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 4px;
    gap: 4px;
}

.tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab:hover {
    color: var(--text-primary);
}

.tab.active {
    background: var(--bg-card);
    color: var(--gold-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tab svg {
    width: 16px;
    height: 16px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ==================== UPLOAD ZONE ==================== */
.upload-zone {
    position: relative;
    padding: var(--spacing-xl);
    border: 2px dashed var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    background: rgba(99, 102, 241, 0.05);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.upload-zone:hover {
    border-color: var(--gold);
    background: rgba(99, 102, 241, 0.1);
}

.upload-zone input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-zone svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.upload-text {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.upload-hint {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==================== MANUAL INPUT ==================== */
.manual-input {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.manual-input input,
.manual-input textarea {
    padding: 0.75rem;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    resize: none;
}

.manual-input input:focus,
.manual-input textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.add-btn:hover {
    background: var(--gold);
}

.add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.add-btn svg {
    width: 16px;
    height: 16px;
}

/* ==================== CANDIDATES LIST ==================== */
.candidates-section {
    margin-top: var(--spacing-md);
}

.candidates-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.candidates-list {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.empty-state {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-muted);
}

.empty-state svg {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-sm);
    opacity: 0.5;
}

.empty-state p {
    font-size: 0.875rem;
}

.candidate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.candidate-item:hover {
    border-color: var(--border-accent);
}

.candidate-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.candidate-icon {
    width: 36px;
    height: 36px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.candidate-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
}

.candidate-name {
    font-weight: 500;
    font-size: 0.875rem;
}

.candidate-type {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(99, 102, 241, 0.2);
    color: var(--gold-light);
}

.candidate-remove {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    opacity: 0;
}

.candidate-item:hover .candidate-remove {
    opacity: 1;
}

.candidate-remove:hover {
    color: var(--neon-red);
    background: rgba(239, 68, 68, 0.1);
}

.candidate-remove svg {
    width: 16px;
    height: 16px;
}

/* ==================== ANALYZE BUTTON ==================== */
.analyze-section {
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: sticky;
    bottom: var(--spacing-md);
    z-index: 10;
}

.analyze-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--gold), var(--rose-gold));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.analyze-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.analyze-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-text,
.btn-loader {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-loader.hidden {
    display: none;
}

.analyze-btn.loading .btn-text {
    display: none;
}

.analyze-btn.loading .btn-loader {
    display: flex;
}

.spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

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

.analyze-hint {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==================== RESULTS SECTION ==================== */
.results-section {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--glass-border);
    animation: fadeIn 0.5s ease;
}

.results-section.hidden {
    display: none;
}

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

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
}

.results-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

.results-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* ==================== RESULT CARD ==================== */
.result-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.result-card:hover {
    box-shadow: var(--shadow-card);
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    cursor: pointer;
}

.result-main {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.result-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-avatar svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.result-name {
    font-size: 1.125rem;
    font-weight: 700;
}

.result-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

.result-status.recommended {
    background: rgba(34, 197, 94, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.result-status.maybe {
    background: rgba(234, 179, 8, 0.15);
    color: var(--neon-yellow);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.result-status.rejected {
    background: rgba(239, 68, 68, 0.15);
    color: var(--neon-red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.result-status svg {
    width: 14px;
    height: 14px;
}

.result-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.result-score {
    text-align: right;
}

.result-score-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.result-score-value {
    font-size: 1.5rem;
    font-weight: 800;
}

.result-score-value.high { color: var(--neon-green); }
.result-score-value.medium { color: var(--neon-yellow); }
.result-score-value.low { color: var(--text-secondary); }

.result-expand {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.result-expand:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.result-expand svg {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-fast);
}

.result-card.expanded .result-expand svg {
    transform: rotate(180deg);
}

/* Result Details */
.result-details {
    display: none;
    padding: 0 var(--spacing-md) var(--spacing-md);
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.result-card.expanded .result-details {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-summary {
    padding: var(--spacing-md) 0;
}

.result-summary h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
}

.result-summary p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.result-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

@media (max-width: 640px) {
    .result-pros-cons {
        grid-template-columns: 1fr;
    }
}

.pros-section,
.cons-section {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.pros-section {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.cons-section {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros-section h5,
.cons-section h5 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.pros-section h5 {
    color: var(--neon-green);
}

.cons-section h5 {
    color: var(--neon-red);
}

.pros-section h5 svg,
.cons-section h5 svg {
    width: 14px;
    height: 14px;
}

.pros-section ul,
.cons-section ul {
    list-style: disc;
    list-style-position: inside;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pros-section li,
.cons-section li {
    margin-bottom: 4px;
    line-height: 1.5;
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid var(--glass-border);
    margin-top: var(--spacing-xl);
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ==================== UTILITY ==================== */
.hidden {
    display: none !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        padding: var(--spacing-md);
    }
    
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .result-meta {
        width: 100%;
        justify-content: space-between;
    }
}
