/* GPT Reward Website - Dark Theme Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0f0f23;
    --secondary-bg: #1a1a2e;
    --card-bg: #16213e;
    --accent-red: #ff4757;
    --accent-blue: #3498db;
    --accent-purple: #10b981;
    --accent-gold: #f1c40f;
    --accent-cyan: #00d4ff;
    --accent-pink: #ff6b9d;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --border-color: #2d3748;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --gradient-3d-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-3d-secondary: linear-gradient(135deg, #ffffff 0%, #f5576c 100%);
    --gradient-3d-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-3d-warning: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-3d-premium: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-red: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    --gradient-blue: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    --gradient-green: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --gradient-orange: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    --gradient-purple: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-3d-light: 0 8px 32px rgba(255, 255, 255, 0.1);
    --shadow-3d-dark: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-3d-colored: 0 20px 60px rgba(16, 185, 129, 0.4);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Beautiful Navigation System */
.navigation-container {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navigation-title {
    text-align: center;
    color: var(--accent-gold);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.nav-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

.nav-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(145deg, var(--secondary-bg) 0%, var(--card-bg) 50%, var(--secondary-bg) 100%);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.nav-button:hover:before {
    left: 100%;
}

.nav-button-icon {
    margin-right: 8px;
    font-size: 16px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-size: 14px;
    margin-bottom: 20px;
}

.back-button:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateX(-3px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.back-button-icon {
    margin-right: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.back-button:hover .back-button-icon {
    transform: translateX(-3px);
}

/* Navigation sections */
.nav-section {
    margin-bottom: 15px;
}

.nav-section-title {
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 217, 61, 0.1);
    border: 1px solid rgba(255, 217, 61, 0.3);
}

/* Enhanced Navigation Consistency */
.nav-table tr {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.nav-table tr:last-child {
    margin-bottom: 0;
}

.nav-table td {
    flex: 1;
    min-width: 0;
}

.nav-section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255, 217, 61, 0.15);
    border: 1px solid rgba(255, 217, 61, 0.4);
    color: var(--accent-gold);
}

/* Perfect Button Alignment */
.nav-button {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Enhanced Hover Effects */
.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    border-color: var(--accent-blue);
    color: white;
    background: var(--accent-blue);
}

.nav-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Perfect Mobile Responsiveness */
@media (max-width: 768px) {
    .navigation-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .nav-table {
        border-spacing: 8px;
    }
    
    .nav-table tr {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-button {
        padding: 12px 15px;
        font-size: 13px;
        min-height: 45px;
    }
    
    .navigation-title {
        font-size: 18px;
    }
    
    .nav-section-title {
        font-size: 13px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .nav-table tr {
        gap: 6px;
    }
    
    .nav-button {
        padding: 10px 12px;
        font-size: 12px;
        min-height: 40px;
    }
    
    .nav-button-icon {
        font-size: 14px;
    }
}

/* Professional Clean Background with Excellent Readability */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    background-size: 400% 400%;
    animation: subtleGradient 25s ease infinite;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.04) 0%, transparent 70%);
    animation: gentleFloat 40s ease infinite;
}

.animated-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.015) 50%, transparent 60%);
    animation: subtleShimmer 20s ease infinite;
}

@keyframes subtleGradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

@keyframes gentleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-15px, -10px) scale(1.02); }
    50% { transform: translate(15px, -5px) scale(0.98); }
    75% { transform: translate(-10px, 10px) scale(1.01); }
}

@keyframes subtleShimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Header search + messages buttons */
.header-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 16px;
}

.search-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(145deg, rgba(26,26,46,0.9) 0%, rgba(15,15,35,0.95) 100%);
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    transition: all 0.25s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    border-color: #10b981;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3);
}

.search-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.search-btn:active {
    transform: translateY(0);
    filter: brightness(0.95);
}

.search-btn.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.search-btn .icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .header-search {
        gap: 6px;
        margin: 0 8px;
    }
    .search-btn {
        padding: 8px 10px;
        font-size: 12px;
        border-radius: 8px;
    }
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-red);
    text-decoration: none;
}

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

.balance {
    background: var(--gradient-red);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.user-level {
    background: var(--gradient-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    margin-bottom: 0;
    padding: 20px 0;
    padding-bottom: 80px;
}
/* Ensure header profile picture is always small */
.user-avatar img,
.user-avatar .avatar-placeholder {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Dashboard Cards */
.dashboard-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.dashboard-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px var(--shadow-3d-colored),
        0 0 0 1px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--accent-cyan);
}

.dashboard-card:hover::before {
    left: 100%;
}

/* Cards */
.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
}

.btn-secondary {
    background: var(--gradient-blue);
    color: white;
}

.btn-success {
    background: var(--gradient-green);
    color: white;
}

.btn-warning {
    background: var(--gradient-orange);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

/* Ultra-Professional Quick Cashout Section */
.quick-cashout {
    margin-bottom: 40px;
    background: 
        linear-gradient(145deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%),
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    border-radius: 30px;
    padding: 35px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(255, 107, 157, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 107, 157, 0.2);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.quick-cashout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 107, 157, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(16, 185, 129, 0.03) 50%, transparent 70%);
    border-radius: 30px;
    animation: shimmerCashout 8s ease infinite;
    pointer-events: none;
}

@keyframes shimmerCashout {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); opacity: 0.3; }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); opacity: 0.7; }
}

.cashout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    position: relative;
}

.cashout-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 157, 0.3) 20%, 
        rgba(255, 107, 157, 0.8) 50%, 
        rgba(255, 107, 157, 0.3) 80%, 
        transparent 100%);
    border-radius: 1px;
}

.cashout-section-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b9d 50%, #c44569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
    position: relative;
    margin: 0;
}

.quick-cashout:hover::before {
    left: 100%;
}

.cashout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.cashout-card {
    background: 
        linear-gradient(145deg, #16213e 0%, #1a1a2e 25%, #0f0f23 50%, #1a1a2e 75%, #16213e 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
    border-radius: 22px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 107, 157, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 107, 157, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 107, 157, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transform-style: preserve-3d;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.cashout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.cashout-card:hover {
transform: translateY(-20px) rotateX(15deg) rotateY(8deg) scale(1.08);
background: 
    linear-gradient(145deg, #1a1a2e 0%, #16213e 25%, #ff6b9d 50%, #16213e 75%, #1a1a2e 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 157, 0.4) 0%, transparent 70%);
box-shadow: 
    0 35px 100px rgba(0, 0, 0, 0.7),
    0 0 120px rgba(255, 107, 157, 0.6),
    0 0 0 2px rgba(255, 107, 157, 0.5),
    inset 0 3px 0 rgba(255, 255, 255, 0.3),
    inset 0 -3px 0 rgba(0, 0, 0, 0.4);
border-color: rgba(255, 107, 157, 0.8);
filter: brightness(1.2) saturate(1.3);
}

.cashout-card:hover::before {
left: 100%;
}

.cashout-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cashout-logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.4)) !important;
    transition: all 0.3s ease !important;
}

.cashout-card:hover .cashout-logo-image {
    filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.8)) brightness(1.1) !important;
    transform: scale(1.05) !important;
}

/* Offers Section */
.offers-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
}

.view-all-btn {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: var(--text-primary);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.offer-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.offer-image {
    width: 100%;
    height: 120px;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.offer-content {
    padding: 15px;
}

.offer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.offer-type {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 10px;
}

.offer-reward {
    background: var(--gradient-red);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

/* Partners Section */
.partners-section {
    margin-bottom: 40px;
}

.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.partners-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.nav-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.partners-container {
    position: relative;
}

.partners-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partners-grid::-webkit-scrollbar {
    display: none;
}

.partner-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
    position: relative;
    min-width: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    border-color: #ef4444;
}

.partner-locked {
    opacity: 0.7;
    cursor: not-allowed;
    border-color: #6b7280;
}

.partner-locked:hover {
    transform: none;
    box-shadow: none;
    border-color: #6b7280;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 13px;
}

.lock-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.unlock-text {
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

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

.partner-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: relative;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.logo-text {
    font-weight: bold;
    font-size: 18px;
}

.partner-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.2;
}

.partner-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.star {
    color: #6b7280;
    font-size: 14px;
    transition: color 0.3s ease;
}

.star.filled {
    color: #fbbf24;
}

.hot-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    z-index: 3;
}

.bonus-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    z-index: 3;
}

.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.partners-nav {
    display: flex;
    gap: 8px;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #dc2626;
    background: var(--card-bg);
    color: #dc2626;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

/* Bar-Style Button System */
.bar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #dc2626 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    min-height: 44px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
    background: linear-gradient(135deg, #ef4444 0%, var(--accent-red) 100%);
}

.bar-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bar-btn.secondary {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #374151 100%);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.bar-btn.secondary:hover {
    background: linear-gradient(135deg, #4b5563 0%, var(--secondary-bg) 100%);
    box-shadow: 0 4px 16px rgba(75, 85, 99, 0.3);
}

.bar-btn.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.bar-btn.success:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.bar-btn.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.bar-btn.warning:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.bar-btn.info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.bar-btn.info:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.bar-btn.small {
    padding: 8px 16px;
    font-size: 12px;
    min-height: 36px;
}

.bar-btn.large {
    padding: 16px 32px;
    font-size: 16px;
    min-height: 52px;
}

.bar-btn.full-width {
    width: 100%;
    justify-content: center;
}

.bar-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.bar-btn:disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Bar Button Icons */
.bar-btn-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.bar-btn.small .bar-btn-icon {
    width: 16px;
    height: 16px;
    font-size: 10px;
}

.bar-btn.large .bar-btn-icon {
    width: 20px;
    height: 20px;
    font-size: 14px;
}

/* Navigation Bar Buttons */
.nav-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 10px;
    min-width: 60px;
    gap: 4px;
}

.nav-bar-btn.active {
    color: var(--accent-red);
    background: rgba(255, 71, 87, 0.1);
}

.nav-bar-btn:hover {
    color: var(--text-primary);
}

.nav-bar-icon {
    width: 24px;
    height: 24px;
    background: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    display: block;
}

.nav-bar-label {
    font-size: 13px;
    font-weight: 500;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Icon Masks for Navigation */
.nav-bar-icon.earn {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>');
}

.nav-bar-icon.cashout {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 2v20m9-9H3"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 2v20m9-9H3"/></svg>');
}

.nav-bar-icon.leaderboard {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M6 9H4.5a2.5 2.5 0 0 1 0-5H6"/><path d="M14 9h1.5a2.5 2.5 0 0 0 0-5H14"/><path d="M6 2v6"/><path d="M14 2v6"/><path d="M6 9v12"/><path d="M14 9v12"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M6 9H4.5a2.5 2.5 0 0 1 0-5H6"/><path d="M14 9h1.5a2.5 2.5 0 0 0 0-5H14"/><path d="M6 2v6"/><path d="M14 2v6"/><path d="M6 9v12"/><path d="M14 9v12"/></svg>');
}

.nav-bar-icon.affiliates {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M22 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M22 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>');
}

.nav-bar-icon.profile {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>');
}

/* Latest Offers Section */
.latest-offers-section {
    margin-bottom: 30px;
}

.latest-offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    position: relative;
}

.latest-offers-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(16, 185, 129, 0.3) 20%, 
        rgba(16, 185, 129, 0.8) 50%, 
        rgba(16, 185, 129, 0.3) 80%, 
        transparent 100%);
    border-radius: 1px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 50%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #10b981 0%, #059669 100%);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.latest-offers-header .section-title {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.view-all-link {
    color: var(--accent-red);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-link:hover {
    text-decoration: underline;
}

.latest-offers-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: 
        linear-gradient(145deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%),
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    padding: 35px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(16, 185, 129, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(16, 185, 129, 0.2);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    transform-style: preserve-3d;
    perspective: 1200px;
    position: relative;
}

.latest-offers-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 107, 157, 0.03) 50%, transparent 70%);
    border-radius: 30px;
    animation: shimmerUltra 8s ease infinite;
    pointer-events: none;
}

@keyframes shimmerUltra {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); opacity: 0.3; }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); opacity: 0.7; }
}

.latest-offers-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.latest-offers-scroll::-webkit-scrollbar {
    display: none;
}

.latest-offer-card {
    position: relative !important;
    min-width: 140px !important;
    max-width: 140px !important;
    width: 140px !important;
    height: 180px !important;
    background: 
        linear-gradient(145deg, #16213e 0%, #1a1a2e 25%, #0f0f23 50%, #1a1a2e 75%, #16213e 100%),
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 70%) !important;
    border-radius: 20px !important;
    padding: 0 !important;
    margin-right: 16px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 2px solid rgba(16, 185, 129, 0.4) !important;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(16, 185, 129, 0.3),
        0 0 70px rgba(255, 107, 157, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.latest-offer-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
    transition: left 0.6s ease !important;
    z-index: 1 !important;
}

.latest-offer-card:hover {
    transform: translateY(-20px) rotateX(15deg) rotateY(8deg) scale(1.08) !important;
    background: 
        linear-gradient(145deg, #1a1a2e 0%, #16213e 25%, #10b981 50%, #16213e 75%, #1a1a2e 100%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.4) 0%, transparent 70%) !important;
    border-color: rgba(16, 185, 129, 0.8) !important;
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.7),
        0 0 120px rgba(16, 185, 129, 0.6),
        0 0 0 2px rgba(16, 185, 129, 0.5),
        inset 0 3px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.4) !important;
    filter: brightness(1.2) saturate(1.3) !important;
}

.latest-offer-card:hover::before {
    left: 100% !important;
}

.offer-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    margin: 0 auto 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: 
        linear-gradient(145deg, rgba(16, 185, 129, 0.4) 0%, rgba(255, 107, 157, 0.3) 100%),
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.3) 0%, transparent 70%),
        rgba(255, 255, 255, 0.15) !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 35px rgba(16, 185, 129, 0.4),
        0 0 50px rgba(255, 107, 157, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2) !important;
    border: 2px solid rgba(16, 185, 129, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
}

.offer-icon::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%) !important;
    border-radius: 20px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.latest-offer-card:hover .offer-icon::before {
    opacity: 1 !important;
    animation: shimmerIcon 1.5s ease infinite !important;
}

@keyframes shimmerIcon {
    0% { transform: translateX(-100%) rotate(0deg); }
    100% { transform: translateX(100%) rotate(180deg); }
}

.offer-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    display: block !important;
    padding: 8px !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
    transition: all 0.3s ease !important;
}

.latest-offer-card:hover .offer-icon img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)) brightness(1.1) !important;
    transform: scale(1.05) !important;
}

/* New Logo Container Styles */
.offer-logo-container {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    position: relative !important;
    overflow: hidden !important;
    max-height: 120px;
}

@media (max-width: 768px) {
    .offer-logo-container {
        max-height: 80px;
        padding: 10px !important;
    }
}

.offer-logo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    max-width: 80px !important;
    max-height: 80px !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)) !important;
    transition: all 0.3s ease !important;
}

.offer-logo-placeholder {
    font-size: 48px !important;
    color: rgba(16, 185, 129, 0.8) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.6)) !important;
}

.offer-name-label {
    padding: 8px 12px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-align: center !important;
    border-top: 1px solid rgba(16, 185, 129, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}

/* Hover effects for new design */
.latest-offer-card:hover .offer-logo {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4)) brightness(1.15) !important;
}

.latest-offer-card:hover .offer-logo-placeholder {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.8)) !important;
}

.latest-offer-card:hover .offer-name-label {
    background: rgba(16, 185, 129, 0.4) !important;
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
}

.offer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 32px;
    color: var(--accent-gold);
    text-shadow: 
        0 0 25px rgba(255, 217, 61, 1),
        0 0 40px rgba(255, 217, 61, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 15px rgba(255, 217, 61, 0.8));
    animation: pulseGlowEnhanced 2.5s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

@keyframes pulseGlowEnhanced {
    0% { 
        text-shadow: 
            0 0 25px rgba(255, 217, 61, 1),
            0 0 40px rgba(255, 217, 61, 0.8),
            0 4px 12px rgba(0, 0, 0, 0.6);
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 217, 61, 0.8));
    }
    100% { 
        text-shadow: 
            0 0 35px rgba(255, 217, 61, 1),
            0 0 60px rgba(255, 217, 61, 1),
            0 0 80px rgba(255, 217, 61, 0.6),
            0 4px 12px rgba(0, 0, 0, 0.6);
        transform: scale(1.08);
        filter: drop-shadow(0 0 25px rgba(255, 217, 61, 1));
    }
}

@keyframes pulseGlow {
    0% { 
        text-shadow: 
            0 0 20px rgba(255, 217, 61, 0.8),
            0 2px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(255, 217, 61, 1),
            0 0 40px rgba(255, 217, 61, 0.6),
            0 2px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1.05);
    }
}

.offer-info {
    color: white;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.offer-title {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

.offer-category {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.offer-rating {
    display: flex;
    gap: 1px;
    margin-bottom: 4px;
    justify-content: center;
}

.offer-rating .star {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.offer-rating .star.filled {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.offer-payout {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.15) !important;
    padding: 3px 6px !important;
    border-radius: 4px !important;
    text-align: center !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.offer-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 7px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.offer-badge.hot {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.offer-badge.new {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .latest-offer-card {
        min-width: 140px !important;
        max-width: 170px !important;
        width: 150px !important;
        height: 190px !important;
        padding: 0 !important; /* let the image fill the card */
    }

    /* Latest Offers image area on mobile – make image fill the top of card nicely */
    .latest-offer-card .offer-logo-container {
        max-height: none;
        height: 120px;
        padding: 0 !important;
    }

    .latest-offer-card .offer-logo {
        max-width: 100% !important;
        max-height: 100% !important;
    }

    .latest-offer-card .offer-name-label {
        padding: 6px 8px !important;
        font-size: 11px !important;
    }

    .latest-offer-card .offer-reward-label {
        padding: 4px 8px 8px 8px !important;
        font-size: 11px !important;
    }
}

/* Left Navigation */
.bottom-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 160px;
    background: linear-gradient(90deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 15, 35, 0.99) 100%), radial-gradient(circle at 100% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 2px solid rgba(16, 185, 129, 0.3);
    z-index: 1000;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5), 60px 0 60px rgba(16, 185, 129, 0.2) inset, 0 0 0 1px rgba(16, 185, 129, 0.1) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 40, 0.95);
    border-radius: 0;
    box-shadow: none;
    position: relative;
    left: 0;
    transform: none;
    gap: 0;
    max-width: 160px;
    margin-bottom: 0;
}

.nav-bar-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: rgba(226, 232, 240, 0.6);
    transition: all 0.15s ease;
    padding: 14px 16px;
    border-radius: 0;
    width: 100%;
    gap: 12px;
    position: relative;
    white-space: nowrap;
    border-left: 4px solid transparent;
    box-sizing: border-box;
}

.nav-bar-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(255, 107, 157, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-bar-btn.active {
    color: white;
    background: rgba(16, 185, 129, 0.25);
    border-left-color: rgba(16, 185, 129, 0.8);
    box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.2);
}

.nav-bar-btn.active::before {
    opacity: 1;
}

.nav-bar-btn:hover {
    color: white;
    background: rgba(16, 185, 129, 0.15);
    transform: none;
}

.nav-bar-btn:hover::before {
    opacity: 1;
}

.nav-bar-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-bar-btn:hover .nav-bar-icon {
    transform: scale(1.1);
}

.nav-bar-btn.active .nav-bar-icon {
    background: linear-gradient(135deg, #10b981 0%, #ffffff 100%);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.nav-bar-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Leaderboard Styles */
.leaderboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.leaderboard-title {
    font-size: 32px;
    font-weight: bold;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.top-winners {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.winner-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    position: relative;
    min-width: 180px;
}

.winner-card.first {
    border-color: #ffd700;
    transform: scale(1.1);
}

.winner-card.second {
    border-color: #c0c0c0;
}

.winner-card.third {
    border-color: #cd7f32;
}

.winner-position {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-red);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.winner-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-purple);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.winner-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.winner-earned {
    color: var(--success-color);
    font-weight: bold;
    margin-bottom: 8px;
}

.winner-prize {
    background: var(--gradient-green);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

/* Tables */
.table-container {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: var(--secondary-bg);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table td {
    color: var(--text-primary);
}

.table tr:hover {
    background: rgba(255, 71, 87, 0.05);
}

/* Profile Page */
.profile-header {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-purple);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-red);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Landing Page */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .user-info {
        gap: 10px;
    }
    
    .balance,
    .user-level {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-winners {
        flex-direction: column;
        align-items: center;
    }
    
    .winner-card.first {
        transform: none;
        order: 1;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .cashout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .cashout-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-red);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success/Error Messages */
.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(46, 213, 115, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

.alert-error {
    background: rgba(255, 56, 56, 0.1);
    border-color: var(--error-color);
    color: var(--error-color);
}

.alert-warning {
    background: rgba(255, 165, 2, 0.1);
    border-color: var(--warning-color);
    color: var(--warning-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: 
        linear-gradient(145deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%),
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    margin: 3% auto;
    padding: 40px;
    border-radius: 30px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: fadeInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(16, 185, 129, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(16, 185, 129, 0.2);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 107, 157, 0.03) 50%, transparent 70%);
    border-radius: 30px;
    animation: shimmerModal 8s ease infinite;
    pointer-events: none;
}

@keyframes shimmerModal {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); opacity: 0.3; }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); opacity: 0.7; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 2;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(16, 185, 129, 0.8) 50%, 
        transparent 100%);
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 50%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    position: relative;
    z-index: 2;
}

.close {
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Admin Panel Styles */
.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background: var(--secondary-bg);
    border-right: 1px solid var(--border-color);
    padding: 20px 0;
    overflow-y: auto;
    z-index: 1000;
}

.admin-content {
    margin-left: 250px;
    padding: 20px;
    min-height: 100vh;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    color: var(--text-primary);
    background: rgba(255, 71, 87, 0.1);
    border-left-color: var(--accent-red);
}

.admin-header {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-red);
    display: block;
    margin-bottom: 5px;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.open {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
}

/* Profile Picture Upload & Cropper Styles */
.profile-pic-upload {
    width: 100%;
}

.upload-preview {
    margin-bottom: 20px;
}

.preview-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preview-container img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.preview-placeholder {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px;
}

.placeholder-icon {
    font-size: 64px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.placeholder-text {
    font-size: 16px;
    opacity: 0.7;
}

.file-upload-area {
    margin: 20px 0;
}

.file-upload-area input[type="file"] {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(16, 185, 129, 0.05);
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.upload-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.upload-hint {
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.crop-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.crop-controls .bar-btn {
    padding: 10px 15px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.upload-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.upload-actions .bar-btn {
    min-width: 140px;
}

.upload-progress {
    margin-top: 20px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 10px;
}

.progress-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Cropper.js container adjustments */
.cropper-container {
    max-height: 400px;
}

.cropper-view-box,
.cropper-face {
    border-radius: 50%;
}

/* Responsive adjustments for profile upload */
@media (max-width: 768px) {
    .preview-container {
        height: 300px;
        max-width: 100%;
    }
    
    .crop-controls {
        flex-direction: column;
    }
    
    .crop-controls .bar-btn {
        width: 100%;
    }
    
    .upload-actions {
        flex-direction: column;
    }
}

/* New Modern Gradient Withdrawal Card Styles */
.withdrawal-card {
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.withdrawal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.withdrawal-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.withdrawal-card:hover {
    transform: translateY(-20px) scale(1.08) perspective(1000px) rotateX(5deg);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.8),
        0 0 120px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
    filter: brightness(1.2) saturate(1.15);
}

.withdrawal-card:hover::before {
    left: 100%;
}

.withdrawal-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.withdrawal-card:hover .withdrawal-icon {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.withdrawal-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 15px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.withdrawal-card:hover .withdrawal-logo {
    transform: scale(1.12);
    filter: drop-shadow(0 6px 20px rgba(255, 255, 255, 0.3)) brightness(1.15);
}

.withdrawal-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.withdrawal-min {
    font-size: 13px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Colorful Gradient Backgrounds for Withdrawal Cards */
.withdrawal-card.paypal-card {
    background: linear-gradient(135deg, #003087 0%, #0070ba 50%, #003087 100%);
}

.withdrawal-card.bitcoin-card {
    background: linear-gradient(135deg, #f7931a 0%, #f8a017 50%, #f39c12 100%);
}

.withdrawal-card.ethereum-card {
    background: linear-gradient(135deg, #627eea 0%, #5a67d8 50%, #4c51bf 100%);
}

.withdrawal-card.litecoin-card {
    background: linear-gradient(135deg, #345d9d 0%, #2c5aa0 50%, #1a3a52 100%);
}

.withdrawal-card.amazon-card {
    background: linear-gradient(135deg, #ff9900 0%, #ffa500 50%, #ff8c00 100%);
}

.withdrawal-card.visa-card {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #1e3a8a 100%);
}

.withdrawal-card.apple-card {
    background: linear-gradient(135deg, #fa7343 0%, #f54020 50%, #c41c04 100%);
}

.withdrawal-card.netflix-card {
    background: linear-gradient(135deg, #e50914 0%, #b81d13 50%, #831010 100%);
}

.withdrawal-card.spotify-card {
    background: linear-gradient(135deg, #1ed760 0%, #1db954 50%, #168c3f 100%);
}

.withdrawal-card.fortnite-card {
    background: linear-gradient(135deg, #3451db 0%, #2d47be 50%, #1f2e7e 100%);
}

.withdrawal-card.leagueoflegends-card {
    background: linear-gradient(135deg, #785a28 0%, #5a4620 50%, #3d2e1f 100%);
}

.withdrawal-card.valorant-card {
    background: linear-gradient(135deg, #ff4655 0%, #e63946 50%, #d62828 100%);
}

.withdrawal-card.steam-card {
    background: linear-gradient(135deg, #1b2838 0%, #2a3f5f 50%, #0f1419 100%);
}

/* Generic gift card gradient */
.withdrawal-card.gift-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e72 50%, #ffa07a 100%);
}

/* Generic skin card gradient */
.withdrawal-card.skin-card {
    background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #059669 100%);
}

/* Generic cash card gradient */
.withdrawal-card.cash-card {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #1abc9c 100%);
}

/* Generic crypto card gradient */
.withdrawal-card.crypto-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #1a252f 100%);
}

/* Cash/Crypto Cards */
.withdrawal-card[style*="rgb(39, 174, 96)"],
.withdrawal-card[style*="rgb(46, 204, 113)"],
.withdrawal-card[style*="rgb(26, 188, 156)"] {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #1abc9c 100%) !important;
}

/* Responsive withdrawal grid */
@media (max-width: 1024px) {
    .withdrawal-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 18px;
    }
    
    .withdrawal-card {
        padding: 28px 20px;
        min-height: 180px;
    }
    
    .withdrawal-icon {
        height: 70px;
        width: 70px;
        font-size: 40px;
    }
    
    .withdrawal-name {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .withdrawal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .withdrawal-card {
        padding: 20px 15px;
        min-height: 160px;
    }
    
    .withdrawal-icon {
        height: 60px;
        width: 60px;
        font-size: 35px;
        margin-bottom: 10px;
    }
    
    .withdrawal-name {
        font-size: 14px;
    }
    
    .withdrawal-min {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .withdrawal-grid {
        grid-template-columns: 1fr;
    }
    
    .withdrawal-card {
        padding: 18px 12px;
        min-height: 140px;
    }
    
    .withdrawal-icon {
        height: 50px;
        width: 50px;
        font-size: 28px;
    }
    
    .withdrawal-name {
        font-size: 13px;
    }
}


/* Responsive Navigation */
@media (max-width: 1024px) {
    .bottom-nav {
        width: 140px;
    }
    
    .main-content {
        margin-left: 140px;
    }
}

@media (max-width: 768px) {
    /* On tablet/mobile: move navigation to bottom */
    .bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 70px;
        border-right: none;
        border-top: 2px solid rgba(16, 185, 129, 0.3);
        background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 15, 35, 0.99) 100%);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(16, 185, 129, 0.2) inset;
        align-items: center;
        justify-content: center;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        width: 100%;
        height: 100%;
        gap: 10px;
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .nav-bar-btn {
        padding: 8px 10px;
        border-left: none;
        border-bottom: 3px solid transparent;
        gap: 8px;
        min-width: 60px;
        justify-content: center;
    }
    
    .nav-bar-btn.active {
        border-left: none;
        border-bottom-color: rgba(16, 185, 129, 0.8);
        background: rgba(16, 185, 129, 0.15);
    }
    
    .main-content {
        margin-left: 0;
        margin-bottom: 70px;
        padding-bottom: 20px;
    }
    
    .nav-bar-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .nav-bar-btn {
        padding: 8px 8px;
        min-width: 50px;
        font-size: 12px;
    }
    
    .nav-bar-icon {
        width: 20px;
        height: 20px;
    }
    
    .nav-bar-label {
        font-size: 10px;
    }
}

/* ==================== LOGO & FAVICON STYLES ==================== */

/* Landing Header Navigation */
.landing-header {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.landing-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 18px;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.logo {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-red);
}

/* Auth Pages Logo */
.auth-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.auth-header .logo img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .landing-header nav {
        gap: 20px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .logo-img {
        height: 35px;
    }
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
}

.nav-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 10px;
    flex: 1;
    max-width: 80px;
}

.nav-bar-btn:hover {
    color: var(--accent-blue);
    background: rgba(52, 152, 219, 0.1);
}

.nav-bar-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.nav-bar-label {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* Dashboard Footer */
.dashboard-footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Page Header */
.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Content Card */
.content-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* User Balance and Profile in Header */
.user-balance {
    display: flex;
    align-items: center;
    gap: 10px;
}

.balance-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.balance-amount {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 16px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.username {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.logo-section h1 {
    margin: 0;
    font-size: 24px;
    color: var(--accent-red);
}

/* FAQ Page Styles */
.search-box {
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.faq-category {
    margin-bottom: 30px;
}

.faq-category h2 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.highlight {
    background: var(--accent-gold);
    color: var(--primary-bg);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Support Page Styles */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

.help-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.help-item:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.1);
    transform: translateY(-2px);
}

.help-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.help-item h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.help-item p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 14px;
}

.support-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

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

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(72, 187, 120, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

.alert-error {
    background: rgba(245, 101, 101, 0.1);
    border-color: var(--error-color);
    color: var(--error-color);
}

.help-section {
    text-align: center;
    padding: 30px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.help-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* About Page Styles */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.mission, .vision {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.feature-item h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-primary {
    background: var(--gradient-3d-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

.btn-secondary {
    background: var(--secondary-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--card-bg);
    color: var(--text-primary);
}

/* Legal Content */
.legal-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.admin-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px;
    }
    
    .nav-bar-btn {
        max-width: 60px;
    }
    
    .nav-bar-label {
        font-size: 11px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-help-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .support-stats {
        grid-template-columns: 1fr;
    }
    
    .help-icon {
        font-size: 36px;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
}