/* ============================================
   ASPIREWEBFX MU ONLINE - GAME UI STYLES
   Dark Fantasy MMORPG Interface
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a12;
    --bg-darker: #050508;
    --glass-bg: rgba(15, 20, 35, 0.6);
    --glass-border: rgba(100, 150, 255, 0.3);
    --glow-blue: rgba(100, 150, 255, 0.8);
    --glow-purple: rgba(139, 92, 246, 0.8);
    --glow-gold: rgba(212, 175, 55, 0.8);
    --text-primary: #e6e6e6;
    --text-secondary: #b0b0b0;
    --accent-blue: #6b8dd6;
    --accent-purple: #8b5cf6;
    --accent-gold: #d4af37;
}

body.game-ui {
    background: linear-gradient(135deg, #0a0a12 0%, #050508 50%, #0a0a12 100%);
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Rajdhani', 'Arial', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body.game-ui::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 10, 18, 0.9) 0%, rgba(5, 5, 8, 0.95) 100%);
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   LEFT SIDEBAR
   ============================================ */

.game-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(20px);
    border-right: 2px solid var(--glass-border);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5), inset -2px 0 20px rgba(100, 150, 255, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.sidebar-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-blue);
    text-shadow: 0 0 20px var(--glow-blue);
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sidebar-stats {
    padding: 0 15px;
    margin-bottom: 20px;
}

.stat-box {
    background: rgba(15, 20, 35, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--glow-blue);
    box-shadow: 0 0 15px rgba(100, 150, 255, 0.3);
}

.stat-pvp {
    border-left: 3px solid #51cf66;
}

.stat-pve {
    border-left: 3px solid #ff6b6b;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

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

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0 10px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 5px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.nav-item:hover {
    background: rgba(100, 150, 255, 0.1);
    color: var(--text-primary);
    border-left: 3px solid var(--accent-blue);
}

.nav-item.active {
    background: rgba(100, 150, 255, 0.2);
    color: var(--accent-blue);
    border-left: 3px solid var(--accent-blue);
    box-shadow: inset 0 0 20px rgba(100, 150, 255, 0.1);
}

.nav-icon {
    font-size: 18px;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.nav-text {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-expandable.active .nav-arrow {
    transform: rotate(180deg);
}

.nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 20px;
}

.nav-expandable.active + .nav-submenu {
    max-height: 300px;
}

.nav-subitem {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.nav-subitem:hover,
.nav-subitem.active {
    color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-purple);
    margin-right: 10px;
    box-shadow: 0 0 10px var(--glow-purple);
}

.sidebar-discord {
    padding: 15px;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.discord-header {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-purple);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.discord-online {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.discord-link {
    margin-top: 10px;
}


/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.game-main {
    margin-left: 280px;
    margin-top: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 100vh;
    padding-bottom: 30px;
}

/* ============================================
   CONTENT PANELS
   ============================================ */

.content-panel {
    background: rgba(15, 20, 35, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(100, 150, 255, 0.05);
    position: relative;
    overflow: visible;
    min-height: 200px;
}

.content-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 150, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--glass-border);
}

.panel-icon {
    font-size: 24px;
}

.panel-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--glow-blue);
    font-family: 'Orbitron', sans-serif;
}

.panel-content {
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Countdown Panel */
.countdown-panel {
    text-align: center;
    overflow: visible;
    min-height: 300px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    min-height: 200px;
    position: relative;
    z-index: 10;
}

.countdown-container .time-box {
    background: rgba(15, 20, 35, 0.9);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px 20px;
    min-width: 140px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(100, 150, 255, 0.2);
}

.countdown-container .time-box:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.countdown-container .time-num {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-blue);
    text-shadow: 0 0 20px var(--glow-blue);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 8px;
}

.countdown-container .time-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.server-live-container {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.server-live-text {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.download-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.4), rgba(139, 92, 246, 0.4));
    border: 3px solid var(--accent-blue);
    border-radius: 12px;
    color: var(--accent-blue);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 30px rgba(100, 150, 255, 0.5), inset 0 0 20px rgba(100, 150, 255, 0.1);
    position: relative;
    z-index: 1000;
    cursor: pointer;
    white-space: nowrap;
    pointer-events: auto;
}

.download-button:hover {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.6), rgba(139, 92, 246, 0.6));
    box-shadow: 0 0 50px var(--glow-blue), inset 0 0 30px rgba(100, 150, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--accent-gold);
}

.download-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Updates Panel */
.updates-panel-main {
    max-height: 800px;
    overflow-y: auto;
}

.updates-section {
    position: relative;
}

.updates-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.completed-badge {
    background: rgba(81, 207, 102, 0.2);
    border: 1px solid #51cf66;
    color: #51cf66;
    box-shadow: 0 0 15px rgba(81, 207, 102, 0.3);
}

.updates-title {
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    font-weight: 700;
}

.updates-list {
    list-style: none;
    padding: 0;
}

.updates-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: rgba(15, 20, 35, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-align: left;
}

.updates-list li:hover {
    border-color: var(--glow-blue);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(100, 150, 255, 0.2);
    transform: translateX(5px);
}

/* Community Panel */
.community-panel {
    background: rgba(15, 20, 35, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px;
}

.social-links-box {
    text-align: center;
    padding: 20px;
}

.social-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.social-title {
    font-size: 24px;
    color: var(--accent-blue);
    margin-bottom: 15px;
    text-shadow: 0 0 15px var(--glow-blue);
    font-weight: 700;
}

.social-reward-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.zen-reward {
    color: var(--accent-gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.social-links-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(15, 20, 35, 0.7);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    min-width: 150px;
}

.social-link:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(100, 150, 255, 0.5);
    transform: translateY(-5px);
}

.social-link.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.5);
}

.social-link.discord:hover {
    border-color: #5865f2;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.5);
}

.social-link.messenger:hover {
    border-color: #0084ff;
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.5);
}

.social-icon {
    font-size: 36px;
}

.social-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid #5865f2;
    border-radius: 6px;
    color: #5865f2;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background: rgba(88, 101, 242, 0.4);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}


/* ============================================
   MODAL STYLES
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.game-modal {
    background: rgba(15, 20, 35, 0.95);
    backdrop-filter: blur(30px);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(100, 150, 255, 0.1);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.modal-close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    color: #ff6b6b;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.modal-body {
    padding: 20px;
}

.modal-body h3 {
    font-size: 24px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--glow-blue);
}

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

.info-section {
    background: rgba(15, 20, 35, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 15px;
}

.info-section h4 {
    font-size: 16px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-align: left;
}

.info-section strong {
    color: var(--text-primary);
}

.economy-highlight {
    grid-column: 1 / -1;
}

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

.currency-card {
    background: rgba(15, 20, 35, 0.8);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.currency-card:hover {
    border-color: var(--glow-blue);
    box-shadow: 0 0 20px rgba(100, 150, 255, 0.3);
    transform: translateY(-3px);
}

.currency-card.gold-card {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.currency-card.gold-card:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.currency-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.currency-type {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.currency-use {
    font-size: 12px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.currency-exchange {
    font-size: 11px;
    color: var(--accent-blue);
    font-weight: 600;
}

.currency-exchange.gold-exchange {
    color: var(--accent-gold);
}

.currency-note,
.currency-note-warning {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-style: italic;
}

.currency-note-warning {
    color: #ff6b6b;
}

.gold-credits-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.gold-credits-info h5 {
    font-size: 16px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-obtain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gold-method {
    background: rgba(15, 20, 35, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.gold-method:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.gold-method-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.gold-method-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-method-detail {
    font-size: 12px;
    color: var(--text-secondary);
}

.gold-highlight {
    color: var(--accent-gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.popup-image-body {
    text-align: center;
}

.popup-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--glass-border);
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.modal-btn {
    padding: 12px 40px;
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.3), rgba(139, 92, 246, 0.3));
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    color: var(--accent-blue);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.5), rgba(139, 92, 246, 0.5));
    box-shadow: 0 0 30px var(--glow-blue);
    transform: translateY(-2px);
}

/* ============================================
   COUNTDOWN & FIREWORKS
   ============================================ */

#countdown {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
    z-index: 500;
    pointer-events: none;
}

#fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

.firework-particle {
    position: absolute;
    border-radius: 50%;
    animation: firework-explode 1s ease-out forwards;
}

@keyframes firework-explode {
    to {
        transform: translate(var(--end-x), var(--end-y));
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE (Optional - Desktop First)
   ============================================ */

@media (max-width: 1400px) {
    .game-main {
        flex-direction: column;
    }
    
    .right-panels {
        width: 100%;
        flex-direction: row;
    }
    
    .stats-panel,
    .buffs-panel {
        flex: 1;
    }
}

@media (max-width: 1024px) {
    .game-sidebar {
        width: 240px;
    }
    
    .character-strip {
        left: 240px;
    }
    
    .game-main {
        margin-left: 240px;
    }
    
    .action-bar {
        left: 240px;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 15, 25, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 150, 255, 0.3);
    border-radius: 5px;
    border: 2px solid rgba(10, 15, 25, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 150, 255, 0.5);
    box-shadow: 0 0 10px rgba(100, 150, 255, 0.3);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
    display: none !important;
}

.text-glow-blue {
    text-shadow: 0 0 10px var(--glow-blue);
}

.text-glow-gold {
    text-shadow: 0 0 10px var(--glow-gold);
}

.text-glow-purple {
    text-shadow: 0 0 10px var(--glow-purple);
}

/* ============================================
   CONTENT GRID & REWARD BOXES
   ============================================ */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.left-side,
.right-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reward-box {
    background: rgba(15, 20, 35, 0.7);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.reward-box:hover {
    border-color: var(--glow-blue);
    box-shadow: 0 0 25px rgba(100, 150, 255, 0.3);
}

.reward-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.reward-badge.completed-badge {
    background: rgba(81, 207, 102, 0.2);
    border: 1px solid #51cf66;
    color: #51cf66;
    box-shadow: 0 0 15px rgba(81, 207, 102, 0.3);
}

.reward-box h3 {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    font-weight: 700;
}

.reward-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(15, 20, 35, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reward-item:hover {
    border-color: var(--glow-blue);
    box-shadow: 0 0 15px rgba(100, 150, 255, 0.2);
    transform: translateX(5px);
}

.reward-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 150, 255, 0.1);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.reward-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Redeem Items */
.redeem-leaderboard {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.redeem-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(15, 20, 35, 0.7);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.redeem-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.redeem-rank-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 150, 255, 0.2);
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.redeem-item-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.redeem-item-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.redeem-item-info {
    flex: 1;
}

.redeem-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.redeem-item-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Orbitron', sans-serif;
}

/* Donation Specific */
.first-donator-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.donator-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.donator-info {
    flex: 1;
}

.donator-ign {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

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

.donator-reward {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guild-total {
    margin-top: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold);
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

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

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