/* ============================================
   MODERN DASHBOARD DESIGN SYSTEM
   Light Theme | Bootstrap 4 Compatible
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #f1f5f9;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.35s ease;
}

/* === GLOBAL RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* === AUTH PAGE LAYOUT === */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.auth-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}


.auth-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    animation: fadeInUp 0.6s ease;
}

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

/* === LEFT SECTION - BRANDING === */
.auth-brand-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-brand-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.auth-brand-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    z-index: 0;
}

.brand-content {
    position: relative;
    z-index: 1;
}

.brand-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.brand-logo {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
}

.brand-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* === RIGHT SECTION - FORM === */
.auth-form-section {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-primary);
}

.form-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 35px;
    text-align: left;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.form-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* === MODERN FORM STYLES === */
.auth-form {
    width: 100%;
}

.form-group-modern {
    margin-bottom: 24px;
    position: relative;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.label-icon {
    color: var(--text-muted);
}

.input-wrapper {
    position: relative;
}

.form-control-modern {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    font-size: 15px;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-control-modern::placeholder {
    color: var(--text-muted);
}

.form-control-modern:focus {
    background-color: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 5px;
    cursor: pointer;
    transition: color var(--transition-base);
}

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

.eye-icon {
    display: block;
}

/* === FORM OPTIONS === */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label {
    font-size: 14px;
    color: var(--text-secondary);
    user-select: none;
}

.forgot-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.forgot-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* === MODERN BUTTON === */
.btn-modern-primary {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    margin-bottom: 24px;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-modern-primary:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform var(--transition-base);
}

.btn-modern-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* === FORM FOOTER === */
.form-footer {
    text-align: center;
    margin-bottom: 24px;
}

.footer-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.footer-link {
    font-weight: 600;
    color: var(--primary-color);
}

.footer-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* === DIVIDER === */
.divider-section {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.divider-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.divider-text {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background: var(--bg-primary);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* === SOCIAL LOGIN BUTTONS === */
.social-login-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    height: 48px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.social-btn:hover {
    background: var(--bg-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991px) {
    .auth-card {
        grid-template-columns: 1fr;
    }
    
    .auth-brand-section {
        display: none;
    }
    
    .auth-form-section {
        padding: 50px 30px;
    }
}

@media (max-width: 576px) {
    .auth-page {
        padding: 20px 15px;
    }
    
    .auth-card {
        border-radius: var(--radius-lg);
    }
    
    .auth-form-section {
        padding: 40px 25px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .social-login-buttons {
        flex-direction: column;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}


/* === REGISTER PAGE SPECIFIC STYLES === */
.auth-card-register {
    min-height: 700px;
}

.stats-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* === VALIDATION MESSAGES === */
.validation-message {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    padding-left: 4px;
}

.validation-success {
    color: var(--success-color);
}

.validation-error {
    color: var(--danger-color);
}

/* === PASSWORD STRENGTH === */
.password-strength {
    margin-top: 10px;
}

.strength-indicator {
    width: 100%;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-bar {
    height: 100%;
    width: 0%;
    background: var(--text-muted);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.strength-text {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* === TERMS SECTION === */
.terms-section {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.terms-section .custom-checkbox {
    margin: 0;
}

.terms-section .checkbox-label {
    font-size: 13px;
    line-height: 1.6;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.inline-link:hover {
    color: var(--primary-dark);
}

/* === TRUST BADGES === */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.badge-item svg {
    color: var(--success-color);
}

/* === FOCUSED STATE === */
.form-group-modern.focused .form-label-modern {
    color: var(--primary-color);
}

.form-group-modern.focused .label-icon {
    color: var(--primary-color);
}

/* === RESPONSIVE ADJUSTMENTS FOR REGISTER === */
@media (max-width: 991px) {
    .auth-card-register {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .stats-wrapper {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .trust-badges {
        gap: 16px;
    }
    
    .badge-item {
        font-size: 11px;
    }
}


/* === DASHBOARD COMMON STYLES === */
/* (Add dashboard-specific styles here when you provide dashboard pages) */

/* ============================================
   PROFESSIONAL DASHBOARD DESIGN SYSTEM
   Modern Light Theme - No !important
   ============================================ */

/* === RESET FOR DASHBOARD === */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

/* === MODERN STATS CARD === */
.stats-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e8edf2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    border-color: transparent;
}

/* === CARD HEADER WITH GRADIENT === */
.stats-card-header {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.stats-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.95;
    z-index: 1;
}

/* Gradient Backgrounds */
.stats-card.purple .stats-card-header::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-card.cyan .stats-card-header::before {
    background: linear-gradient(135deg, #48c6ef 0%, #6f86d6 100%);
}

.stats-card.orange .stats-card-header::before {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}

.stats-card.green .stats-card-header::before {
    background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
}

.stats-card.pink .stats-card-header::before {
    background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
}

.stats-card.mint .stats-card-header::before {
    background: linear-gradient(135deg, #42e695 0%, #3bb2b8 100%);
}

.stats-card.blue .stats-card-header::before {
    background: linear-gradient(135deg, #66a6ff 0%, #89f7fe 100%);
}

.stats-card.peach .stats-card-header::before {
    background: linear-gradient(135deg, #fbc7a4 0%, #f79d65 100%);
}

/* === DECORATIVE PATTERN === */
.stats-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    z-index: 2;
    border-radius: 50%;
}

/* === CARD HEADER CONTENT === */
.card-header-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.stats-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.card-icon-wrapper i {
    font-size: 26px;
    color: #ffffff;
}

.card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
}

/* === CARD BODY === */
.stats-card-body {
    padding: 24px;
    background: #ffffff;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.stat-description {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-description svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* === CARD FOOTER === */
.stats-card-footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e8edf2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.stats-card:hover .stats-card-footer {
    background: #f1f5f9;
}

.footer-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.footer-value {
    font-size: 14px;
    color: #0f172a;
    font-weight: 600;
}

.badge-active {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.badge-active::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

/* === CLICKABLE CARDS === */
a.stats-card-link {
    text-decoration: none;
    display: block;
}

a.stats-card-link .stats-card {
    cursor: pointer;
}

a.stats-card-link .stats-card::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

a.stats-card-link .stats-card:hover::after {
    opacity: 1;
}

/* === RESPONSIVE GRID === */
@media (min-width: 1400px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .stat-value {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-card-header {
        padding: 20px;
    }
    
    .stats-card-body {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .card-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .card-icon-wrapper i {
        font-size: 22px;
    }
}

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

.stats-card {
    animation: fadeInUp 0.6s ease forwards;
}

.stats-card:nth-child(1) { animation-delay: 0.05s; }
.stats-card:nth-child(2) { animation-delay: 0.1s; }
.stats-card:nth-child(3) { animation-delay: 0.15s; }
.stats-card:nth-child(4) { animation-delay: 0.2s; }
.stats-card:nth-child(5) { animation-delay: 0.25s; }
.stats-card:nth-child(6) { animation-delay: 0.3s; }
.stats-card:nth-child(7) { animation-delay: 0.35s; }
.stats-card:nth-child(8) { animation-delay: 0.4s; }

/* === VALUE COUNTER ANIMATION === */
@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-value {
    animation: countUp 0.8s ease forwards;
}

/* === SHIMMER EFFECT ON HOVER === */
.stats-card-header {
    position: relative;
    overflow: hidden;
}

.stats-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    z-index: 4;
    transition: left 0.6s ease;
}

.stats-card:hover .stats-card-header::after {
    left: 200%;
}




/* ============================================
   HELP REQUESTS SECTION - MODERN DESIGN
   ============================================ */

/* === HELP CARDS CONTAINER === */
.help-requests-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

/* === GET HELP CARD === */
.help-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8edf2;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.3s ease;
}

.help-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* === CARD HEADER === */
.help-card-header {
    padding: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.help-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.help-card-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.help-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-card-title-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
}

.help-card-count {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

/* === PROVIDE HELP HEADER === */
.provide-help-card .help-card-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* === CARD BODY === */
.help-card-body {
    padding: 24px;
    max-height: 600px;
    overflow-y: auto;
}

.help-card-body::-webkit-scrollbar {
    width: 6px;
}

.help-card-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.help-card-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.help-card-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* === EMPTY STATE === */
.help-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.help-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #94a3b8;
}

.help-empty-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.help-empty-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* === REQUEST ITEM === */
.help-request-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
}

.help-request-item:last-child {
    margin-bottom: 0;
}

.help-request-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* === REQUEST HEADER === */
.request-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8edf2;
}

.request-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.request-user-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.provide-help-card .request-user-avatar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.request-user-details h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.request-user-id {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.request-amount-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.provide-help-card .request-amount-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
}

/* === INFO GRID === */
.request-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.request-info-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.request-info-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.request-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

/* === TIMER === */
.request-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff7ed;
    border: 2px solid #fed7aa;
    border-radius: 12px;
    margin-bottom: 20px;
}

.timer-icon {
    font-size: 20px;
}

.timer-content {
    flex: 1;
}

.timer-label {
    font-size: 11px;
    font-weight: 600;
    color: #9a3412;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.timer-value {
    font-size: 16px;
    font-weight: 700;
    color: #ea580c;
    font-variant-numeric: tabular-nums;
}

.timer-expired {
    background: #fef2f2;
    border-color: #fecaca;
}

.timer-expired .timer-label {
    color: #991b1b;
}

.timer-expired .timer-value {
    color: #dc2626;
}

/* === STATUS & ACTIONS === */
.request-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 2px solid #e8edf2;
}

.request-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.status-active {
    background: #ecfdf5;
    color: #059669;
}

.status-expired {
    background: #fef2f2;
    color: #dc2626;
}

.status-rejected {
    background: #fef2f2;
    color: #dc2626;
}

.request-action-buttons {
    display: flex;
    gap: 8px;
}

/* === BUTTONS === */
.help-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.help-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.help-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.help-btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.help-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.help-btn-secondary {
    background: #ffffff;
    color: #667eea;
    border: 2px solid #667eea;
}

.help-btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.help-btn-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.help-btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* === PROVIDE HELP SPECIFIC === */
.provide-bank-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e8edf2;
}

.provide-action-item {
    display: flex;
    flex-direction: column;
}

.provide-action-item form {
    width: 100%;
}

.provide-action-item .help-btn {
    width: 100%;
    justify-content: center;
}

.txn-display-box {
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #166534;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .help-requests-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .help-card-body {
        padding: 16px;
    }
    
    .help-request-item {
        padding: 16px;
    }
    
    .request-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .request-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .request-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .request-action-buttons {
        width: 100%;
    }
    
    .help-btn {
        flex: 1;
    }
    
    .provide-bank-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .help-requests-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .help-card-header {
        padding: 20px;
    }
    
    .help-card-title {
        font-size: 16px;
    }
}

/* ============================================
   COMPACT TIMER SECTION - 4 TIMERS
   ============================================ */

.compact-timer-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    border: 1px solid #e8edf2;
}

/* === TIMER GRID - 2x2 LAYOUT === */
.timers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* === COMPACT TIMER CARD === */
.compact-timer-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e8edf2;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.compact-timer-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

/* === TIMER HEADER === */
.timer-card-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.timer-label {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === TIMER DISPLAY ROW === */
.timer-display-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* === TIME UNIT === */
.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 60px;
}

.enhanced-time-count {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enhanced-time-label {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === TIME SEPARATOR === */
.time-separator {
    font-size: 28px;
    font-weight: 800;
    color: #cbd5e1;
    line-height: 1;
    margin: 0 4px;
    animation: blink-separator 1.5s ease-in-out infinite;
}

@keyframes blink-separator {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* === READY BADGE === */
.timer-ready-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 12px;
    color: #059669;
    font-size: 16px;
    font-weight: 700;
}

.timer-ready-badge svg {
    flex-shrink: 0;
}

/* === INACTIVE STATE === */
.timer-inactive-state {
    text-align: center;
    padding: 60px 32px;
}

.inactive-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: rotate-icon 3s linear infinite;
}

@keyframes rotate-icon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.inactive-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.inactive-text {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* === COMPLETE STATE === */
.timer-complete-state {
    text-align: center;
    padding: 60px 32px;
}

.complete-check {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    animation: check-bounce 0.6s ease;
}

@keyframes check-bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.complete-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.complete-text {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .timers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .compact-timer-wrapper {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .timers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .compact-timer-card {
        padding: 18px;
    }
    
    .enhanced-time-count {
        font-size: 28px;
    }
    
    .time-separator {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .compact-timer-wrapper {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .compact-timer-card {
        padding: 16px;
    }
    
    .time-unit {
        min-width: 50px;
    }
    
    .enhanced-time-count {
        font-size: 24px;
    }
    
    .enhanced-time-label {
        font-size: 9px;
    }
    
    .time-separator {
        font-size: 20px;
        margin: 0 2px;
    }
    
    .timer-label {
        font-size: 12px;
    }
}

/* === MAIN FONT === */
.main-font {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}



/* ============================================
   BOOSTER REWARDS SECTION
   ============================================ */

.booster-rewards-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    border: 1px solid #e8edf2;
    margin-top: 24px;
}

/* === SECTION HEADER === */
.booster-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.header-content {
    flex: 1;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.section-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.overall-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #ffffff;
}

.progress-label {
    font-size: 13px;
    font-weight: 600;
}

.progress-value {
    font-size: 20px;
    font-weight: 800;
}

/* === BOOSTER CARDS GRID === */
.booster-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* === BOOSTER CARD === */
.booster-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e8edf2;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cbd5e1 0%, #94a3b8 100%);
    transition: background 0.3s ease;
}

.booster-card.active {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.booster-card.active::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.booster-card.completed {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
}

.booster-card.completed::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.booster-card.locked {
    opacity: 0.6;
}

.booster-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

/* === CARD HEADER === */
.booster-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.booster-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.booster-card.completed .booster-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.booster-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-active {
    background: #dbeafe;
    color: #1e40af;
}

.badge-completed {
    background: #d1fae5;
    color: #065f46;
}

.badge-locked {
    background: #f1f5f9;
    color: #64748b;
}

/* === REFERRAL STATS === */
.referral-stats {
    margin-bottom: 16px;
}

.stats-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stats-numbers {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.current-count {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.count-separator {
    font-size: 24px;
    font-weight: 600;
    color: #cbd5e1;
}

.target-count {
    font-size: 20px;
    font-weight: 700;
    color: #94a3b8;
}

.stats-remaining {
    font-size: 13px;
    color: #f59e0b;
    font-weight: 600;
}

/* === BUSINESS INFO === */
.business-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.business-info svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* === COUNTDOWN BOX === */
.countdown-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.countdown-box.completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* === PROGRESS BAR === */
.booster-progress-bar {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.booster-card.completed .progress-bar-fill {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

/* === RESPONSIVE === */
@media (max-width: 1400px) {
    .booster-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .booster-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .booster-section-header {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .booster-rewards-section {
        padding: 24px 20px;
    }
    
    .booster-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .booster-card {
        padding: 20px;
    }
    
    .current-count {
        font-size: 28px;
    }
    
    .target-count {
        font-size: 18px;
    }
}


/* ============================================
   NEWS TICKER - MODERN DESIGN
   ============================================ */

.news-ticker-wrapper {
    margin-bottom: 24px;
    animation: slideDown 0.5s ease;
}

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

.news-ticker-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e8edf2;
    border-left: 4px solid #667eea;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.news-ticker-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* === NEWS ICON === */
.news-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.news-icon svg {
    width: 18px;
    height: 18px;
}

.news-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === NEWS CONTENT === */
.news-content-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.news-content {
    display: flex;
    gap: 80px;
    animation: scroll-news 25s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-news {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.news-content:hover {
    animation-play-state: paused;
}

.news-text {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    display: inline-block;
}

.news-text::before {
    content: '•';
    color: #667eea;
    margin-right: 12px;
    font-size: 18px;
}

/* === CLOSE BUTTON === */
.news-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.news-close:hover {
    background: #fee2e2;
    color: #dc2626;
    transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .news-ticker-container {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .news-icon {
        padding: 6px 12px;
    }
    
    .news-label {
        display: none;
    }
    
    .news-text {
        font-size: 14px;
    }
    
    .news-content {
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .news-ticker-container {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .news-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .news-text {
        font-size: 13px;
    }
}

/* === ALTERNATIVE STYLES (Optional) === */

/* Variant 1: Alert Style */
.news-ticker-container.alert-style {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.news-ticker-container.alert-style .news-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Variant 2: Success Style */
.news-ticker-container.success-style {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left-color: #10b981;
}

.news-ticker-container.success-style .news-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Variant 3: Info Style */
.news-ticker-container.info-style {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left-color: #3b82f6;
}

.news-ticker-container.info-style .news-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}


/* ============================================
   DASHBOARD HEADER SECTION
   ============================================ */

.dashboard-header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 32px 40px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
}

.dashboard-header-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.dashboard-header-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* === HEADER LEFT === */
.header-left {
    flex: 1;
    position: relative;
    z-index: 1;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.welcome-badge svg {
    width: 18px;
    height: 18px;
}

.dashboard-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* === HEADER RIGHT === */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* === BREADCRUMB NAV === */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffffff;
    transform: translateX(-2px);
}

.breadcrumb-link svg {
    width: 14px;
    height: 14px;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-separator svg {
    width: 14px;
    height: 14px;
}

.breadcrumb-active {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

/* === QUICK STATS MINI === */
.quick-stats-mini {
    display: flex;
    gap: 12px;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-stat-icon {
    font-size: 18px;
}

.mini-stat-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .dashboard-header-section {
        flex-direction: column;
        gap: 24px;
        padding: 28px 32px;
    }
    
    .header-right {
        width: 100%;
        align-items: flex-start;
    }
    
    .breadcrumb-nav {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .dashboard-header-section {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .dashboard-title {
        font-size: 26px;
    }
    
    .dashboard-subtitle {
        font-size: 14px;
    }
    
    .breadcrumb-nav {
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .dashboard-header-section {
        padding: 20px 16px;
    }
    
    .dashboard-title {
        font-size: 22px;
    }
    
    .welcome-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .breadcrumb-link {
        font-size: 13px;
    }
    
    .breadcrumb-active {
        font-size: 13px;
    }
    
    .quick-stats-mini {
        width: 100%;
    }
    
    .mini-stat {
        flex: 1;
        justify-content: center;
    }
}


/* ============================================
   REGISTRATION SUCCESS PAGE
   ============================================ */

/* === SUCCESS CARD === */
.success-card {
    background: #ffffff;
    border-radius: 32px;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: successSlideUp 0.6s ease;
}

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

/* === SUCCESS HEADER === */
.success-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 48px 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.success-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 4px solid rgba(255, 255, 255, 0.4);
    animation: checkmarkPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0) rotate(-180deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.success-checkmark svg {
    color: #ffffff;
    stroke-width: 3;
}

.success-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.success-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
}

/* === SUCCESS BODY === */
.success-body {
    padding: 40px;
}

/* === WELCOME MESSAGE === */
.welcome-message {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 4px solid #10b981;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.message-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.message-text {
    font-size: 15px;
    line-height: 1.7;
    color: #065f46;
    margin: 0;
}

.message-text strong {
    color: #047857;
    font-weight: 700;
}

/* === CREDENTIALS SECTION === */
.credentials-section {
    margin-bottom: 32px;
}

.credentials-title {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.credential-card {
    background: #f8fafc;
    border: 2px solid #e8edf2;
    border-radius: 16px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.credential-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.credential-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.credential-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.credential-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credential-value {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #64748b;
}

.copy-btn:hover {
    background: #667eea;
    color: #ffffff;
    transform: scale(1.1);
}

/* === SECURITY NOTICE === */
.security-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
}

.security-notice svg {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-notice span {
    font-size: 13px;
    color: #92400e;
    font-weight: 500;
    line-height: 1.6;
}

/* === ACTION BUTTONS === */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-proceed {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-proceed:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-proceed svg {
    transition: transform 0.3s ease;
}

.btn-proceed:hover svg {
    transform: translateX(4px);
}

.btn-home {
    width: 100%;
    padding: 14px 24px;
    background: #f8fafc;
    color: #475569;
    border: 2px solid #e8edf2;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #ffffff;
    border-color: #667eea;
    color: #667eea;
    text-decoration: none;
}

/* === CONFETTI ANIMATION === */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #10b981;
    opacity: 0.8;
    animation: confettiFall 3s ease-out infinite;
}

.confetti:nth-child(1) {
    left: 10%;
    background: #10b981;
    animation-delay: 0s;
}

.confetti:nth-child(2) {
    left: 20%;
    background: #3b82f6;
    animation-delay: 0.2s;
}

.confetti:nth-child(3) {
    left: 30%;
    background: #f59e0b;
    animation-delay: 0.4s;
}

.confetti:nth-child(4) {
    left: 50%;
    background: #ec4899;
    animation-delay: 0.6s;
}

.confetti:nth-child(5) {
    left: 60%;
    background: #8b5cf6;
    animation-delay: 0.8s;
}

.confetti:nth-child(6) {
    left: 70%;
    background: #ef4444;
    animation-delay: 1s;
}

.confetti:nth-child(7) {
    left: 80%;
    background: #06b6d4;
    animation-delay: 1.2s;
}

.confetti:nth-child(8) {
    left: 90%;
    background: #84cc16;
    animation-delay: 1.4s;
}

@keyframes confettiFall {
    0% {
        top: -10%;
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: rotate(720deg);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .success-card {
        border-radius: 24px;
    }
    
    .success-header {
        padding: 40px 24px 32px;
    }
    
    .success-checkmark {
        width: 100px;
        height: 100px;
    }
    
    .success-checkmark svg {
        width: 64px;
        height: 64px;
    }
    
    .success-title {
        font-size: 26px;
    }
    
    .success-body {
        padding: 32px 24px;
    }
    
    .welcome-message {
        padding: 20px;
    }
    
    .message-icon {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .success-header {
        padding: 32px 20px 28px;
    }
    
    .success-checkmark {
        width: 80px;
        height: 80px;
    }
    
    .success-checkmark svg {
        width: 56px;
        height: 56px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-body {
        padding: 28px 20px;
    }
    
    .credential-item {
        flex-wrap: wrap;
    }
    
    .credential-value {
        font-size: 14px;
    }
}


/* === CENTER NAVIGATION MENU === */
#topnav .topbar-menu {
    display: flex;
    justify-content: center;
}

#topnav .navigation-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === UPDATE ICON STYLES === */
.navigation-menu > li > a i {
    font-size: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Keep dropdown arrow on right side */
.navigation-menu > li > a .arrow-down {
    margin-left: auto;
}

/* === SPECIFIC ICON REPLACEMENTS === */
/* Home Icon */
.navigation-menu > li:nth-child(1) > a i.mdi-home::before {
    content: "\F02DC"; /* mdi-home-variant */
}

/* Settings Icon */
.navigation-menu > li:nth-child(2) > a i.mdi-account-outline::before {
    content: "\F0493"; /* mdi-cog */
}

/* Links Icon */
.navigation-menu > li:nth-child(3) > a i.mdi-package-variant-closed::before {
    content: "\F0337"; /* mdi-link-variant */
}

/* Pins Section Icon */
.navigation-menu > li:nth-child(4) > a i.mdi-package-variant-closed::before {
    content: "\F0538"; /* mdi-credit-card-multiple */
}

/* Team Section Icon */
.navigation-menu > li:nth-child(5) > a i.mdi-account-group-outline::before {
    content: "\F0150"; /* mdi-account-group */
}

/* Logout Icon */
.navigation-menu > li:last-child > a i.mdi-logout::before {
    content: "\F0343"; /* mdi-logout-variant */
}

/* === RESPONSIVE: Keep centered on all screens === */
@media (max-width: 992px) {
    #topnav .topbar-menu {
        justify-content: flex-start;
    }
    
    #topnav .navigation-menu {
        justify-content: flex-start;
    }
}
