/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #0052CC;
    --primary-gradient: linear-gradient(135deg, #0052CC 0%, #0747A6 100%);
    --secondary-color: #5E6C84;
    --background-color: #F4F5F7;
    --card-bg: #FFFFFF;
    --text-primary: #172B4D;
    --text-secondary: #5E6C84;
    --text-white: #FFFFFF;
    --border-color: #DFE1E6;
    --success-color: #36B37E;
    --error-color: #FF5630;
    --warning-color: #FFAB00;
    --hover-bg: #FAFBFC;
    --section-title: #091E42;
    --muted-text: #7A869A;
    
    /* Gradient Colors */
    --gradient-blue: linear-gradient(135deg, #0052CC 0%, #2684FF 100%);
    --gradient-green: linear-gradient(135deg, #36B37E 0%, #00875A 100%);
    --gradient-purple: linear-gradient(135deg, #6554C0 0%, #403294 100%);
    --gradient-orange: linear-gradient(135deg, #FF991F 0%, #FF8B00 100%);
    --gradient-pink: linear-gradient(135deg, #FF5630 0%, #DE350B 100%);
    --gradient-yellow: linear-gradient(135deg, #FFAB00 0%, #FF991F 100%);
    --gradient-red: linear-gradient(135deg, #FF5630 0%, #DE350B 100%);
    --gradient-teal: linear-gradient(135deg, #00B8D9 0%, #0087A6 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    
    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    color: var(--text-primary);
    line-height: var(--leading-normal);
    font-size: var(--text-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: var(--tracking-tight);
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-tight);
    color: var(--section-title);
}

.quick-icons-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
    color: var(--section-title);
    margin-bottom: 0.375rem;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: 1rem;
}

.icon-name {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
    text-align: center;
    margin-top: 0.25rem;
}

.icon-description {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    color: var(--text-secondary);
    text-align: center;
    line-height: var(--leading-snug);
}

.company-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
    color: var(--text-white);
}

.username {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
}

.member-id {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
    opacity: 0.8;
}

.package-badge {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-wide);
}

.wallet-number {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: var(--tracking-tight);
}

.wallet-balance {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: var(--tracking-tight);
    color: var(--text-primary);
}

/* Responsive Typography */
@media (max-width: 992px) {
    .quick-icons-title {
        font-size: calc(var(--text-lg) + 0.125rem);
    }

    .icon-name {
        font-size: var(--text-sm);
    }

    .icon-description {
        font-size: var(--text-xs);
    }

    .wallet-balance {
        font-size: var(--text-lg);
    }

    .wallet-number {
        font-size: calc(var(--text-xs) + 0.125rem);
    }
}

@media (max-width: 768px) {
    .quick-icons-title {
        font-size: var(--text-lg);
    }

    .section-subtitle {
        font-size: var(--text-sm);
    }

    .icon-name {
        font-size: calc(var(--text-xs) + 0.125rem);
    }

    .wallet-balance {
        font-size: calc(var(--text-base) + 0.125rem);
        margin-bottom: 0.25rem;
        letter-spacing: -0.01em;
    }

    .wallet-number {
        font-size: var(--text-xs);
        margin-bottom: 0.125rem;
    }
}

@media (max-width: 480px) {
    .quick-icons-title {
        font-size: calc(var(--text-base) + 0.125rem);
    }

    .section-subtitle {
        font-size: var(--text-xs);
    }

    .icon-name {
        font-size: var(--text-xs);
    }

    .wallet-balance {
        font-size: calc(var(--text-sm) + 0.125rem);
        margin-bottom: 0.25rem;
    }

    .wallet-number {
        font-size: calc(var(--text-xs) - 0.0625rem);
    }
}

@media (max-width: 360px) {
    .icon-name {
        font-size: calc(var(--text-xs) - 0.125rem);
    }

    .wallet-balance {
        font-size: var(--text-sm);
        margin-bottom: 0.125rem;
    }

    .wallet-number {
        font-size: calc(var(--text-xs) - 0.125rem);
    }
}

/* Top Blue Section */
.blue-section {
    background: var(--primary-gradient);
    min-height: 200px;
    padding: 0.75rem 1rem 4rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
    margin-top: 0;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
}

.blue-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Top Navigation */
.top-nav {
    background: transparent;
    padding: 0.5rem 0;
    color: var(--text-white);
    font-weight: 500;
}

.company-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 20px;
}

.company-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.country-selector {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.35rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.country-selector img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Balance Section */
.balance-section {
    color: var(--text-white);
    padding: 1rem 0;
    margin-bottom: 0.5rem;
}

.balance-details {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

.user-info {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.user-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: auto;
    white-space: nowrap;
}

.package-badge i {
    font-size: 13px;
    color: #FFD700;
}

/* Main Content Area */
.main-content {
    background-color: var(--background-color);
    border-radius: 24px 24px 0 0;
    position: relative;
    z-index: 1;
    padding: 6rem 1rem 5rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.75rem;
    margin: 0.5rem 0 1rem;
    padding: 0 0.75rem;
    flex-wrap: wrap;
}

.action-button {
    flex: 1;
    min-width: calc(33.333% - 0.5rem);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: var(--text-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 14px;
    letter-spacing: -0.01em;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.action-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.action-button i {
    font-size: 16px;
}

/* Quick Actions */
.quick-actions {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FB 100%);
    border-radius: 20px;
    padding: 1rem;
    margin: 0 0.75rem;
    margin-top: -145px;
    margin-bottom: 1.25rem;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 -8px 24px -8px rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 0.25rem;
}

.action-item {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.03),
        0 6px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.action-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 82, 204, 0.15);
}

.wallet-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.action-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.action-icon i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Gradient backgrounds for wallet icons */
.gradient-blue {
    background: linear-gradient(135deg, #2684FF 0%, #0052CC 100%);
    box-shadow: 
        0 8px 16px -4px rgba(38, 132, 255, 0.3),
        0 4px 8px -2px rgba(38, 132, 255, 0.2);
}

.gradient-purple {
    background: linear-gradient(135deg, #9F7AEA 0%, #6B46C1 100%);
    box-shadow: 
        0 8px 16px -4px rgba(159, 122, 234, 0.3),
        0 4px 8px -2px rgba(159, 122, 234, 0.2);
}

.gradient-gold {
    background: linear-gradient(135deg, #F6E05E 0%, #D69E2E 100%);
    box-shadow: 
        0 8px 16px -4px rgba(246, 224, 94, 0.3),
        0 4px 8px -2px rgba(246, 224, 94, 0.2);
}

.gradient-emerald {
    background: linear-gradient(135deg, #48BB78 0%, #2F855A 100%);
    box-shadow: 
        0 8px 16px -4px rgba(72, 187, 120, 0.3),
        0 4px 8px -2px rgba(72, 187, 120, 0.2);
}

.action-item:hover .action-icon {
    transform: translateY(-2px);
}

.action-item:hover .gradient-blue {
    box-shadow: 
        0 12px 24px -6px rgba(38, 132, 255, 0.4),
        0 6px 12px -3px rgba(38, 132, 255, 0.3);
}

.action-item:hover .gradient-purple {
    box-shadow: 
        0 12px 24px -6px rgba(159, 122, 234, 0.4),
        0 6px 12px -3px rgba(159, 122, 234, 0.3);
}

.action-item:hover .gradient-gold {
    box-shadow: 
        0 12px 24px -6px rgba(246, 224, 94, 0.4),
        0 6px 12px -3px rgba(246, 224, 94, 0.3);
}

.action-item:hover .gradient-emerald {
    box-shadow: 
        0 12px 24px -6px rgba(72, 187, 120, 0.4),
        0 6px 12px -3px rgba(72, 187, 120, 0.3);
}

.wallet-content {
    flex: 1;
}

.wallet-change {
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
    background: rgba(54, 179, 126, 0.1);
    color: var(--success-color);
    box-shadow: 0 2px 4px rgba(54, 179, 126, 0.1);
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .actions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.625rem;
    }

    .wallet-balance {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .action-buttons {
        margin: 0.375rem 0 0.75rem;
        padding: 0 0.5rem;
    }

    .quick-actions {
        margin-top: -140px;
        margin-bottom: 1rem;
        padding: 0.875rem;
    }

    .quick-icons {
        margin-top: 0.625rem;
    }

    .transaction-list {
        padding: 0.875rem 0.625rem;
        margin: 0.75rem 0;
    }

    .actions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.625rem;
    }

    .action-item {
        padding: 0.875rem;
    }

    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 14px;
    }

    .wallet-balance {
        font-size: 16px;
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 768px) {
    .action-buttons {
        gap: 0.5rem;
        margin: 0.375rem 0 0.75rem;
        padding: 0 0.5rem;
    }

    .quick-actions {
        margin-top: -140px;
        margin-bottom: 0.875rem;
        padding: 0.875rem;
    }

    .quick-icons {
        margin-top: 0.5rem;
    }

    .transaction-list {
        padding: 0.75rem 0.5rem;
        margin: 0.75rem 0;
    }

    .transaction-list .section-title {
        margin-bottom: 1rem;
    }

    .quick-actions-title {
        font-size: 18px;
        margin-bottom: 0.75rem;
    }

    .action-item {
        padding: 0.875rem;
        gap: 0.625rem;
    }

    .wallet-header {
        gap: 0.5rem;
    }

    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 14px;
    }

    .wallet-number {
        font-size: 12px;
        margin-bottom: 0.125rem;
    }

    .wallet-balance {
        font-size: 15px;
        margin-bottom: 0.25rem;
        letter-spacing: -0.01em;
    }

    .wallet-change {
        font-size: 11px;
        padding: 0.375rem 0.75rem;
    }

    .company-brand {
        gap: 0.5rem;
    }

    .company-logo {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .action-buttons {
        gap: 0.375rem;
        margin: 0.25rem 0 0.5rem;
        padding: 0 0.375rem;
    }

    .quick-actions {
        margin-top: -145px;
        margin-bottom: 0.75rem;
        padding: 0.75rem;
    }

    .quick-icons {
        margin-top: 0.375rem;
    }

    .transaction-list {
        padding: 0.625rem 0.375rem;
        margin: 0.75rem 0;
    }

    .transaction-list .section-title {
        margin-bottom: 0.875rem;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0;
    }

    .action-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .wallet-header {
        gap: 0.375rem;
    }

    .action-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 12px;
    }

    .wallet-number {
        font-size: calc(var(--text-xs) - 0.0625rem);
    }

    .wallet-balance {
        font-size: calc(var(--text-sm) + 0.125rem);
        margin-bottom: 0.25rem;
    }

    .wallet-change {
        font-size: 11px;
        padding: 0.375rem 0.75rem;
    }

    .company-brand {
        gap: 0.375rem;
    }

    .company-logo {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 360px) {
    .action-buttons {
        gap: 0.25rem;
        padding: 0 0.25rem;
    }

    .quick-actions {
        margin-top: -150px;
        margin-bottom: 0.625rem;
        padding: 0.625rem;
    }

    .quick-icons {
        margin-top: 0.25rem;
    }

    .transaction-list {
        padding: 0.5rem 0.25rem;
        margin: 0.25rem 0.25rem;
    }

    .transaction-list .section-title {
        margin-bottom: 0.25rem;
    }

    .actions-grid {
        gap: 0.375rem;
    }

    .action-item {
        padding: 0.625rem;
        gap: 0.375rem;
    }

    .wallet-header {
        gap: 0.25rem;
    }

    .action-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 10px;
    }

    .wallet-number {
        font-size: calc(var(--text-xs) - 0.125rem);
    }

    .wallet-balance {
        font-size: var(--text-sm);
        margin-bottom: 0.125rem;
    }

    .wallet-change {
        font-size: 10px;
        padding: 0.125rem 0.25rem;
        gap: 0.125rem;
    }

    .wallet-change i {
        font-size: 10px;
    }

    .scroll-hint {
        display: none;
    }

    .company-brand {
        gap: 0.25rem;
    }

    .company-logo {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 320px) {
    .action-buttons {
        gap: 0.25rem;
        padding: 0 0.125rem;
    }

    .quick-actions {
        padding: 0.625rem;
        margin: 0 0.125rem;
        margin-top: -90px;
        margin-bottom: 0.125rem;
    }

    .transaction-list {
        padding: 0.5rem;
        margin: 0.125rem 0.125rem;
    }

    .transaction-list .section-title {
        margin-bottom: 0.125rem;
    }

    .actions-grid {
        gap: 0.25rem;
    }

    .action-item {
        padding: 0.375rem;
        gap: 0.25rem;
    }

    .action-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 8px;
    }

    .wallet-number {
        font-size: 9px;
    }

    .wallet-balance {
        font-size: 13px;
        margin-bottom: 0.125rem;
    }

    .wallet-change {
        font-size: 9px;
        padding: 0.125rem 0.25rem;
    }

    .wallet-change i {
        font-size: 9px;
    }

    .quick-icons-title {
        font-size: 16px;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 12px;
        margin-bottom: 1rem;
    }

    .company-brand {
        gap: 0.25rem;
    }

    .company-logo {
        width: 24px;
        height: 24px;
    }
}

/* Promotions Section */
.promotions {
    padding: 1rem 0.75rem;
    margin-bottom: 0.75rem;
}

.promotions .section-title {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 0.5rem;
}

.promo-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(9, 30, 66, 0.08);
    transition: all 0.2s ease;
}

.promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 30, 66, 0.12);
}

.promo-card i {
    font-size: 24px;
    margin-bottom: 1rem;
    display: block;
}

.promo-card .card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.375rem 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.promo-card .card-subtitle {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Help Section */
.help-section {
    padding: 1rem 0.75rem;
    margin-bottom: 2rem;
}

.help-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    padding: 0 0.375rem;
}

.help-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding: 0 0.375rem;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.375rem;
}

.help-option {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(9, 30, 66, 0.08);
}

.help-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 30, 66, 0.12);
    border-color: rgba(0, 82, 204, 0.2);
}

.help-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--primary-gradient);
    color: white;
}

.help-option:last-child .help-icon {
    background: linear-gradient(135deg, #36B37E 0%, #00875A 100%);
}

.help-content {
    flex: 1;
}

.help-option-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.help-option-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Responsive Design for Help Section */
@media (max-width: 768px) {
    .help-section {
        padding: 0.75rem 0.375rem 3.5rem;
    }

    .help-title {
        font-size: 18px;
    }

    .help-subtitle {
        font-size: 13px;
        margin-bottom: 1.25rem;
    }

    .help-option {
        padding: 1rem;
    }

    .help-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .help-option-title {
        font-size: 14px;
    }

    .help-option-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .help-section {
        padding: 0.5rem 0.25rem 3rem;
    }

    .help-options {
        grid-template-columns: 1fr;
        gap: 0.375rem;
        padding: 0 0.125rem;
    }

    .help-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .help-title,
    .help-subtitle {
        padding: 0 0.125rem;
    }
}

/* Transaction List */
.transaction-list {
    padding: 1rem 0.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.transaction-list .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0 0.125rem;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
}

.transaction-list .section-title .view-all {
    font-size: var(--text-sm);
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.transaction-list .section-title .view-all:hover {
    opacity: 0.8;
}

.transaction-items {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--card-bg);
    transition: all 0.2s ease;
    position: relative;
}

.transaction-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.transaction-item:hover {
    background: var(--hover-bg);
}

.transaction-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    position: relative;
    overflow: hidden;
}

.transaction-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.transaction-icon.credit {
    background: var(--gradient-green);
    box-shadow: 0 4px 12px rgba(54, 179, 126, 0.2);
}

.transaction-icon.debit {
    background: var(--gradient-red);
    box-shadow: 0 4px 12px rgba(255, 86, 48, 0.2);
}

.transaction-icon.pending {
    background: var(--gradient-yellow);
    box-shadow: 0 4px 12px rgba(255, 171, 0, 0.2);
}

.transaction-content {
    flex: 1;
}

.transaction-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.375rem;
}

.transaction-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: var(--text-base);
}

.transaction-amount {
    font-weight: 600;
    font-size: var(--text-base);
    font-family: var(--font-heading);
}

.transaction-amount.credit {
    color: var(--success-color);
}

.transaction-amount.debit {
    color: var(--error-color);
}

.transaction-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-date {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.transaction-status {
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.transaction-status.success {
    background: rgba(54, 179, 126, 0.1);
    color: var(--success-color);
}

.transaction-status.pending {
    background: rgba(255, 171, 0, 0.1);
    color: var(--warning-color);
}

@media (max-width: 992px) {
    .promotion-items-section {
        margin-bottom: 1.5rem;
    }

    .transaction-list {
        padding: 1.25rem 0.75rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .promotion-items-section {
        margin-bottom: 1.25rem;
    }

    .transaction-list {
        padding: 0.875rem 0.125rem;
        margin: 1.25rem 0;
    }

    .transaction-name {
        font-size: var(--text-sm);
    }

    .transaction-amount {
        font-size: var(--text-sm);
    }

    .transaction-date {
        font-size: var(--text-xs);
    }

    .transaction-status {
        font-size: calc(var(--text-xs) - 1px);
        padding: 0.25rem 0.375rem;
    }
}

@media (max-width: 480px) {
    .promotion-items-section {
        margin-bottom: 1rem;
    }

    .transaction-list {
        padding: 0.75rem 0.125rem;
        margin: 1rem 0;
    }

    .transaction-name {
        font-size: calc(var(--text-sm) - 1px);
    }

    .transaction-amount {
        font-size: calc(var(--text-sm) - 1px);
    }

    .transaction-date {
        font-size: calc(var(--text-xs) - 1px);
    }

    .transaction-status {
        font-size: calc(var(--text-xs) - 1px);
        padding: 0.125rem 0.375rem;
    }
}

/* Quick Icons */
.quick-icons {
    padding: 1rem 0.75rem;
    margin-bottom: 0.75rem;
    margin-top: 0.75rem;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0.5rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.icon-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.icon-circle i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.icon-item:hover .icon-circle {
    transform: translateY(-4px);
}

/* Gradient backgrounds for quick access icons */
.gradient-blue {
    background: var(--gradient-blue);
    box-shadow: 0 8px 16px -4px rgba(38, 132, 255, 0.3);
}

.gradient-purple {
    background: var(--gradient-purple);
    box-shadow: 0 8px 16px -4px rgba(101, 84, 192, 0.3);
}

.gradient-gold {
    background: var(--gradient-yellow);
    box-shadow: 0 8px 16px -4px rgba(255, 171, 0, 0.3);
}

.gradient-emerald {
    background: var(--gradient-green);
    box-shadow: 0 8px 16px -4px rgba(54, 179, 126, 0.3);
}

.gradient-rose {
    background: var(--gradient-pink);
    box-shadow: 0 8px 16px -4px rgba(255, 86, 48, 0.3);
}

.gradient-amber {
    background: var(--gradient-orange);
    box-shadow: 0 8px 16px -4px rgba(255, 153, 31, 0.3);
}

.gradient-cyan {
    background: var(--gradient-teal);
    box-shadow: 0 8px 16px -4px rgba(0, 184, 217, 0.3);
}

.gradient-indigo {
    background: linear-gradient(135deg, #4C51BF 0%, #6366F1 100%);
    box-shadow: 0 8px 16px -4px rgba(76, 81, 191, 0.3);
}

/* Promotion Items Section */
.promotion-items-section {
    padding: 1rem 0.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.promotion-items-section .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0 0.125rem;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
}

.promotion-items-wrapper {
    position: relative;
    padding: 0 0.125rem;
}

.promotion-items {
    display: flex;
    gap: 1rem;
    padding: 0.25rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    position: relative;
    z-index: 1;
}

.promotion-items::-webkit-scrollbar {
    display: none;
}

.promotion-item {
    min-width: 280px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    scroll-snap-align: start;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.promotion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.promotion-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.promo-gradient-1 {
    background: var(--gradient-purple);
}

.promo-gradient-2 {
    background: var(--gradient-blue);
}

.promo-gradient-3 {
    background: var(--gradient-green);
}

.promo-gradient-4 {
    background: var(--gradient-orange);
}

.promotion-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.promotion-item-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--text-base);
}

.promotion-item-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.promotion-item-tag {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: var(--text-xs);
    font-weight: 500;
    align-self: flex-start;
}

.scroll-hint {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    opacity: 0.8;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item i {
    font-size: 20px;
}

.nav-item:hover {
    background: var(--hover-bg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .icons-grid {
        gap: 1.25rem;
    }

    .icon-circle {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .icon-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 14px;
    }

    .promotion-items {
        gap: 0.75rem;
    }

    .promotion-item {
        min-width: 260px;
        padding: 1rem;
        gap: 0.875rem;
    }

    .promotion-item-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .bottom-nav {
        padding: 0.5rem 0.75rem;
    }

    .nav-item {
        font-size: 12px;
    }

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

    .company-brand {
        gap: 0.5rem;
    }

    .company-logo {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 0.25rem;
    }

    .icon-circle {
        width: 52px;
        height: 52px;
        font-size: 22px;
        border-radius: 14px;
    }

    .icon-name {
        font-size: calc(var(--text-xs) + 0.0625rem);
        margin-top: 0.375rem;
    }

    .promotion-item {
        min-width: 240px;
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .promotion-item-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .promotion-item-title {
        font-size: var(--text-sm);
    }

    .promotion-item-subtitle {
        font-size: var(--text-xs);
    }

    .bottom-nav {
        padding: 0.375rem 0.5rem;
    }

    .nav-item {
        font-size: 11px;
        padding: 0.375rem;
    }

    .nav-item i {
        font-size: 17px;
    }

    .company-brand {
        gap: 0.375rem;
    }

    .company-logo {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 360px) {
    .icons-grid {
        gap: 0.75rem;
    }

    .icon-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
    }

    .icon-name {
        font-size: 10px;
    }

    .icon-description {
        font-size: 9px;
    }

    .promotion-item {
        min-width: 220px;
        padding: 0.75rem;
        gap: 0.625rem;
    }

    .nav-item {
        font-size: 10.5px;
        padding: 0.25rem;
    }

    .nav-item i {
        font-size: 16px;
    }

    .company-brand {
        gap: 0.25rem;
    }

    .company-logo {
        width: 34px;
        height: 34px;
    }
}

/* Referral Section */
.referral-section {
    padding: 1rem 0.75rem;
    padding: 1.25rem 0.75rem;
    margin-bottom: 1.25rem;
}

.referral-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.referral-content {
    margin-top: 1rem;
}

.referral-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.referral-info {
    padding: 1.5rem;
}

.referral-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-item.text-end {
    text-align: right;
}

.stat-item.text-end .stat-value,
.stat-item.text-end .stat-label {
    text-align: right;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.referral-link-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-container {
    display: flex;
    gap: 0.5rem;
    background: var(--background-color);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.referral-link-input {
    flex: 1;
    border: none;
    background: none;
    padding: 0.5rem;
    color: var(--text-primary);
    font-size: var(--text-sm);
    font-family: var(--font-primary);
}

.copy-button {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background: var(--hover-bg);
    color: var(--primary-color);
}

.link-actions {
    display: flex;
    gap: 0.75rem;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 12px;
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-primary);
}

.action-btn:hover {
    background: var(--hover-bg);
}

.action-btn i {
    font-size: 16px;
}

.qr-btn {
    background: var(--primary-color);
    color: white;
    border: none;
}

.qr-btn:hover {
    background: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-1px);
}

.share-btn {
    background: var(--background-color);
}

.qr-code-container {
    padding: 2rem;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
}

.qr-code {
    width: 200px;
    height: 200px;
    background: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-code-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    letter-spacing: var(--tracking-wide);
}

@media (max-width: 768px) {
    .qr-code-text {
        font-size: calc(var(--text-xs) + 0.125rem);
    }
}

@media (max-width: 480px) {
    .qr-code-text {
        font-size: var(--text-xs);
    }
}

/* Section Spacing Standards */
.section-wrapper {
    margin-bottom: 0.5rem;
}

.section-title .view-all,
.promotion-items-section .section-title .view-all,
.transaction-list .section-title .view-all {
    font-size: var(--text-sm);
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.section-title .view-all:hover,
.promotion-items-section .section-title .view-all:hover,
.transaction-list .section-title .view-all:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .section-title,
    .transaction-list .section-title,
    .promotion-items-section .section-title {
        font-size: var(--text-base);
        margin-bottom: 0.375rem;
    }
}

@media (max-width: 480px) {
    .section-title,
    .transaction-list .section-title,
    .promotion-items-section .section-title {
        font-size: calc(var(--text-base) - 0.0625rem);
        margin-bottom: 0.25rem;
    }

    .section-title .view-all,
    .promotion-items-section .section-title .view-all,
    .transaction-list .section-title .view-all {
        font-size: var(--text-xs);
        padding: 0.25rem;
    }
}

@media (max-width: 360px) {
    .section-title,
    .transaction-list .section-title,
    .promotion-items-section .section-title {
        font-size: var(--text-sm);
        margin-bottom: 0.25rem;
    }
}

/* Bonus Section */
.bonus-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.bonus-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.2s ease;
}

.bonus-card:hover {
    transform: translateY(-2px);
}

.bonus-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bonus-type {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.bonus-amount {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
}

.bonus-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-progress .progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.bonus-progress .progress-bar {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.bonus-progress .progress-text {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .bonus-section {
        margin: 15px;
        padding: 20px;
    }
}

/* Notification Styles */
.notification-wrapper {
    position: relative;
}

.fa-bell {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    position: relative;
}

.fa-bell:not(.all-read)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
}

.notification-popup {
    display: none;
    position: absolute;
    top: 100%;
    right: -10px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 10px;
}

.notification-popup.show {
    display: block;
}

.notification-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.mark-all-read {
    background: none;
    border: none;
    color: #2196F3;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid #eee;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item.unread {
    background-color: #f0f7ff;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    color: white;
    font-size: 1.2rem;
}

.notification-content {
    flex: 1;
}

.notification-text {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.notification-time {
    color: #888;
    font-size: 0.85rem;
}

.notification-footer {
    padding: 12px 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.notification-footer a {
    color: #2196F3;
    text-decoration: none;
    font-size: 0.9rem;
}

.notification-footer a:hover {
    text-decoration: underline;
}

/* Gradient backgrounds for notification icons */
.gradient-blue {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.gradient-purple {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.gradient-gold {
    background: linear-gradient(135deg, #FFC107, #FFA000);
}

/* Login Page Styles */
.login-header {
    min-height: 280px;
    padding: 2rem 1.5rem 4rem;
    border-radius: 0 0 32px 32px;
    position: relative;
    overflow: hidden;
    margin-bottom: -3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.login-header-bg .circle-decoration:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -150px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    transform: rotate(-15deg);
}

.login-header-bg .circle-decoration:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    transform: rotate(30deg);
}

.dots-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.login-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.brand-logo {
    margin-bottom: 1.5rem;
}

.brand-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.login-main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

.login-content {
    padding: 0 1rem;
    background: var(--background-color);
    min-height: calc(100vh - 280px);
    position: relative;
    z-index: 3;
}

.login-form-container {
    max-width: 440px;
    margin: 0 auto;
    padding: 2rem 0;
}

.login-form-wrapper {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 -8px 24px -8px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-btn:hover {
    background: var(--hover-bg);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-btn i {
    font-size: 1.25rem;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

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

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: var(--card-bg);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.login-form .form-group {
    margin-bottom: 1.25rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
}

.password-label-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.forgot-password {
    color: var(--primary-color);
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.login-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--card-bg);
    transition: all 0.2s ease;
}

.login-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
    outline: none;
}

.login-form .form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1.125rem;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.toggle-password:hover {
    opacity: 1;
}

.remember-me {
    margin: 1.5rem 0;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox label {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.2s ease;
    color: white;
}

.custom-checkbox i {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

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

.custom-checkbox input[type="checkbox"]:checked + label i {
    opacity: 1;
    transform: scale(1);
}

.custom-checkbox span {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.login-submit-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 82, 204, 0.3);
}

.login-submit-btn i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.login-submit-btn:hover i {
    transform: translateX(4px);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .login-header {
        min-height: 240px;
        padding: 1.5rem 1rem 3rem;
    }

    .brand-logo img {
        width: 64px;
        height: 64px;
    }

    .login-main-title {
        font-size: 2rem;
    }

    .login-subtitle {
        font-size: 1rem;
    }

    .login-form-wrapper {
        padding: 1.5rem;
    }

    .social-btn {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .social-btn img,
    .social-btn i {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .login-header {
        min-height: 200px;
        padding: 1rem 0.75rem 2.5rem;
    }

    .brand-logo img {
        width: 56px;
        height: 56px;
    }

    .login-main-title {
        font-size: 1.75rem;
    }

    .login-subtitle {
        font-size: 0.875rem;
    }

    .login-form-wrapper {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .social-login {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-btn {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .divider::before,
    .divider::after {
        width: calc(50% - 80px);
    }

    .login-form .form-control {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        font-size: 0.875rem;
    }

    .input-icon {
        font-size: 1rem;
    }

    .toggle-password {
        font-size: 1rem;
    }

    .login-submit-btn {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
} 