/* ========================================
   SEDAMIX - MAIN STYLESHEET (DARK THEME)
   All consolidated styles for dark theme UI
   Modern, Minimal, Fully Responsive
   ======================================== */

/* ========================================
   0. CSS VARIABLES & ROOT
   ======================================== */

:root {
    /* Colors */
    --primary-color: #FF9700;
    --secondary-color: #E61D71;
    --bg-body: #0f172a;
    --bg-card-bg-100: #3F1F71;
    --bg-body-bg-100: #3F1F71;
    --text-white: #f8fafc;
    --text-paragraph-color-100: #94a3b8;
    --border-color-100: rgba(255, 255, 255, 0.1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   1. BASE & LAYOUT STYLES
   ======================================== */

/* Base Layout */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #1e0f35;
    color: var(--text-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Dropdown Menu */
.dropdown-menu {
    background: var(--bg-card-bg-100);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-xs) 0;
    margin-top: var(--spacing-xs);
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: var(--text-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 15px;
    transition: all var(--transition-base);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.dropdown-item i {
    width: 20px;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}

.btn.dropdown-toggle::after {
    margin-right: 8px;
}

/* Footer */
.footer-area {
    margin-top: auto;
}

/* Favorite Button Animation */
.favorite-icon {
    position: relative;
    display: inline-block;
}

.favorite-icon .full {
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-base) ease;
}

.favorite-icon.active .full {
    opacity: 1;
    transform: scale(1);
}

.favorite-button {
    cursor: pointer;
    transition: transform var(--transition-fast) ease;
}

.favorite-button:hover {
    transform: scale(1.1);
}

.favorite-button:active {
    transform: scale(0.95);
}

/* RTL Adjustments */
.rtl .btn i {
    margin-left: 0;
    margin-right: 0;
}


/* ========================================
   2. ARTIST DASHBOARD & SIDEBAR
   ======================================== */

.dashboard-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px var(--spacing-sm);
    gap: var(--spacing-sm);
    box-sizing: border-box;
}

.sidebar {
    background: #3F1F71;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: fit-content;
    position: sticky;
    top: var(--spacing-sm);
}

/* Toggle Button (Mobile Only) */
.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: var(--rounded-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.sidebar-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.sidebar-toggle i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Close Button (Mobile Only) */
.sidebar-close {
    display: none;
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    font-size: 22px;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 1001;
    box-shadow: var(--shadow-md);
}

.sidebar-close:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Overlay (Mobile Only) */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    font-size: 32px;
    color: white;
    font-weight: bold;
}

.sidebar-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 32px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.artist-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 10px;
}

.sidebar-name {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.sidebar-phone {
    color: var(--text-paragraph-color-100);
    font-size: 13px;
    direction: ltr;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--text-paragraph-color-100);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-size: 15px;
}

.sidebar-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
}

.sidebar-menu a.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-menu a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.sidebar-menu a.logout {
    color: #ef4444;
}

.sidebar-menu a.logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

.main-content {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: calc(1200px - 280px - 20px);
}


/* ========================================
   3. AUTHENTICATION PAGES
   ======================================== */

.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.auth-card {
    background: var(--bg-card-bg-100);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 100%;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    color: var(--text-white);
    font-size: 28px;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-paragraph-color-100);
    font-size: 16px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-body-bg-100);
    border: 2px solid var(--border-color-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph-color-100);
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
}

.step-line {
    width: 50px;
    height: 2px;
    background: var(--border-color-100);
}


/* ========================================
   4. FORM ELEMENTS
   ======================================== */

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.form-group textarea,
.form-group select,
.form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
    font-size: 16px;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-control::placeholder {
    color: var(--text-paragraph-color-100);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input[type="file"] {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 2px dashed rgba(255,255,255,0.2);
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
}

.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.help-text {
    font-size: 12px;
    color: var(--text-paragraph-color-100);
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-hover-color);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* ========================================
   5. ALERTS & MESSAGES
   ======================================== */

.alert {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    display: none;
    text-align: center;
}

.alert.show {
    display: block;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert-info {
    background: rgba(23,162,184,0.2);
    border: 1px solid rgba(23,162,184,0.3);
    color: #17a2b8;
}


/* ========================================
   6. CARDS & CONTAINERS
   ======================================== */

.card {
    background: var(--bg-card-bg-100);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-sm);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: var(--spacing-md);
    color: var(--text-white);
}

.card-body {
    padding: var(--spacing-md);
    color: var(--text-white);
}

.profile-card {
    background: var(--bg-card-bg-100);
    border-radius: var(--radius-xl);
    padding: calc(var(--spacing-xl) + 10px);
    box-shadow: var(--shadow-lg);
}

.profile-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.profile-header h2 {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}


/* ========================================
   7. TRACK UPLOAD & FORMS
   ======================================== */

.upload-container {
    background: var(--bg-card-bg-100);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base) ease;
}

.form-section:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) 1;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.section-title i {
    font-size: 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group label::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):hover,
.form-group textarea:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), inset 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}


/* ========================================
   8. TRACK DETAIL & MUSIC PAGES
   ======================================== */

.track-detail-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.track-header {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.track-cover {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.track-info {
    color: #fff;
}

.track-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.track-artist {
    font-size: 1.5rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.track-artist a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.track-artist a:hover {
    color: var(--secondary-color);
}

.track-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 1.1rem;
}

.stat-item i {
    color: var(--primary-color);
}

.track-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.tag-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.audio-player {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.audio-player audio {
    width: 100%;
    height: 54px;
    border-radius: 10px;
}

.track-description {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: #ddd;
    line-height: 1.8;
    border: 1px solid rgba(255,255,255,0.1);
}

.related-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.track-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,255,255,0.2);
}

.track-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.track-card-body {
    padding: 1rem;
    color: #fff;
}

.track-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-card-artist {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.track-card-stats {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.85rem;
}


/* ========================================
   9. RATING SYSTEM
   ======================================== */

.rating-section {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.star-rating {
    display: inline-flex;
    gap: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
    direction: ltr;
}

.star {
    color: #ddd;
    transition: all 0.2s;
}

.star.active,
.star:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.star.filled {
    color: #ffd700;
}

.rating-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.average-rating {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
}

/* ========================================
   16. ADDITIONAL RESPONSIVE IMPROVEMENTS
   ======================================== */

/* Tablet Responsive */
@media (max-width: 992px) {
    .auth-card {
        padding: 30px;
    }
    
    .track-cover,
    .album-cover,
    .playlist-cover {
        max-width: 250px;
        height: 250px;
    }
    
    .license-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-tracks {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 15px;
    }
    
    .track-title {
        font-size: 2rem;
    }
    
    .track-artist {
        font-size: 1.2rem;
    }
    
    .track-cover,
    .album-cover,
    .playlist-cover {
        max-width: 100%;
        height: auto;
    }
    
    .track-stats {
        gap: 1rem;
    }
    
    .related-tracks {
        grid-template-columns: 1fr;
    }
    
    .auth-card {
        padding: 25px 20px;
    }
    
    .license-card {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .auth-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .track-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .license-cards {
        grid-template-columns: 1fr;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .track-card-body,
    .stat-card {
        padding: 0.75rem;
    }
}

/* ========================================
   17. UTILITY CLASSES
   ======================================== */

/* Spacing Utilities */
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--text-white); }
.text-muted { color: var(--text-paragraph-color-100); }
.text-primary { color: var(--primary-color); }

.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.fw-normal { font-weight: 400; }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex Utilities */
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.gap-1 { gap: var(--spacing-xs); }
.gap-2 { gap: var(--spacing-sm); }
.gap-3 { gap: var(--spacing-md); }
.gap-4 { gap: var(--spacing-lg); }

/* Border Radius Utilities */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: 9999px; }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Width Utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }

/* Container Utilities */
.container-fluid {
    width: 100%;
    padding-right: var(--spacing-sm);
    padding-left: var(--spacing-sm);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-right: var(--spacing-sm);
    padding-left: var(--spacing-sm);
}

@media (min-width: 768px) {
    .container-fluid,
    .container {
        padding-right: var(--spacing-md);
        padding-left: var(--spacing-md);
    }
}

/* ========================================
   18. ACCESSIBILITY & FOCUS STATES
   ======================================== */

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   19. DARK THEME ENHANCEMENTS
   ======================================== */

/* Enhanced glassmorphism effect */
.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gradient-dark {
    background: linear-gradient(135deg, #3F1F71 0%, #0f172a 100%);
}

/* Hover glow effect */
.hover-glow:hover {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* Text gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   20. PRINT STYLES
   ======================================== */

@media print {
    .sidebar,
    .sidebar-toggle,
    .navbar,
    .footer,
    .btn,
    .alert {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main-content {
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================
   10. PURCHASE & LICENSE PAGES
   ======================================== */

.purchase-container {
    max-width: 1000px;
    margin: var(--spacing-xl) auto;
    padding: 0 var(--spacing-sm);
}

.purchase-header {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.track-cover-sm {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.track-details h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.track-details p {
    color: #aaa;
    margin: 0;
}

.license-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.license-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.license-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.license-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
}

.license-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.license-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.license-name {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.license-price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
}

.license-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.license-features li {
    color: #ccc;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.license-features li i {
    color: var(--primary-color);
}

.exclusive-option {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    display: none;
}

.exclusive-option.show {
    display: block;
}

.btn-purchase {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: block;
    width: 100%;
    max-width: 400px;
    margin: var(--spacing-md) auto;
}

.btn-purchase:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}


/* ========================================
   11. PAYMENT RESULT PAGE
   ======================================== */

.result-container {
    max-width: 600px;
    margin: calc(var(--spacing-xl) * 2) auto;
    padding: 0 var(--spacing-sm);
    text-align: center;
}

.result-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-md);
    backdrop-filter: blur(10px);
}

.result-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.result-icon.success {
    color: #4caf50;
}

.result-icon.failed {
    color: #f44336;
}

.result-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.result-message {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tracking-code {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.tracking-code label {
    color: #aaa;
    font-size: 0.9rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.tracking-code code {
    color: #fff;
    font-size: 1.2rem;
    font-family: monospace;
    background: rgba(0,0,0,0.3);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ========================================
   12. BUTTONS
   ======================================== */

.btn {
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.login-links {
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.login-links a,
.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    transition: opacity var(--transition-base);
}

.login-links a:hover,
.login-link a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.login-link {
    text-align: center;
    margin-top: var(--spacing-lg);
    color: var(--text-paragraph-color-100);
}


/* ========================================
   13. MOBILE RESPONSIVE STYLES
   ======================================== */

/* Mobile Navbar */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
        border: none;
        outline: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        width: 30px;
        height: 25px;
        position: relative;
    }
    
    .navbar-toggler:focus,
    .navbar-toggler:active {
        border: none;
        outline: none;
        box-shadow: none;
    }
    
    .navbar-toggler span {
        display: block;
        width: 100%;
        height: 3px;
        background: #fff;
        margin: 5px 0;
        transition: all 0.3s;
        border-radius: 2px;
    }
    
    .navbar-option-item {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

/* Artist Sidebar Mobile */
@media (max-width: 968px) {
    .sidebar-toggle {
        display: flex;
    }
    
    .sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #sidebarToggle {
        display: flex;
    }
    
    #sidebarToggle:hover {
        transform: scale(1.1) translateY(-2px);
        box-shadow: 0 12px 35px rgba(99, 102, 241, 0.7), 0 0 0 8px rgba(99, 102, 241, 0.2);
        background: #5558e3;
    }
    
    #sidebarToggle:active {
        transform: scale(1.05);
    }
    
    .dashboard-container {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 10px;
        margin: 0 auto;
        gap: 15px;
        position: relative;
    }
    
    .sidebar {
        width: 80%;
        min-width: auto;
        max-width: 320px;
        padding: 20px;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.3s ease;
        margin: 0;
        border-radius: 0;
    }
    
    .sidebar.active {
        right: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.7);
    }
    
    .sidebar-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
        margin-top: 50px;
    }
    
    .sidebar-avatar,
    .sidebar-avatar-placeholder {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .sidebar-name {
        font-size: 17px;
    }
    
    .sidebar-phone {
        font-size: 13px;
    }
    
    .artist-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .sidebar-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .sidebar-menu li {
        margin-bottom: 0;
    }
    
    .sidebar-menu a {
        padding: 12px 15px;
        font-size: 14px;
        gap: 10px;
        justify-content: flex-start;
        flex-direction: row;
    }
    
    .sidebar-menu a i {
        font-size: 18px;
        width: 24px;
    }
    
    .main-content {
        width: 100%;
        max-width: 100%;
    }
    
    .license-cards {
        grid-template-columns: 1fr;
    }
    
    .track-title {
        font-size: 1.8rem;
    }
    
    .track-info {
        flex-direction: column;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .dashboard-container {
        width: 100%;
        padding: 5px;
        margin: 0 auto;
        min-height: auto;
    }
    
    .sidebar {
        width: 85%;
        padding: 15px;
    }
    
    .sidebar-menu a {
        padding: 10px 12px;
        font-size: 13px;
        gap: 8px;
    }
    
    .sidebar-menu a i {
        font-size: 16px;
        width: 20px;
    }
    
    .main-content {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .dashboard-container {
        padding: 2px;
    }
    
    .sidebar {
        width: 90%;
    }
}

/* Hide close button on desktop */
@media (min-width: 969px) {
    .sidebar-close {
        display: none;
    }
}

/* ========================================
   14. ARTIST/ALBUM/PLAYLIST PUBLIC PAGES
   ======================================== */

/* Artist Profile Public */
.artist-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.artist-header {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.artist-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    margin: 0 auto 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* Album/Playlist Detail Public */
.album-container,
.playlist-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.album-header,
.playlist-header {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.album-cover,
.playlist-cover {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.track-item {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.track-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(-5px);
}

/* Rating Section */
.rating-section {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.star-rating {
    display: inline-flex;
    gap: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
    direction: ltr;
}

.star {
    color: #ddd;
    transition: all 0.2s;
}

.star.active,
.star:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.star.filled {
    color: #ffd700;
}

/* ========================================
   15. TRACK DETAIL PUBLIC PAGE
   ======================================== */

.track-detail-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.track-cover {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.track-info {
    color: #fff;
}

.track-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.track-artist {
    font-size: 1.5rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.track-artist a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.track-artist a:hover {
    color: var(--secondary-color);
}

.track-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 1.1rem;
}

.stat-item i {
    color: var(--primary-color);
}

.track-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.tag-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.audio-player {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.audio-player audio {
    width: 100%;
    height: 54px;
    border-radius: 10px;
}

.track-description {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #ddd;
    line-height: 1.8;
    border: 1px solid rgba(255,255,255,0.1);
}

.related-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rating-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.average-rating {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
}


/* Badge Styles for Sidebar */
.badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%) !important;
    color: #fff;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-menu a .badge {
    margin-left: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}


/* ========================================
   FORM CONTROLS - SELECT & INPUT STYLING
   ======================================== */

/* Base form control styling */
.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    font-size: 0.95rem;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    color: #ffffff !important;
}

/* Select option styling */
.form-select option {
    background-color: #1e293b !important;
    color: #ffffff !important;
    padding: 0.5rem 0.75rem;
}

.form-select option:checked {
    background: linear-gradient(#667eea, #667eea) !important;
    background-color: #667eea !important;
    color: #ffffff !important;
}

.form-select option:hover {
    background-color: #334155 !important;
}

/* ========================================
   GIFT PAGE STYLES
   ======================================== */

/* Gift Grid Layout */
.gifts-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
    width: 100%;
    overflow: visible;
}

/* Gift Card Base */
.gift-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Gift Card Image */
.gift-card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: linear-gradient(135deg, var(--neon-blue, #667eea) 0%, var(--neon-purple, #764ba2) 100%);
}

/* Gift Card Body */
.gift-card-body {
    padding: 20px;
}

/* Gift Card Title */
.gift-card-title {
    color: var(--text-white);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Gift Card Meta Information */
.gift-card-meta {
    color: var(--text-paragraph-color-100);
    font-size: 13px;
    margin-bottom: 12px;
}

.gift-card-meta span {
    display: block;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gift-card-meta i {
    width: 20px;
    text-align: center;
}

/* Gift Badges */
.gift-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 8px;
}

.gift-badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.gift-badge-claimed {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Gift Card Actions */
.gift-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gift Action Buttons */
.btn-view-gift,
.btn-claim-gift {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-view-gift {
    background: linear-gradient(135deg, #4a9eff 0%, #3182ce 100%);
    color: white;
}

.btn-view-gift:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.4);
    color: white;
}

.btn-claim-gift {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.btn-claim-gift:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    color: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-paragraph-color-100);
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state h3 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 20px;
}

/* Tab Content Display */
.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block !important;
}

.tab-content {
    display: block !important;
    flex: 1;
}

.tab-pane {
    display: none !important;
}

.tab-pane.show,
.tab-pane.active {
    display: block !important;
}

/* ========================================
   GIFT PAGE - RESPONSIVE DESIGN
   ======================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .gifts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* Tablet - 992px (Bootstrap lg breakpoint) */
@media (max-width: 992px) {
    .dashboard-container {
        padding: 30px 0;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .gifts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 20px 0 100px 0;
    }
    
    .content-card {
        padding: 20px 12px;
        border-radius: 12px;
        margin-bottom: 60px;
    }
    
    .page-header h1 {
        font-size: 20px;
        gap: 8px;
    }
    
    .page-header h1 i {
        font-size: 22px;
    }
    
    .page-header p {
        font-size: 13px;
    }
    
    .page-header {
        margin-bottom: 1.5rem;
        padding-bottom: 15px;
    }
    
    .nav-tabs {
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .gifts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }
    
    .gift-card {
        max-width: 100%;
    }
    
    .gift-card-image {
        height: 180px;
    }
    
    .gift-card-body {
        padding: 15px;
    }
    
    .gift-card-title {
        font-size: 16px;
    }
    
    .gift-card-meta {
        font-size: 12px;
    }
    
    .empty-state {
        padding: 40px 20px;
    }
    
    .empty-state i {
        font-size: 48px;
    }
    
    .empty-state h3 {
        font-size: 18px;
    }
}

/* Small Mobile - 576px */
@media (max-width: 576px) {
    .dashboard-container {
        padding: 15px 0 80px 0;
    }
    
    .content-card {
        padding: 15px 8px;
        margin-bottom: 50px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .page-header h1 {
        font-size: 18px;
    }
    
    .page-header h1 i {
        font-size: 20px;
    }
    
    .page-header p {
        font-size: 12px;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .nav-tabs .nav-link i {
        font-size: 14px;
    }
    
    .gift-card {
        border-radius: 12px;
    }
    
    .gift-card-image {
        height: 180px;
    }
    
    .gift-card-body {
        padding: 12px;
    }
    
    .gift-card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .gift-card-meta {
        font-size: 12px;
    }
    
    .gift-card-meta span {
        margin-bottom: 4px;
    }
    
    .gift-card-meta i {
        width: 18px;
        font-size: 12px;
    }
    
    .gift-card-actions {
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .btn-view-gift,
    .btn-claim-gift {
        font-size: 12px;
        padding: 8px;
        border-radius: 6px;
    }
    
    .gift-badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-top: 6px;
    }
    
    .empty-state {
        padding: 30px 15px;
    }
    
    .empty-state i {
        font-size: 40px;
    }
    
    .empty-state h3 {
        font-size: 16px;
    }
    
    .empty-state p {
        font-size: 13px;
    }
}

/* Extra Small - 380px */
@media (max-width: 380px) {
    .content-card {
        padding: 12px 6px;
    }
    
    .page-header h1 {
        font-size: 16px;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .nav-tabs .nav-link .me-2 {
        margin-right: 4px !important;
    }
    
    .gift-card-image {
        height: 160px;
    }
    
    .gift-card-body {
        padding: 10px;
    }
    
    .gift-card-title {
        font-size: 14px;
    }
    
    .gift-card-meta {
        font-size: 11px;
    }
    
    .btn-view-gift,
    .btn-claim-gift {
        font-size: 11px;
        padding: 7px 6px;
    }
}


/* ========================================
   WALLET DASHBOARD STYLES
   ======================================== */

/* Wallet Content Container */
.wallet-content {
    width: 100%;
}

.wallet-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-header h1 {
    color: var(--text-white);
    font-size: 28px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wallet-header p {
    color: var(--text-paragraph-color-100);
    margin: 0;
    font-size: 14px;
}

/* Balance Cards Grid */
.balance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.balance-card {
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.balance-card-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.balance-card-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.balance-card-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.balance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.balance-card-header {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.balance-card-amount {
    color: white;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.balance-card-amount .currency {
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
    opacity: 0.9;
}

/* Wallet Card */
.wallet-card {
    background: var(--bg-card-bg-100);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wallet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wallet-card-header h3 {
    color: var(--text-white);
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-edit,
.btn-view-all {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit:hover,
.btn-view-all:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--primary-color);
}

.wallet-card-body {
    padding: 25px;
}

/* Bank Info Grid */
.bank-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.bank-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bank-info-item .label {
    color: var(--text-paragraph-color-100);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bank-info-item .value {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 500;
    word-break: break-all;
}

/* Status Messages */
.status-verified,
.status-pending {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.status-verified {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-verified i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-pending i {
    color: #f59e0b;
    font-size: 18px;
    flex-shrink: 0;
}

.status-verified div,
.status-pending div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.status-verified strong,
.status-pending strong {
    color: var(--text-white);
    font-size: 14px;
}

.status-verified small,
.status-pending small {
    color: var(--text-paragraph-color-100);
    font-size: 12px;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.stats-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-label {
    color: var(--text-paragraph-color-100);
    font-size: 13px;
    font-weight: 500;
}

.stat-value {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
}

.stat-value.amount {
    color: var(--primary-color);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-settlement {
    background: linear-gradient(135deg, var(--primary-color), #ff7f00);
    color: white;
    flex: 1;
    min-width: 200px;
}

.btn-settlement:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 151, 0, 0.3);
}

.btn-settlement:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.button-hint {
    width: 100%;
    color: var(--text-paragraph-color-100);
    font-size: 12px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Transactions Table */
.transactions-table {
    width: 100%;
    overflow-x: auto;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 120px 100px 120px 150px 1fr;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-header {
    padding: 15px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.table-header .th {
    color: #ffffff;
}

th, td {
    color: #ffffff !important;
}

.table-row .td {
    color: #ffffff;
    font-size: 13px;
}

.tx-amount {
    font-weight: 600;
}

.text-success {
    color: #10b981 !important;
}

.text-danger {
    color: #ef4444 !important;
}

.tx-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.tx-revenue {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.tx-settlement {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.tx-confirmation {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.tx-other {
    background: rgba(107, 114, 128, 0.15);
    color: #d1d5db;
}

.empty-message {
    text-align: center;
    color: var(--text-paragraph-color-100);
    padding: 40px 20px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .balance-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .wallet-header h1 {
        font-size: 22px;
    }

    .balance-card {
        padding: 20px;
    }

    .balance-card-amount {
        font-size: 24px;
    }

    .wallet-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .wallet-card-header h3 {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-settlement {
        min-width: auto;
        width: 100%;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 0;
    }

    .table-header {
        display: none;
    }

    .table-row {
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .bank-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .wallet-header h1 {
        font-size: 18px;
    }

    .balance-card {
        padding: 18px;
    }

    .balance-card-amount {
        font-size: 20px;
    }

    .wallet-card-body {
        padding: 15px;
    }

    .wallet-card-header {
        padding: 15px;
    }

    .stat-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-buttons {
        gap: 8px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}



/* ========================================
   ADVERTISEMENT LIST PAGE STYLES
   ======================================== */

/* Container */
.ads-content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
.ads-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.ads-header h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ads-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.btn-create-ad {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-create-ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Stats Grid */
.ads-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ads-stat-card {
    padding: 1.75rem;
    border-radius: 12px;
    color: white;
}

.ads-stat-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ads-stat-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.ads-stat-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}

/* Section */
.ads-section {
    margin-bottom: 2.5rem;
}

.ads-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.ads-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.ads-count-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Ad Card */
.ad-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ad-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

.ad-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 1rem;
}

.ad-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Badges */
.ad-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.ad-badge-pending {
    background: rgba(255, 165, 0, 0.2);
    color: #FFB84D;
}

.ad-badge-payment {
    background: rgba(33, 150, 243, 0.2);
    color: #64B5F6;
}

.ad-badge-active {
    background: rgba(17, 153, 142, 0.2);
    color: #56D7AF;
}

.ad-badge-expired {
    background: rgba(245, 87, 108, 0.2);
    color: #F57B7B;
}

/* Info Grid */
.ad-card-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.ad-info-item {
    display: flex;
    flex-direction: column;
}

.ad-info-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-info-value {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.125rem;
}

/* Progress */
.ad-card-progress {
    margin-bottom: 1.25rem;
}

.ad-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.ad-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.ad-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

/* Actions */
.ad-card-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-ad-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-ad-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-ad-secondary {
    background: transparent;
    color: #667eea;
    padding: 0.65rem 1.25rem;
    border: 1px solid #667eea;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-ad-secondary:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #764ba2;
    color: #764ba2;
}

/* Empty State */
.ads-empty-state {
    text-align: center;
    padding: 3.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.ads-empty-state i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    display: block;
}

.ads-empty-state h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.ads-empty-state p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ads-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .ads-header h1 {
        font-size: 1.5rem;
    }

    .ads-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ad-card {
        padding: 1.25rem;
    }

    .ad-card-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ad-card-actions {
        flex-wrap: wrap;
    }

    .ads-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .ads-header {
        flex-direction: column;
        gap: 1rem;
    }

    .ads-header h1 {
        font-size: 1.25rem;
    }

    .ads-header p {
        font-size: 0.9rem;
    }

    .btn-create-ad {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .ads-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .ads-stat-card {
        padding: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .ads-section-title {
        font-size: 1rem;
    }

    .ad-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .ad-card-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ad-card-title {
        font-size: 1rem;
    }

    .ad-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }

    .ad-card-info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .ad-info-value {
        font-size: 1rem;
    }

    .ad-card-actions {
        flex-direction: column;
    }

    .btn-ad-primary,
    .btn-ad-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .ads-empty-state {
        padding: 2rem 1rem;
    }

    .ads-empty-state i {
        font-size: 2.5rem;
    }

    .ads-empty-state h3 {
        font-size: 1.1rem;
    }

    .ads-empty-state p {
        font-size: 0.9rem;
    }
}


/* ========================================
   ADVERTISEMENT DETAIL PAGE STYLES
   ======================================== */

.ad-detail-content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Back Button */
.btn-ad-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #667eea;
    border: 1px solid #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.btn-ad-detail-back:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(-2px);
}

/* Header */
.ad-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.ad-detail-header h1 {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    color: white;
}

.ad-detail-header p {
    margin: 0;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Badges */
.ad-detail-badge {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ad-detail-badge-pending {
    background: rgba(255, 165, 0, 0.25);
    color: #FFB84D;
}

.ad-detail-badge-payment {
    background: rgba(33, 150, 243, 0.25);
    color: #64B5F6;
}

.ad-detail-badge-active {
    background: rgba(17, 153, 142, 0.25);
    color: #56D7AF;
}

.ad-detail-badge-rejected {
    background: rgba(244, 67, 54, 0.25);
    color: #F57B7B;
}

.ad-detail-badge-expired {
    background: rgba(158, 158, 158, 0.25);
    color: #B0B0B0;
}

/* Small Badges */
.ad-detail-badge-small {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.ad-detail-badge-success {
    background: rgba(17, 153, 142, 0.2);
    color: #56D7AF;
}

.ad-detail-badge-warning {
    background: rgba(255, 165, 0, 0.2);
    color: #FFB84D;
}

.ad-detail-badge-info {
    background: rgba(33, 150, 243, 0.2);
    color: #64B5F6;
}

/* Pay Button */
.btn-ad-detail-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 2rem;
}

.btn-ad-detail-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Stats Grid */
.ad-detail-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ad-detail-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.ad-detail-stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(102, 126, 234, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.75rem 0 0.25rem 0;
}

.stat-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Section */
.ad-detail-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.ad-detail-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Budget Progress */
.ad-detail-budget-progress {
    margin-bottom: 2rem;
}

.ad-detail-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.ad-detail-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.ad-detail-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

/* Info Grid */
.ad-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.ad-detail-info-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ad-detail-info-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-detail-info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

/* Chart Container */
.ad-detail-chart-container {
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.ad-detail-chart-container p {
    margin: 0;
}

/* Table Wrapper */
.ad-detail-table-wrapper {
    overflow-x: auto;
}

.ad-detail-plays-table {
    width: 100%;
    border-collapse: collapse;
}

.ad-detail-plays-table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.ad-detail-plays-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.ad-detail-plays-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.ad-detail-plays-table a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ad-detail-plays-table a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .ad-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-detail-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ad-detail-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ad-detail-section {
        padding: 1.5rem;
    }

    .ad-detail-header {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .ad-detail-header h1 {
        font-size: 1.5rem;
    }

    .ad-detail-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ad-detail-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ad-detail-info-item {
        padding: 1rem;
    }

    .ad-detail-plays-table {
        font-size: 0.8rem;
    }

    .ad-detail-plays-table th,
    .ad-detail-plays-table td {
        padding: 0.75rem;
    }

    .ad-detail-section-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 576px) {
    .ad-detail-content {
        width: 100%;
    }

    .ad-detail-header {
        padding: 1.25rem;
        gap: 1rem;
    }

    .ad-detail-header h1 {
        font-size: 1.25rem;
    }

    .ad-detail-header p {
        font-size: 0.9rem;
    }

    .ad-detail-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.85rem;
    }

    .btn-ad-detail-back {
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .btn-ad-detail-primary {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .ad-detail-stat-card {
        padding: 1.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-subtitle {
        font-size: 0.7rem;
    }

    .ad-detail-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .ad-detail-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .ad-detail-progress-info {
        font-size: 0.8rem;
    }

    .ad-detail-info-label {
        font-size: 0.75rem;
    }

    .ad-detail-info-value {
        font-size: 1rem;
    }

    .ad-detail-chart-container {
        height: 250px;
    }

    .ad-detail-plays-table th,
    .ad-detail-plays-table td {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .ad-detail-badge-small {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
    }
}


/* ========================================
   ADVERTISEMENT DETAIL PAYMENT ALERT
   ======================================== */

.ad-detail-payment-alert {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.ad-detail-alert-content {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}

.ad-detail-alert-content i {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.ad-detail-alert-content strong {
    color: #ffffff;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}

.ad-detail-alert-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.btn-ad-detail-pay-now {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.btn-ad-detail-pay-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-ad-detail-pay-now:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .ad-detail-payment-alert {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .btn-ad-detail-pay-now {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .ad-detail-payment-alert {
        padding: 1.25rem;
        gap: 1rem;
    }

    .ad-detail-alert-content {
        gap: 1rem;
    }

    .ad-detail-alert-content i {
        font-size: 1.5rem;
    }

    .ad-detail-alert-content strong {
        font-size: 1rem;
    }

    .ad-detail-alert-content p {
        font-size: 0.85rem;
    }

    .btn-ad-detail-pay-now {
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
}


/* ========================================
   ADVERTISEMENT DETAIL PAYMENT ALERT
   ======================================== */

.ad-detail-payment-alert {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.ad-detail-alert-content {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}

.ad-detail-alert-content i {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.ad-detail-alert-content strong {
    color: #ffffff;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}

.ad-detail-alert-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.btn-ad-detail-pay-now {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.btn-ad-detail-pay-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-ad-detail-pay-now:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .ad-detail-payment-alert {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .btn-ad-detail-pay-now {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .ad-detail-payment-alert {
        padding: 1.25rem;
        gap: 1rem;
    }

    .ad-detail-alert-content {
        gap: 1rem;
    }

    .ad-detail-alert-content i {
        font-size: 1.5rem;
    }

    .ad-detail-alert-content strong {
        font-size: 1rem;
    }

    .ad-detail-alert-content p {
        font-size: 0.85rem;
    }

    .btn-ad-detail-pay-now {
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
}


/* ========================================
   ADVERTISEMENT PAYMENT PAGE STYLES
   ======================================== */

.payment-content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-payment-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #667eea;
    border: 1px solid #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    width: fit-content;
}

.btn-payment-back:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(-2px);
}

/* Payment Card */
.payment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 700px;
}

.payment-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-header h1 {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.payment-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

/* Ad Info */
.ad-info {
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.ad-info-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.info-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* Total Amount */
.total-amount {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0;
}

.total-amount .label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.total-amount .amount {
    color: white;
    font-size: 2.75rem;
    font-weight: 700;
}

/* Payment Note */
.payment-note {
    background: rgba(245, 87, 108, 0.12);
    border: 1px solid rgba(245, 87, 108, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.payment-note i {
    color: #f5576c;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.payment-note p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Payment Button */
.btn-payment-primary {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-payment-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-payment-primary:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .payment-card {
        padding: 1.75rem;
    }

    .payment-header h1 {
        font-size: 1.5rem;
    }

    .payment-header p {
        font-size: 0.9rem;
    }

    .ad-info {
        padding: 1.5rem;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .total-amount .amount {
        font-size: 2.25rem;
    }

    .btn-payment-primary {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .payment-content {
        padding: 1rem;
    }

    .payment-card {
        padding: 1.25rem;
    }

    .payment-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .payment-header h1 {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .payment-header p {
        font-size: 0.85rem;
    }

    .ad-info {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .ad-info-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .info-label {
        font-size: 0.85rem;
    }

    .info-value {
        font-size: 0.95rem;
    }

    .total-amount {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .total-amount .label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .total-amount .amount {
        font-size: 2rem;
    }

    .payment-note {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .payment-note i {
        font-size: 1.25rem;
    }

    .payment-note p {
        font-size: 0.8rem;
    }

    .btn-payment-primary {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .btn-payment-back {
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.payment-container-centered {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem 1rem;
}


/* Order Card Styling */
.order-card {
    background: linear-gradient(135deg, rgba(30,30,40,0.9) 0%, rgba(20,20,30,0.9) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    transition: all var(--transition-base);
}

.order-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Stat Cards */
.stat-card {
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-base);
}

.stat-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-card small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.stat-card-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.stat-card-info {
    background: rgba(13, 202, 240, 0.1);
    border-color: rgba(13, 202, 240, 0.3);
    color: #0dcaf0;
}

.stat-card-primary {
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
    color: #0d6efd;
}

.stat-card-success {
    background: rgba(25, 135, 84, 0.1);
    border-color: rgba(25, 135, 84, 0.3);
    color: #198754;
}

.stat-card-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.stat-card-secondary {
    background: rgba(108, 117, 125, 0.1);
    border-color: rgba(108, 117, 125, 0.3);
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .order-card {
        padding: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card h3 {
        font-size: 1.5rem;
    }
}