/**
 * DR Admin Panel - Gaming Theme
 * Dark Cyberpunk Style with Neon Effects
 */

/* CSS Variables */
:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: rgba(26, 26, 46, 0.9);
    --bg-card-hover: rgba(26, 26, 46, 0.95);

    --neon-cyan: #00f5ff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff88;
    --neon-yellow: #ffff00;
    --neon-orange: #ff8800;
    --neon-red: #ff5050;
    --neon-purple: #8b5cf6;
    --neon-blue: #00aaff;

    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --text-dark: #0a0a1a;

    --border-glow: rgba(0, 245, 255, 0.3);
    --border-subtle: rgba(0, 245, 255, 0.1);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'Kanit', sans-serif !important;
    background: var(--bg-primary) !important;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%) !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    color: var(--text-secondary);
}

/* Gaming Font */
.gaming-font,
.font-gaming {
    font-family: 'Orbitron', sans-serif !important;
}

/* ===== GLOW EFFECTS ===== */
.glow-cyan {
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

.glow-pink {
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
}

.glow-green {
    text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green), 0 0 40px var(--neon-green);
}

.glow-yellow {
    text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow), 0 0 40px var(--neon-yellow);
}

.glow-orange {
    text-shadow: 0 0 10px var(--neon-orange), 0 0 20px var(--neon-orange), 0 0 40px var(--neon-orange);
}

.glow-red {
    text-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red), 0 0 40px var(--neon-red);
}

.box-glow-cyan {
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3), inset 0 0 15px rgba(0, 245, 255, 0.1);
}

.box-glow-pink {
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3), inset 0 0 15px rgba(255, 0, 255, 0.1);
}

.box-glow-green {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3), inset 0 0 15px rgba(0, 255, 136, 0.1);
}

.box-glow-yellow {
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3), inset 0 0 15px rgba(255, 255, 0, 0.1);
}

/* ===== GAME CARD ===== */
.game-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(22, 33, 62, 0.9));
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.game-card:hover {
    border-color: rgba(0, 245, 255, 0.5);
    transform: translateY(-2px);
}

/* Animated Border */
@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(0, 245, 255, 0.3);
    }

    50% {
        border-color: rgba(255, 0, 255, 0.3);
    }
}

.animated-border {
    animation: borderGlow 3s ease-in-out infinite;
}

/* ===== GAMING HEADER ===== */
.gaming-header {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), var(--neon-cyan), transparent) 1;
    position: relative;
}

.gaming-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.5), transparent);
    filter: blur(2px);
}


/* ===== MENU BUTTON ===== */
.menu-btn {
    background: linear-gradient(145deg, rgba(40, 40, 80, 0.8), rgba(30, 30, 60, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-secondary);
}

.menu-btn:hover {
    transform: scale(1.05);
    border-color: rgba(0, 247, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.3);
    color: var(--text-primary);
    z-index: 10;
}

/* ===== CYBER BUTTONS ===== */
.cyber-btn {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 245, 255, 0.5);
    color: var(--neon-cyan);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cyber-btn:hover {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.4), rgba(255, 0, 255, 0.4));
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    transform: translateY(-2px);
    color: var(--neon-cyan);
}

.cyber-btn-green {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 100, 0.2));
    border-color: rgba(0, 255, 136, 0.5);
    color: var(--neon-green);
}

.cyber-btn-green:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.4), rgba(0, 200, 100, 0.4));
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    color: var(--neon-green);
}

.cyber-btn-orange {
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.2), rgba(255, 68, 0, 0.2));
    border-color: rgba(255, 136, 0, 0.5);
    color: var(--neon-orange);
}

.cyber-btn-orange:hover {
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.4), rgba(255, 68, 0, 0.4));
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.5);
    color: var(--neon-orange);
}

.cyber-btn-pink {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(200, 0, 200, 0.2));
    border-color: rgba(255, 0, 255, 0.5);
    color: var(--neon-pink);
}

.cyber-btn-pink:hover {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.4), rgba(200, 0, 200, 0.4));
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    color: var(--neon-pink);
}

.cyber-btn-red {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.2), rgba(200, 0, 0, 0.2));
    border-color: rgba(255, 50, 50, 0.5);
    color: var(--neon-red);
}

.cyber-btn-red:hover {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.4), rgba(200, 0, 0, 0.4));
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.5);
    color: var(--neon-red);
}

.cyber-btn-yellow {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.2), rgba(200, 200, 0, 0.2));
    border-color: rgba(255, 255, 0, 0.5);
    color: var(--neon-yellow);
}

.cyber-btn-yellow:hover {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.4), rgba(200, 200, 0, 0.4));
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    color: var(--neon-yellow);
}

/* ===== GAMING INPUT ===== */
.gaming-input,
.gaming-select,
.gaming-textarea {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--border-glow);
    color: var(--text-secondary);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.gaming-input:focus,
.gaming-select:focus,
.gaming-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.gaming-input::placeholder,
.gaming-textarea::placeholder {
    color: rgba(200, 200, 200, 0.5);
}

.gaming-select option {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

/* ===== GAMING TABLE ===== */
.gaming-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.gaming-table thead {
    background: linear-gradient(135deg, #0f0f23, #1a1a3e);
}

.gaming-table th {
    padding: 15px;
    text-align: left;
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border-glow);
}

.gaming-table tbody tr {
    background: rgba(26, 26, 46, 0.5);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-subtle);
}

.gaming-table tbody tr:hover {
    background: rgba(0, 245, 255, 0.1);
    transform: scale(1.01);
}

.gaming-table td {
    padding: 12px 15px;
    color: var(--text-secondary);
}

/* ===== TYPE BADGES ===== */
.type-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.type-wear {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.3), rgba(0, 50, 200, 0.3));
    border: 1px solid rgba(0, 150, 255, 0.5);
    color: var(--neon-blue);
}

.type-armor {
    background: linear-gradient(135deg, rgba(0, 200, 100, 0.3), rgba(0, 150, 50, 0.3));
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: var(--neon-green);
}

.type-weapon {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.3), rgba(200, 0, 0, 0.3));
    border: 1px solid rgba(255, 100, 100, 0.5);
    color: #ff6666;
}

.type-etc {
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.3), rgba(200, 150, 0, 0.3));
    border: 1px solid rgba(255, 220, 0, 0.5);
    color: #ffdd00;
}

.type-pet {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(200, 0, 200, 0.3));
    border: 1px solid rgba(255, 100, 255, 0.5);
    color: #ff66ff;
}

.type-sub {
    background: linear-gradient(135deg, rgba(150, 150, 150, 0.3), rgba(100, 100, 100, 0.3));
    border: 1px solid rgba(200, 200, 200, 0.5);
    color: #cccccc;
}

/* ===== STATUS BADGES ===== */
.status-active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 200, 100, 0.3));
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: var(--neon-green);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.status-inactive {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.3), rgba(200, 0, 0, 0.3));
    border: 1px solid rgba(255, 100, 100, 0.5);
    color: #ff6666;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

/* ===== GAMING DROPDOWN ===== */
.gaming-dropdown {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.98), rgba(22, 33, 62, 0.98));
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gaming-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.gaming-dropdown-item:hover {
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
}

.gaming-dropdown-item.danger:hover {
    background: rgba(255, 50, 50, 0.1);
    color: var(--neon-red);
}

/* ===== PAGINATION ===== */
.gaming-pagination-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-glow);
    color: var(--neon-cyan);
    cursor: pointer;
}

.gaming-pagination-btn:hover:not(:disabled) {
    background: rgba(0, 245, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
    transform: translateY(-2px);
}

.gaming-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gaming-pagination-btn.active {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    color: var(--text-dark);
    border-color: transparent;
}

/* ===== QUICK FILTER BUTTONS ===== */
.quick-filter-btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.quick-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.quick-filter-btn:hover::before {
    left: 100%;
}

.quick-filter-btn:hover {
    transform: translateY(-3px);
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 245, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--neon-cyan);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.slide-in {
    animation: slideInDown 0.5s ease-out;
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink));
}

/* ===== ITEM ICON CONTAINER ===== */
.item-icon-container {
    position: relative;
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-icon-container:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
    transform: scale(1.05);
}

/* ===== SHAPE BUTTON ===== */
.shape-btn {
    padding: 8px 14px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shape-btn:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
}

.shape-btn.active {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(255, 0, 255, 0.3));
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(22, 33, 62, 0.9));
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
    background-image:
        linear-gradient(rgba(0, 247, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ===== ALERT BOXES ===== */
.alert-success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.5);
    color: var(--neon-green);
    padding: 15px 20px;
    border-radius: 12px;
}

.alert-error {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.2), rgba(200, 0, 0, 0.1));
    border: 1px solid rgba(255, 100, 100, 0.5);
    color: var(--neon-red);
    padding: 15px 20px;
    border-radius: 12px;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.2), rgba(200, 150, 0, 0.1));
    border: 1px solid rgba(255, 220, 0, 0.5);
    color: var(--neon-yellow);
    padding: 15px 20px;
    border-radius: 12px;
}

.alert-info {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(0, 200, 255, 0.1));
    border: 1px solid rgba(0, 245, 255, 0.5);
    color: var(--neon-cyan);
    padding: 15px 20px;
    border-radius: 12px;
}

/* ===== TABS ===== */
.gaming-tab {
    padding: 12px 24px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gaming-tab:hover {
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
}

.gaming-tab.active {
    background: var(--bg-card);
    border-color: var(--border-glow);
    border-bottom-color: transparent;
    color: var(--neon-cyan);
}

/* ===== LABELS ===== */
.gaming-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--neon-cyan);
}

/* ===== MODAL ===== */
.gaming-modal {
    background: linear-gradient(145deg, var(--bg-card), rgba(22, 33, 62, 0.98));
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.gaming-modal-header {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-bottom: 1px solid var(--border-glow);
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

.gaming-modal-body {
    padding: 20px;
}

.gaming-modal-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 20px;
    border-radius: 0 0 20px 20px;
}

/* ===== CHECKBOX & RADIO ===== */
.gaming-checkbox,
.gaming-radio {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-glow);
    border-radius: 4px;
    background: rgba(10, 10, 26, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gaming-radio {
    border-radius: 50%;
}

.gaming-checkbox:checked,
.gaming-radio:checked {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    border-color: transparent;
}

.gaming-checkbox:checked::after {
    content: '✓';
    display: block;
    text-align: center;
    color: var(--text-dark);
    font-weight: bold;
    line-height: 16px;
}

.gaming-radio:checked::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    margin: 4px;
    background: var(--text-dark);
    border-radius: 50%;
}

/* ===== PROGRESS BAR ===== */
.gaming-progress {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    height: 20px;
    overflow: hidden;
}

.gaming-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.gaming-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ===== TOOLTIP ===== */
.gaming-tooltip {
    position: relative;
}

.gaming-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.gaming-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

/* ===== UTILITY CLASSES ===== */
.text-cyan {
    color: var(--neon-cyan);
}

/* ===== ITEMS PAGE STYLES ===== */
.accent-primary {
    color: #00f5ff;
}

.accent-secondary {
    color: #10b981;
}

.text-emerald-400 {
    color: #34d399;
}

.bg-emerald-400 {
    background-color: #34d399;
}

.border-emerald-500\/50 {
    border-color: rgba(16, 185, 129, 0.5);
}

.glow-emerald {
    text-shadow: 0 0 10px #10b981, 0 0 20px #10b981, 0 0 40px #10b981;
}

.box-glow-emerald {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3), inset 0 0 15px rgba(16, 185, 129, 0.1);
}

/* Emerald cyber button variant */
.cyber-btn-emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-color: rgba(16, 185, 129, 0.5);
    color: #10b981;
}

.cyber-btn-emerald:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(5, 150, 105, 0.4));
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    color: #10b981;
}

/* Header accent line with cyan/emerald */
.gaming-header-items::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f5ff, #10b981, #00f5ff, transparent);
    filter: blur(1px);
}

/* Stats box with emerald accent */
.stat-box-emerald {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
}

/* Custom item icon hover effect */
.item-icon-wrapper {
    position: relative;
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 2px solid rgba(0, 245, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-icon-wrapper:hover {
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    transform: scale(1.08);
}

.item-icon-wrapper .item-vnum {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.85);
    color: #00f5ff;
    font-size: 9px;
    font-family: 'Orbitron', monospace;
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

/* Quick filter buttons with emerald hover */
.quick-filter-item {
    position: relative;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.quick-filter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    transition: left 0.5s ease;
}

.quick-filter-item:hover::before {
    left: 100%;
}

.quick-filter-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    border-color: #10b981;
    color: #10b981;
}

.text-green {
    color: var(--neon-green);
}

.text-yellow {
    color: var(--neon-yellow);
}

.text-orange {
    color: var(--neon-orange);
}

.text-red {
    color: var(--neon-red);
}

.text-purple {
    color: var(--neon-purple);
}

.text-blue {
    color: var(--neon-blue);
}

.bg-dark {
    background: var(--bg-primary);
}

.bg-card {
    background: var(--bg-card);
}

.border-glow {
    border-color: var(--border-glow);
}

.border-subtle {
    border-color: var(--border-subtle);
}