/* Devil Revenant MMO - Components CSS */

/* ===== AUDIO PERMISSION MODAL ===== */
.audio-permission-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    padding: 20px;
}

.audio-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
    animation: pulse 2s infinite;
}

.audio-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
}

.enable-audio-btn {
    padding: 18px 40px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff4500 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    margin-bottom: 20px;
}

.enable-audio-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.7);
}

.skip-audio-btn {
    padding: 12px 30px;
    background: transparent;
    color: #aaa;
    border: 2px solid #555;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skip-audio-btn:hover {
    border-color: #aaa;
    color: #fff;
}

/* ===== AUDIO CONTROLS WRAPPER ===== */
.audio-controls-wrapper {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.audio-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.toggle-audio-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    min-width: 120px;
}

.toggle-audio-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

#audio-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.toggle-audio-btn:hover #audio-icon {
    transform: scale(1.1);
}

/* ===== VOLUME CONTROL ===== */
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.volume-icon {
    font-size: 1.2rem;
}

.volume-slider {
    width: 150px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.3) 0%, 
        rgba(255, 107, 53, 0.6) 50%, 
        var(--primary-color) 100%);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.8);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.8);
}

.volume-percentage {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: bold;
    min-width: 40px;
    text-align: right;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a1a 50%, var(--darker-bg) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loading-logo {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 2rem;
}

.loading-progress-container {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.loading-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.notification.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.notification.loading {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    color: var(--text-primary);
    border: 1px solid var(--primary-color);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

.notification .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 1000;
    transition: width 0.1s ease;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ===== PARTICLES ===== */
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    bottom: -10px;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-up 6s linear infinite;
}

@keyframes float-up {
    0% {
        bottom: -10px;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
    }
}

/* ===== USER MENU ===== */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.welcome-text {
    color: var(--text-primary);
    font-weight: 500;
}

/* ===== TRAILER MODAL ===== */
.trailer-modal {
    max-width: 900px;
    width: 90%;
}

.trailer-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.trailer-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* ===== ENHANCED ANIMATIONS ===== */
.slide-in-top {
    animation: slideInTop 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-bottom {
    animation: slideInBottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.animate-in {
    animation: fadeInUp 0.6s ease-out both;
}

@keyframes slideInTop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ===== ENHANCED FORM ELEMENTS ===== */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--dark-bg);
    padding: 0 0.5rem;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* ===== DOWNLOAD PROGRESS ===== */
.download-progress {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 1rem;
    min-width: 300px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10000;
}

.download-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0.5rem 0;
}

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

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .loading-logo {
        font-size: 2rem;
    }
    
    .loading-progress-container {
        width: 250px;
    }
    
    .trailer-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .download-progress {
        bottom: 10px;
        left: 10px;
        right: 10px;
        min-width: auto;
    }
}

/* ===== DARK MODE ENHANCEMENTS ===== */
@media (prefers-color-scheme: dark) {
    .notification {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    }
    
    .form-input {
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .form-input:focus {
        background: rgba(0, 0, 0, 0.4);
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.no-transitions {
    transition: none !important;
}

.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    .notification,
    .scroll-to-top,
    .particle,
    .loading-spinner,
    .spinner {
        animation: none !important;
        transition: none !important;
    }
    
    .slide-in-top,
    .slide-in-left,
    .slide-in-bottom,
    .animate-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: relative;
    margin-right: 15px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

#current-lang-flag {
    font-size: 1.2rem;
}

#current-lang-code {
    font-size: 0.9rem;
    font-weight: 700;
}

.lang-chevron {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 10px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
}

.lang-option span {
    font-size: 1.3rem;
}

/* Responsive language selector */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 10px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        gap: 6px;
    }
    
    #current-lang-code {
        font-size: 0.8rem;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
    }
}
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== NPC & BLOCKCHAIN SECTIONS ===== */
.npc-showcase {
    padding: 80px 20px;
    background: linear-gradient(180deg, #302b63 0%, #24243e 100%);
}

.npc-container, .blockchain-container, .server-status .container {
    max-width: 1200px;
    margin: 0 auto;
}

.blockchain-container {
    max-width: 800px;
}

.npc-content-box, .blockchain-card, .world-distribution {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

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

.npc-btn, .wallet-btn {
    padding: 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: #fff;
}

.npc-btn:hover, .wallet-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.npc-btn-angel {
    background: linear-gradient(135deg, #ffd700 0%, #fff 100%);
    color: #222;
}

.npc-btn-demon {
    background: linear-gradient(135deg, #ff0000 0%, #8b0000 100%);
}

.npc-btn-hybrid {
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
}

.npc-btn-human {
    background: linear-gradient(135deg, #b4a078 0%, #64748b 100%);
}

.npc-dialogue-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 30px;
    min-height: 300px;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.npc-empty-state {
    text-align: center;
    color: #888;
    padding: 60px 20px;
}

.npc-empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.npc-empty-state p:first-of-type {
    font-size: 1.2rem;
}

.npc-empty-state p:last-of-type {
    font-size: 0.9rem;
    margin-top: 10px;
}

.npc-input-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.npc-input {
    flex: 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
}

.npc-send-btn {
    padding: 15px 30px;
    background: linear-gradient(90deg, #ffd700 0%, #ff4500 100%);
    color: #222;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.npc-send-btn:hover {
    transform: scale(1.05);
}

.npc-demo-warning {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.npc-demo-warning p:first-child {
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 5px;
}

.npc-demo-warning p:last-child {
    color: #ccc;
    font-size: 0.9rem;
}

.blockchain {
    padding: 80px 20px;
    background: #0f0c29;
}

.wallet-status {
    text-align: center;
    margin-bottom: 30px;
}

.wallet-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.wallet-status h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.wallet-status p {
    color: #aaa;
}

.wallet-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.wallet-btn-polkadot {
    background: linear-gradient(135deg, #e6007a 0%, #56008c 100%);
}

.wallet-btn span:first-child {
    font-size: 1.5rem;
}

.wallet-details {
    display: none;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.wallet-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wallet-detail-row:last-child {
    margin-bottom: 0;
}

.wallet-detail-row span:first-child {
    color: #aaa;
}

.wallet-address {
    color: #ffd700;
    font-family: monospace;
}

.wallet-balance {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.2rem;
}

.wallet-status-indicator {
    color: #4ecdc4;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wallet-status-dot {
    width: 8px;
    height: 8px;
    background: #4ecdc4;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.wallet-benefits {
    margin-top: 30px;
    padding: 20px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
}

.wallet-benefits h3 {
    color: #4ecdc4;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.wallet-benefits ul {
    list-style: none;
    padding: 0;
}

.wallet-benefits li {
    color: #ccc;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.wallet-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.server-status {
    padding: 80px 20px;
    background: linear-gradient(180deg, #24243e 0%, #0f0c29 100%);
}

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

.status-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.status-card h3 {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: normal;
}

.status-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
}

.status-online {
    color: #4ecdc4;
}

.status-connecting {
    color: #ffa500;
}

.world-distribution h3 {
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.world-bars {
    display: grid;
    gap: 15px;
}

.world-bar-item {
    margin-bottom: 10px;
}

.world-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #ccc;
}

.world-progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.world-progress {
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.ws-status-footer {
    margin-top: 30px;
    text-align: center;
}

.ws-status {
    color: #aaa;
    font-size: 0.9rem;
}

.ws-connected {
    color: #4ecdc4;
}

.ws-disconnected {
    color: #ff4444;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.3rem;
    color: #aaa;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.status-card-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.world-dist-item {
    text-align: center;
    padding: 15px;
}

.world-dist-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.world-dist-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.world-dist-name.angel { color: #ffd700; }
.world-dist-name.demon { color: #ff4444; }
.world-dist-name.hybrid { color: #9b59b6; }
.world-dist-name.human { color: #4ecdc4; }

.world-dist-count {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}