@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #ff4d8d;
    --primary-dark: #e03a7a;
    --accent: #7c3aed;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }

body { color: var(--text-main); background: #f8fafc; overflow-x: hidden; }

/* Hero Backgrounds */
.hero-page {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

/* Glass Effect Card */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Professional Header */
.hero-header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.brand { font-size: 1.5rem; font-weight: 700; text-decoration: none; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

/* Buttons */
.btn { 
    padding: 0.8rem 1.8rem; border-radius: 12px; font-weight: 600; 
    cursor: pointer; border: none; transition: all 0.3s ease; 
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 14px 0 rgba(255, 77, 141, 0.39); }
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-dark); }
.btn-ghost { color: white; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* Layouts */
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* Stat Cards */
.stat-card { background: white; padding: 1.5rem; border-radius: 15px; border-left: 5px solid var(--primary); box-shadow: var(--shadow); }