/* 🎨 Framed Social - Premium Modern Design */

/* ============================================
   CSS VARIABLES - Modern Color System
   ============================================ */
:root {
    /* Steampunk Gradients - Rich &amp; Bold */
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-secondary: linear-gradient(135deg, #c9a227 0%, #8b6914 50%, #5a4a1f 100%);
    --gradient-success: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
    --gradient-dark: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
    --gradient-warm: linear-gradient(135deg, #b85c38 0%, #8b4513 50%, #6b3410 100%);
    --gradient-accent: linear-gradient(135deg, #4a5568 0%, #2d3748 50%, #1a202c 100%);
    
    /* Steampunk Glassmorphism - Darker with metallic tint */
    --glass-bg: rgba(26, 26, 46, 0.75);
    --glass-border: rgba(201, 162, 39, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    
    /* Core Colors - Rich &amp; Bold */
    --primary: #0f3460;
    --primary-dark: #0a2540;
    --secondary: #c9a227;
    --success: #2d6a4f;
    --warning: #b85c38;
    --danger: #8b2635;
    --dark: #1a1a2e;
    --light: #e8e8e8;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Clash Display', 'Inter', sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #e8e8e8;
    background: var(--gradient-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Steampunk Animated Background with Gears Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 92, 56, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(45, 106, 79, 0.06) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundPulse 15s ease-in-out infinite;
}

/* Steampunk Gear Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(201, 162, 39, 0.03) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.5;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(201, 162, 39, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: transform var(--transition-fast);
    position: relative;
    z-index: 100;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-menu li {
    position: relative;
    z-index: 50;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    z-index: 50;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
}

.nav-link:hover::before {
    transform: translateX(0);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.nav-user {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.nav-user:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #c9a227;
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 162, 39, 0.3);
    animation: fadeInUp var(--transition-slow) ease;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(232, 232, 232, 0.95);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp var(--transition-slow) ease 0.1s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-svg-placeholder {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: var(--space-2xl) auto;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px dashed var(--glass-border);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: fadeInUp var(--transition-slow) ease 0.2s both;
    position: relative;
    overflow: hidden;
}

.hero-svg-placeholder::before {
    content: '🖼️';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
}

.hero-svg-placeholder::after {
    content: 'Hero SVG Placeholder';
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp var(--transition-slow) ease 0.3s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.6);
    background: linear-gradient(135deg, #d4af37 0%, #9d7d1a 50%, #6b5a1f 100%);
}

.btn-secondary {
    background: transparent;
    color: #c9a227;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.2rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* ============================================
   GLASS CARDS
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

/* Metallic sheen effect */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transition: left 0.5s;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card h1,
.glass-card h2,
.glass-card h3,
.glass-card h4,
.glass-card h5,
.glass-card h6 {
    color: #c9a227;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.glass-card p,
.glass-card span,
.glass-card div {
    color: rgba(232, 232, 232, 0.95);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 162, 39, 0.2);
    border-color: rgba(201, 162, 39, 0.5);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--space-3xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #c9a227;
    text-align: center;
    margin-bottom: var(--space-2xl);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 162, 39, 0.3);
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 162, 39, 0.3);
}

.feature-svg-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(139, 105, 20, 0.2) 100%);
    border-radius: 20px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(201, 162, 39, 0.3);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a227;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-card p {
    color: rgba(232, 232, 232, 0.95);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   STATISTICS
   ============================================ */
.stats-section {
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    animation: fadeInUp var(--transition-slow) ease both;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #c9a227;
    display: block;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 162, 39, 0.4);
}

.stat-label {
    color: rgba(232, 232, 232, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(201, 162, 39, 0.3);
    border-bottom: 2px solid rgba(201, 162, 39, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(26, 26, 46, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FORMS
   ============================================ */
.glass-input {
    width: 100%;
    padding: var(--space-md);
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: #e8e8e8;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
}

.glass-input:focus {
    background: rgba(26, 26, 46, 0.8);
    border-color: rgba(201, 162, 39, 0.6);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2), 0 0 15px rgba(201, 162, 39, 0.3);
    outline: none;
}

.glass-input::placeholder {
    color: rgba(232, 232, 232, 0.5);
}

select.glass-input {
    cursor: pointer;
}

textarea.glass-input {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   ACHIEVEMENT CARDS
   ============================================ */
.achievement-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
}

.achievement-card:hover {
    background: rgba(26, 26, 46, 0.8);
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 162, 39, 0.2);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-dark);
    color: #e8e8e8;
    padding: var(--space-xl);
    text-align: center;
    margin-top: auto;
    border-top: 2px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-container p {
    margin: var(--space-sm) 0;
    color: rgba(232, 232, 232, 0.8);
}

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

::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.8);
    border-left: 1px solid rgba(201, 162, 39, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.6) 0%, rgba(139, 105, 20, 0.6) 100%);
    border-radius: 6px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.8) 0%, rgba(139, 105, 20, 0.8) 100%);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .nav-container {
        padding: var(--space-md);
    }

    .nav-menu {
        gap: var(--space-md);
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DARK MODE
   ============================================ */
.dark-theme {
    background: var(--gradient-dark);
}

.dark-theme .glass-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-theme .glass-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-lg);
}

.main-content {
    flex: 1;
    width: 100%;
}

/* Text color fixes for steampunk theme */
.glass-card label,
.glass-card small {
    color: rgba(232, 232, 232, 0.9);
}

.glass-card input,
.glass-card textarea,
.glass-card select {
    color: #e8e8e8;
}

/* Ensure proper text colors on gradient backgrounds */
body * {
    color: inherit;
}

.hero-section *,
.features-section *,
.stats-section * {
    color: #e8e8e8;
}

.hero-section p,
.features-section p,
.stats-section p {
    color: rgba(232, 232, 232, 0.95);
}

/* CTA section has dark text on gold background */
.cta-section * {
    color: #1a1a2e;
}

.cta-section p {
    color: rgba(26, 26, 46, 0.9);
}

/* Accent colors for headings */
h1, h2, h3 {
    color: #c9a227;
}

/* Links */
a {
    color: #c9a227;
    transition: color var(--transition-base);
}

a:hover {
    color: #d4af37;
}

.loading {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to { left: 100%; }
}

.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: white;
}

.theme-toggle:hover {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Password strength indicator */
.strength-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    flex: 1;
    transition: background var(--transition-base);
}

.strength-bar.active-1 { background: #fc8181; }
.strength-bar.active-2 { background: #f6ad55; }
.strength-bar.active-3 { background: #68d391; }
.strength-bar.active-4 { background: #48bb78; }