/* ============================================================
   MayeleHub — Premium Modern Stylesheet (v2.0)
   ============================================================ */

:root {
    /* Colors — Sophisticated Dark Palette */
    --primary: #6366f1;       /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #8b5cf6;     /* Violet */
    --accent: #f43f5e;        /* Rose */
    --accent-glow: rgba(244, 63, 94, 0.3);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #0ea5e9;

    /* Neutrals */
    --bg-deep: #050811;       /* Near black */
    --bg-dark: #090e1a;       /* Dark Navy */
    --bg-card: rgba(17, 24, 39, 0.65);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    
    --text: #f3f4f6;
    --text-dim: #9ca3af;
    --text-muted: #6b7280;
    
    /* Layout & Effects */
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 12px 24px -6px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-head: 'Space Grotesk', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===================== RESET & BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Background Animated Mesh */
body::before {
    content: '';
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.03) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-head); 
    font-weight: 700; 
    letter-spacing: -0.03em; 
    color: #fff; 
}

/* ===================== UTILITIES ===================== */
.container-xl { width: 92%; max-width: 1400px; margin: 0 auto; }
.glass { background: var(--bg-glass); backdrop-filter: blur(12px); border: 1px solid var(--border); }
.text-gradient { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-padding { padding: 120px 0; }

/* ===================== TOPBAR ===================== */
.topbar {
    background: rgba(5, 8, 17, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
}
.topbar a { color: var(--text-dim); }
.topbar a:hover { color: #fff; }

/* ===================== NAVBAR ===================== */
.main-navbar {
    background: rgba(9, 14, 26, 0.7);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin: 20px auto;
    padding: 12px 24px;
    position: sticky; top: 20px;
    z-index: 1050;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
    box-shadow: 0 8px 16px var(--primary-glow);
}
.brand-text { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: #fff; }
.brand-accent { color: var(--primary); }

/* Search Bar */
.nav-search { flex: 1; max-width: 450px; margin: 0 40px; }
.search-wrap {
    display: flex; align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4px 6px 4px 18px;
    transition: var(--transition);
}
.search-wrap:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}
.search-wrap input {
    background: transparent; border: none; outline: none;
    color: #fff; flex: 1; font-size: 14px; padding: 10px 0;
}
.search-btn {
    background: var(--primary); color: #fff; border: none;
    border-radius: 10px; padding: 8px 20px; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: var(--transition);
}
.search-btn:hover { background: var(--secondary); transform: translateY(-1px); }

/* Nav Links */
.nav-link {
    color: var(--text-dim) !important;
    font-weight: 600; font-size: 14px;
    padding: 10px 18px !important;
    border-radius: 12px;
    transition: var(--transition);
}
.nav-link:hover, .nav-item.active .nav-link {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

/* ===================== HERO SECTION ===================== */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 10px 24px; border-radius: 100px;
    color: var(--primary); font-size: 14px; font-weight: 700;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 88px);
    line-height: 0.95; letter-spacing: -0.05em;
    margin-bottom: 32px;
}

.hero p {
    font-size: 20px; color: var(--text-dim);
    max-width: 600px; margin-bottom: 48px;
}

.hero-btns { display: flex; gap: 20px; }

/* Visual Hero Elements */
.hero-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.visual-blob {
    position: absolute; width: 400px; height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    filter: blur(80px); opacity: 0.2; border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}
.hero-mockup {
    position: relative; z-index: 2;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

/* ===================== BUTTONS ===================== */
.btn {
    padding: 14px 32px; border-radius: var(--radius-md);
    font-weight: 700; font-size: 16px;
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; border: none;
    box-shadow: 0 10px 30px -5px var(--primary-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px -5px var(--primary-glow); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #fff; border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--primary); transform: translateY(-3px); }

/* ===================== PROJECT CARDS ===================== */
.project-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%; display: flex; flex-direction: column;
}
.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.card-img-wrap { position: relative; height: 240px; overflow: hidden; background: #000; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--transition); }
.project-card:hover .card-img-wrap img { transform: scale(1.1); }

.card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(9, 14, 26, 0.9), transparent);
    padding: 24px; display: flex; align-items: flex-end; opacity: 0;
    transition: var(--transition);
}
.project-card:hover .card-overlay { opacity: 1; }

.card-body { padding: 32px; flex: 1; }
.card-tag { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--primary); letter-spacing: 0.1em; margin-bottom: 12px; display: block; }
.card-title { font-size: 20px; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.card-desc { color: var(--text-dim); font-size: 15px; margin-bottom: 24px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.card-footer {
    padding: 24px 32px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.card-price { font-size: 18px; font-weight: 800; color: #fff; }

/* ===================== CATEGORY CARDS ===================== */
.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center; transition: var(--transition);
}
.category-card:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: var(--primary);
    transform: translateY(-10px);
}
.cat-icon-box {
    width: 64px; height: 64px; border-radius: 16px;
    margin: 0 auto 24px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; background: rgba(99, 102, 241, 0.1); color: var(--primary);
    transition: var(--transition);
}
.category-card:hover .cat-icon-box { transform: scale(1.1) rotate(5deg); background: var(--primary); color: #fff; }

/* ===================== MEGA DROPDOWN ===================== */
.mega-menu {
    width: 650px; padding: 32px; border-radius: var(--radius-lg);
    background: rgba(9, 14, 26, 0.98); backdrop-filter: blur(40px);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
    margin-top: 15px !important;
}
.mega-col-title { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--primary); letter-spacing: 0.2em; margin-bottom: 24px; display: block; }

/* ===================== FOOTER ===================== */
.site-footer {
    background: #04070e;
    border-top: 1px solid var(--border);
    padding: 100px 0 40px;
}
.footer-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 32px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-link { color: var(--text-dim); margin-bottom: 12px; display: block; font-size: 15px; }
.footer-link:hover { color: #fff; transform: translateX(5px); }

/* ===================== AUTH PAGES ===================== */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 80px 20px;
    position: relative; overflow: hidden;
    z-index: 1;
}
.auth-page .visual-blob { opacity: 0.1; filter: blur(120px); pointer-events: none; position: absolute; z-index: -1; }

.auth-card {
    background: #0d1221; 
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 60px; width: 100%; max-width: 500px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative; z-index: 1000;
    pointer-events: auto !important;
}

.auth-card * {
    position: relative;
    z-index: 1001;
    pointer-events: auto !important;
}

.auth-card::before {
    content: ''; position: absolute; inset: -1px;
    border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent, rgba(99,102,241,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
    z-index: 999;
}

.auth-floating-element {
    position: absolute; width: 120px; height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px; opacity: 0.05;
    z-index: -1; pointer-events: none;
    animation: float 10s ease-in-out infinite;
}
.auth-floating-1 { top: 15%; right: 15%; animation-delay: 0s; }
.auth-floating-2 { bottom: 15%; left: 10%; width: 80px; height: 80px; animation-delay: -5s; }

.auth-logo { text-align: center; margin-bottom: 40px; pointer-events: auto; }

.form-label { font-size: 12px; font-weight: 800; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.1em; pointer-events: auto; }
.form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: #fff !important; padding: 16px 20px;
    transition: var(--transition);
    font-size: 15px;
    pointer-events: auto !important;
    position: relative;
    z-index: 1002;
    cursor: text !important;
}
.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.btn-primary {
    position: relative;
    z-index: 1003;
    pointer-events: auto !important;
}

.auth-divider {
    display: flex; align-items: center; gap: 20px;
    color: var(--text-muted); font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.25em;
    margin: 32px 0;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ===================== FORMS & INPUTS ===================== */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ===================== ALERTS ===================== */
.alert { border-radius: var(--radius-md); border: none; }
.alert-success { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.alert-danger { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

/* ===================== BLOG STYLES ===================== */
.blog-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
}

.blog-card-body p {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-single {
    padding: 80px 0;
}

.blog-content {
    color: var(--text-dim);
    font-size: 1.15rem;
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2, .blog-content h3 {
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

/* ===================== RATING INPUT ===================== */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.rating-input input:checked ~ label i::before {
    content: "\f586"; /* bi-star-fill */
}
.rating-input label:hover ~ label i::before,
.rating-input label:hover i::before {
    content: "\f586";
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* ===================== RESPONSIVE ===================== */
/* ===================== ADMIN DASHBOARD REIMAGINED ===================== */
:root {
    --admin-sidebar-width: 280px;
    --admin-bg: #070a13;
    --admin-card-bg: rgba(255, 255, 255, 0.03);
    --admin-accent: #6366f1;
    --admin-border: rgba(255, 255, 255, 0.08);
}

.admin-layout {
    display: flex; min-height: 100vh; background: var(--admin-bg); color: #fff;
}

/* Sidebar */
.admin-sidebar {
    width: var(--admin-sidebar-width);
    background: rgba(13, 18, 33, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--admin-border);
    padding: 32px 20px;
    display: flex; flex-direction: column;
    position: fixed; height: 100vh; z-index: 1000;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--admin-border) transparent;
}

.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-track { background: transparent; }
.admin-sidebar::-webkit-scrollbar-thumb { background: var(--admin-border); border-radius: 10px; }

.sidebar-brand { margin-bottom: 48px; padding: 0 12px; }

.admin-nav-group {
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--text-muted);
    margin: 32px 0 12px 12px;
}

.admin-nav-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 16px; border-radius: 12px;
    color: var(--text-dim); text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500; font-size: 14px;
    margin-bottom: 4px;
}

.admin-nav-item i { font-size: 18px; opacity: 0.7; }

.admin-nav-item:hover, .admin-nav-item.active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--admin-accent);
}

.admin-nav-item.active i { opacity: 1; color: var(--admin-accent); }

/* Main Content Area */
.admin-main {
    flex: 1; margin-left: var(--admin-sidebar-width);
    padding: 40px 48px;
}

.admin-topbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 48px;
}

/* Stats Grid */
.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px; margin-bottom: 40px;
}

.stat-card {
    background: var(--admin-card-bg);
    border: 1px solid var(--admin-border);
    border-radius: 24px; padding: 32px;
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-card .icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
}

.stat-card .value { font-size: 32px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.02em; }
.stat-card .label { color: var(--text-muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* Dashboard Tables & Cards */
.admin-card {
    background: var(--admin-card-bg);
    border: 1px solid var(--admin-border);
    border-radius: 24px; padding: 32px;
}

.table-glass { color: #fff; width: 100%; border-collapse: separate; border-spacing: 0 12px; }
.table-glass th { 
    background: transparent; border: none; color: var(--text-muted);
    font-size: 12px; font-weight: 800; text-transform: uppercase;
    padding: 12px 20px;
}
.table-glass td {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--admin-border);
    border-bottom: 1px solid var(--admin-border);
    padding: 16px 20px;
}
.table-glass td:first-child { border-left: 1px solid var(--admin-border); border-radius: 16px 0 0 16px; }
.table-glass td:last-child { border-right: 1px solid var(--admin-border); border-radius: 0 16px 16px 0; }

.status-badge {
    padding: 6px 12px; border-radius: 50px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.status-paid { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.status-pending { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.project-rank {
    width: 28px; height: 28px; background: rgba(255, 255, 255, 0.05);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; color: var(--admin-accent);
}

.text-dim { color: rgba(255, 255, 255, 0.6); }
.tiny { font-size: 11px; }
.tracking-wider { letter-spacing: 0.1em; }
.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }

@media (max-width: 1200px) {
    .admin-sidebar { 
        width: 80px; padding: 32px 10px; 
    }
    .sidebar-brand .brand-text, .admin-nav-item span, .admin-nav-group { display: none; }
    .admin-main { margin-left: 80px; padding: 30px; }
}

@media (max-width: 991px) {
    .main-navbar { border-radius: 0; width: 100%; margin: 0; top: 0; }
    .nav-search { display: none; }
    .hero h1 { font-size: 56px; }
    
    /* Mobile Sidebar as Drawer */
    .admin-sidebar {
        transform: translateX(-100%);
        width: 280px;
        transition: transform 0.3s ease;
    }
    .admin-sidebar.show {
        transform: translateX(0);
    }
    .admin-sidebar.show .sidebar-brand .brand-text, 
    .admin-sidebar.show .admin-nav-item span, 
    .admin-sidebar.show .admin-nav-group { 
        display: block; 
    }
    .admin-main { margin-left: 0; padding: 20px; }
    
    /* Responsive Tables */
    .data-table, .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-glass { min-width: 800px; }
}

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; text-align: center; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero h1 { font-size: 42px; }
    .hero p { margin-left: auto; margin-right: auto; }
    
    .section-padding { padding: 60px 0; }
    .auth-card { padding: 30px 20px; }
}

@media (max-width: 576px) {
    .brand-text { font-size: 20px; }
    .brand-icon { width: 32px; height: 32px; font-size: 16px; }
}
