/* Custom Glassmorphism UI - Gaming Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    --bg-color: #0b0f19;
    --text-color: #f3f4f6;
    --text-muted: #9ca3af;
    --card-bg: rgba(17, 24, 39, 0.6);
    --nav-bg: rgba(11, 15, 25, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --input-bg: rgba(255, 255, 255, 0.03);
    --primary-glow: rgba(139, 92, 246, 0.5); /* Purple accent */
    --secondary-glow: rgba(56, 189, 248, 0.5); /* Blue accent */
    --transition-speed: 0.3s;
}

/* Premium Logo Animations */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes robot-walk {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(-5deg); }
    75% { transform: translateY(-2px) rotate(5deg); }
}

.robot-walking {
    display: inline-block;
    animation: robot-walk 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8)); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-shimmer {
    background: linear-gradient(
        90deg, 
        #ffffff 0%, 
        #a78bfa 20%, 
        #3b82f6 40%, 
        #ffffff 60%, 
        #a78bfa 80%, 
        #ffffff 100%
    );
    background-size: 200% auto;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.logo-number {
    display: inline-block;
    animation: logo-float 3s ease-in-out infinite;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(139, 92, 246, 0.4);
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.logo-icon-pulse { 
    animation: pulse-glow 2s ease-in-out infinite, float 3s ease-in-out infinite; 
}

/* ═══════════════════════════════════════════════════════════════════ */
/* NEW PREMIUM LOGO SYSTEM                                             */
/* ═══════════════════════════════════════════════════════════════════ */
.premium-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; position: relative; }
.logo-icon-wrapper { position: relative; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-hexagon { position: absolute; width: 100%; height: 100%; background: linear-gradient(135deg, #8b5cf6, #3b82f6); clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); animation: logo-pulse 3s ease-in-out infinite; }
.logo-hexagon-inner { position: absolute; width: 85%; height: 85%; background: #0b0f19; clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); z-index: 2; display: flex; align-items: center; justify-content: center; }
.logo-text-1 { color: #fff; font-size: 22px; font-weight: 900; font-style: italic; z-index: 3; text-shadow: 0 0 10px rgba(139, 92, 246, 0.5); font-family: 'Rajdhani', sans-serif; }
.logo-ring { position: absolute; width: 110%; height: 110%; border: 2px solid transparent; border-top-color: #8b5cf6; border-bottom-color: #3b82f6; border-radius: 50%; animation: logo-rotate 4s linear infinite; opacity: 0.6; }

.logo-text-wrapper { display: flex; flex-direction: column; line-height: 1; }
.logo-brand { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -1px; display: flex; align-items: center; gap: 2px; font-family: 'Rajdhani', sans-serif; }
.logo-brand span { background: linear-gradient(to right, #fff 20%, #a78bfa 50%, #fff 80%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shine 3s linear infinite; }
.logo-subtitle { font-size: 10px; font-weight: 800; color: #8b5cf6; text-transform: uppercase; letter-spacing: 4px; margin-top: 2px; position: relative; overflow: hidden; font-family: 'Rajdhani', sans-serif; }
.logo-subtitle::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent); animation: scan 2.5s infinite; }

@keyframes logo-pulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes logo-rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes shine { to { background-position: 200% center; } }
@keyframes scan { 0% { left: -100%; } 100% { left: 200%; } }


[data-theme="light"] {
    --bg-color: #f1f5f9;
    --text-color: #0f172a;
    --text-muted: #64748b;
    --card-bg: rgba(255, 255, 255, 0.7);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(15, 23, 42, 0.1);
    --input-bg: rgba(0, 0, 0, 0.03);
    --primary-glow: rgba(139, 92, 246, 0.2);
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(56, 189, 248, 0.08), transparent 25%);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

h1, h2, h3, h4, h5, h6, .gaming-font {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background var(--transition-speed);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Navbar */
.glass-nav {
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background var(--transition-speed), border-bottom var(--transition-speed);
}

/* Buttons */
.btn-glow {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-glow:hover {
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.02);
}

.btn-outline-glow {
    background: transparent;
    border: 1px solid #8b5cf6;
    color: #8b5cf6;
    border-radius: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline-glow:hover {
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

/* Inputs */
.glass-input {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: #8b5cf6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.55); /* Increased contrast from 0.3 */
}

select.glass-input option {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Table */
.glass-table {
    width: 100%;
    border-collapse: collapse;
}
.glass-table th {
    text-align: left;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}
.glass-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}
.glass-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-success { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-warning { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-danger { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-primary { background: rgba(139, 92, 246, 0.2); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.3); }

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

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.glow-text-sm {
    text-shadow: 0 0 5px rgba(167, 139, 250, 0.5);
    transition: all 0.3s ease;
}

.group:hover .glow-text-sm {
    color: #a78bfa !important;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.8);
}

.countdown-timer {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    margin: 0 4px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
    min-width: 40px;
    text-align: center;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0f19;
}
::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Timer Styling */
.timer-glow {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
    transition: all 0.5s ease;
}

.timer-critical {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    animation: critical-pulse 1s infinite alternate;
}

@keyframes critical-pulse {
    from { opacity: 0.8; box-shadow: 0 0 10px rgba(239, 68, 68, 0.2); }
    to { opacity: 1; box-shadow: 0 0 25px rgba(239, 68, 68, 0.5); }
}

.animate-spin-slow {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* Settings Page Styles */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .settings-grid {
        grid-template-columns: 1fr;
    }
}

.avatar-upload-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.avatar-preview {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #8b5cf6;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-cover: cover;
}

.avatar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.avatar-upload-container:hover .avatar-overlay {
    opacity: 1;
}

.verification-code-input {
    letter-spacing: 0.5em;
    font-weight: 800;
    text-align: center;
    font-size: 1.5rem;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 2rem 0;
}

.settings-card-glow {
    position: relative;
}

.settings-card-glow::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(45deg, #8b5cf6, #3b82f6);
    z-index: -1;
    border-radius: 1rem;
    opacity: 0.1;
}


/* Premium Green Seller Panel Button - Encouraging Sales */
.seller-btn-premium-green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px -5px rgba(34, 197, 94, 0.4);
}

.seller-btn-premium-green::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.1s;
    animation: seller-shine 4s ease-in-out infinite;
}

.seller-btn-premium-green:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.8);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 25px -5px rgba(34, 197, 94, 0.6);
}

.seller-btn-premium-green:hover .fa-crown {
    transform: rotate(15deg) scale(1.2);
    color: #4ade80;
}

@keyframes seller-shine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.seller-badge-text {
    background: linear-gradient(90deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Responsive Table Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* ═══════════════════════════════════════════════════════════════════ */
/* SELLER RANKS & BADGES                                               */
/* ═══════════════════════════════════════════════════════════════════ */
.rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.rank-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: premium-shine 4s infinite;
}

@keyframes premium-shine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.rank-bronze   { background: linear-gradient(135deg, #cd7f32, #8b4513); color: #fff; }
.rank-silver   { background: linear-gradient(135deg, #e2e2e2, #7f8c8d); color: #2c3e50; border-color: #fff; }
.rank-gold     { background: linear-gradient(135deg, #ffd700, #b8860b); color: #5c4033; box-shadow: 0 0 15px rgba(255,215,0,0.3); }
.rank-platinum { background: linear-gradient(135deg, #e5e4e2, #3498db); color: #1a5276; box-shadow: 0 0 15px rgba(52,152,219,0.3); }
.rank-elite    { background: linear-gradient(135deg, #a29bfe, #6c5ce7); color: #fff; box-shadow: 0 0 20px rgba(108,92,231,0.4); }
.rank-vip      { 
    background: linear-gradient(135deg, #ff7675, #d63031, #000); 
    background-size: 200% 200%;
    color: #fff; 
    border: 1px solid rgba(255,255,255,0.4); 
    animation: vip-pulse 2s infinite, vip-gradient 3s ease infinite; 
}

@keyframes vip-pulse {
    0% { box-shadow: 0 0 0 0 rgba(231,76,60,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(231,76,60,0); }
    100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
}

@keyframes vip-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.verified-badge {
    color: #3897f0;
    font-size: 14px;
    filter: drop-shadow(0 0 5px rgba(56,151,240,0.4));
    cursor: pointer;
}

.seller-card-premium {
    background: rgba(139,92,246,0.05);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.seller-card-premium:hover {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.4);
    transform: translateY(-2px);
}

/* Featured Product Card Effects */
.pc-featured-vip {
    position: relative;
    border-color: rgba(231,76,60,0.4) !important;
    animation: vip-card-glow 3s infinite alternate;
}

@keyframes vip-card-glow {
    0% { box-shadow: 0 0 5px rgba(231,76,60,0.2); border-color: rgba(231,76,60,0.3); }
    100% { box-shadow: 0 0 20px rgba(231,76,60,0.5); border-color: rgba(231,76,60,0.8); }
}

.pc-featured-elite {
    position: relative;
    border-color: rgba(155,89,182,0.4) !important;
    animation: elite-card-glow 4s infinite alternate;
}

@keyframes elite-card-glow {
    0% { box-shadow: 0 0 5px rgba(155,89,182,0.2); border-color: rgba(155,89,182,0.3); }
    100% { box-shadow: 0 0 15px rgba(155,89,182,0.4); border-color: rgba(155,89,182,0.6); }
}

/* Featured Badge on Image */
.pc-featured-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(231,76,60,0.9);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    animation: scale-pulse 2s infinite;
}

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

/* Badge Info Popover */
.badge-info-popover {
    position: absolute;
    z-index: 9999999;
    width: 280px;
    background: rgba(15, 18, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(139, 92, 246, 0.2);
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.badge-info-popover.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.badge-info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.badge-info-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #fff;
}

.badge-info-desc {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

.badge-info-perks {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #d1d5db;
}

.perk-item i {
    color: #34d399;
    font-size: 0.65rem;
}

/* Verification Badges (Premium SVG Style) */
.v-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-left: 4px;
    position: relative;
    width: 16px;
    height: 16px;
}
.v-icon {
    width: 100%;
    height: 100%;
    display: block;
}
.v-blue .v-bg {
    fill: #1d9bf0;
}
.v-gold .v-bg {
    fill: #fbbf24;
}
.v-blue {
    filter: drop-shadow(0 0 3px rgba(29, 155, 240, 0.4));
}
.v-gold {
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}
/* Premium Become Seller Badge with Animations */
@keyframes shimmer-flow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(139, 92, 246, 0.3); box-shadow: 0 0 5px rgba(139, 92, 246, 0.1); }
    50% { border-color: rgba(139, 92, 246, 0.8); box-shadow: 0 0 15px rgba(139, 92, 246, 0.3); }
}

.btn-become-seller {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    background-size: 200% 100%;
    animation: shimmer-flow 4s linear infinite, pulse-border 3s ease-in-out infinite;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.btn-become-seller i {
    font-size: 11px;
    color: #a78bfa;
    animation: bounce-small 2s infinite;
}

@keyframes bounce-small {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.btn-become-seller:hover {
    transform: translateY(-1px) scale(1.02);
    background: rgba(139, 92, 246, 0.2);
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* Dynamic Premium Button (Based on User Image) */
@keyframes moving-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-become-seller-dynamic {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(45deg, #06b6d4, #3b82f6, #a855f7, #06b6d4);
    background-size: 300% 300%;
    animation: moving-gradient 4s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(59, 130, 246, 0.3);
}

.btn-become-seller-dynamic i {
    font-size: 11px;
    color: #ffffff;
    animation: bounce-small 2s infinite;
}

.btn-become-seller-dynamic:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5), 0 0 20px rgba(168, 85, 247, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Premium Header Balance Pill */
.header-balance-premium {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 4px 12px 4px 5px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.balance-icon-wrapper {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 14px;
    transition: all 0.3s ease;
}

.balance-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.balance-label {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    font-weight: 800;
}

.balance-val {
    font-size: 14px;
    font-weight: 900;
    color: #4ade80;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}

.header-balance-premium:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(17, 24, 39, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(139, 92, 246, 0.1);
}

.header-balance-premium:hover .balance-icon-wrapper {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.header-balance-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50px;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: balance-shimmer 6s infinite;
}

@keyframes balance-shimmer {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

@media (max-width: 768px) {
    .header-balance-premium {
        padding: 3px 8px 3px 4px;
        gap: 6px;
    }
    .balance-icon-wrapper {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    .balance-val {
        font-size: 12px;
    }
    .balance-label {
        font-size: 7px;
    }
}

/* -- MYTHIC LEGENDARY SYSTEM -- */
.mythic-avatar-wrap { position: relative; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mythic-aura { position: absolute; inset: -10px; background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%); border-radius: 50%; animation: mythic-pulse 4s ease-in-out infinite; pointer-events: none; z-index: 0; }
.mythic-frame { position: absolute; inset: 0; border-radius: 50%; padding: 2px; background: conic-gradient(from 0deg, transparent, #8b5cf6, #06b6d4, #8b5cf6, transparent); animation: mythic-rotate 3s linear infinite; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; z-index: 1; }
.mythic-creature { position: absolute; inset: -12px; z-index: 3; pointer-events: none; animation: creature-float 6s ease-in-out infinite; }
.mythic-creature svg { width: 100%; height: 100%; filter: drop-shadow(0 0 8px #8b5cf6); opacity: 0.9; }
.mythic-particles { position: absolute; inset: -15px; pointer-events: none; z-index: 4; overflow: hidden; border-radius: 50%; }
.mythic-particle { position: absolute; width: 2px; height: 2px; background: #fff; border-radius: 50%; opacity: 0; animation: particle-rise 3s infinite linear; }
.mythic-xs { width: 32px !important; height: 32px !important; }
.mythic-xs .mythic-aura { inset: -6px; }
.mythic-xs .mythic-creature { inset: -8px; }
.mythic-gold .mythic-frame { background: conic-gradient(from 0deg, #fbbf24, #f59e0b, #fbbf24, transparent); }
.mythic-gold .mythic-aura { background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%); }
.mythic-gold .mythic-creature svg { filter: drop-shadow(0 0 8px #fbbf24); }
@keyframes mythic-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes mythic-pulse { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.1); } }
@keyframes creature-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-4px) rotate(3deg); } }
@keyframes particle-rise { 0% { transform: translateY(20px) scale(0); opacity: 0; } 50% { opacity: 0.6; } 100% { transform: translateY(-20px) scale(1); opacity: 0; } }
