﻿

.layout-content {
    background: linear-gradient(135deg, rgba(25, 25, 72, 0.95) 0%, rgba(0, 0, 51, 0.95) 100%) !important;
    margin-top: 10px !important; /* опустить на 10px вниз */
    border-radius: 16px !important; /* закругленные углы как у боковых блоков */
    border: 2px solid rgba(120, 140, 255, 0.7) !important; /* яркий синий бордер */
    box-shadow: 
        0 4px 14px rgba(0, 0, 0, 0.45), 
        0 0 12px rgba(120, 140, 255, 0.3), /* уменьшенное свечение, чтобы не выходило за углы */
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important; /* внутренняя подсветка */
    padding: 30px !important; /* внутренние отступы для контента */
    position: relative !important;
    overflow: hidden !important; /* обрезать свечение по границам закругленных углов */
}

.layout-content .body {
    border: none !important;
    box-shadow: none !important;
}

.layout-content h1,
.layout-content .body h1,
main.layout-content h1,
.body h1[style*="text-align"] {
    font-size: 24px !important; /* увеличенный шрифт */
    color: #FFD700 !important; /* золотой цвет */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important; /* легкое свечение */
    margin: 20px 0 !important;
    font-weight: 600 !important;
    border: 0 !important; /* убираем рамку */
    border-radius: 0 !important; /* убираем закругление */
    box-shadow: none !important; /* убираем тень/обводку */
    outline: none !important; /* убираем outline */
    background: transparent !important; /* прозрачный фон */
    padding: 10px !important; /* добавляем немного отступов */
}

.block-border {
    border-radius: 12px !important;
    overflow: hidden;
}


.block-border-bottom {
    border-radius: 0 0 12px 12px !important;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}


@keyframes subtle-glow {
    0%, 100% {
        text-shadow: 
            0 0 8px rgba(255, 215, 0, 0.5),
            0 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 12px rgba(255, 215, 0, 0.7),
            0 2px 5px rgba(0, 0, 0, 0.9);
    }
}

.pt {
    background: linear-gradient(135deg, rgba(30, 30, 70, 0.6) 0%, rgba(15, 15, 45, 0.6) 100%) !important;
    border: 2px solid rgba(120, 140, 255, 0.6) !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    margin: 15px auto !important;
    max-width: 650px !important;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(120, 140, 255, 0.2) !important;
}

.pt img {
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5)) !important;
}

.pt .bluepost {
    color: #c9d1ff !important;
    text-align: center !important;
    line-height: 1.4 !important;
}


@keyframes button-glow-pulse {
    0%, 100% {
        box-shadow: 
            0 4px 6px rgba(0, 0, 0, 0.3),
            0 1px 3px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.15),
            0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 
            0 4px 6px rgba(0, 0, 0, 0.3),
            0 1px 3px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.15),
            0 0 30px rgba(255, 215, 0, 0.6);
    }
}

@keyframes info-shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.info-icon {
    flex-shrink: 0 !important;
    padding: 8px !important;
    background: linear-gradient(135deg, rgba(120, 140, 255, 0.3) 0%, rgba(80, 100, 200, 0.3) 100%) !important;
    border: 2px solid rgba(120, 140, 255, 0.5) !important;
    border-radius: 12px !important;
    box-shadow: 0 0 15px rgba(120, 140, 255, 0.4) !important;
    animation: icon-pulse 3s ease-in-out infinite !important;
}

@keyframes icon-pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(120, 140, 255, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(120, 140, 255, 0.6);
        transform: scale(1.05);
    }
}

.info-icon img {
    display: block !important;
    width: 32px !important;
    height: 32px !important;
    filter: drop-shadow(0 0 8px rgba(120, 140, 255, 0.6)) !important;
}


.info-main-text {
    color: #d4dcff !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 15px !important;
    text-align: justify !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}


.info-main-text strong {
    color: #ffeb3b !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(255, 215, 0, 0.5) !important;
}



@keyframes telegram-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 
            0 0 15px rgba(255, 215, 0, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 25px rgba(255, 215, 0, 0.8),
            0 2px 6px rgba(0, 0, 0, 0.9);
    }
}






.feature-icon {
    flex-shrink: 0 !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 180, 0, 0.2) 100%) !important;
    border: 2px solid rgba(255, 215, 0, 0.5) !important;
    border-radius: 12px !important;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}


.feature-icon img {
    width: 32px !important;
    height: 32px !important;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)) !important;
}

.cabinet-page h1 {
    font-size: 26px !important;
    color: #ffd700 !important;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6) !important;
    margin: 0 0 16px 0 !important;
}

.cabinet-hero img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
}

.cabinet-card {
    background: linear-gradient(135deg, rgba(30, 30, 80, 0.7) 0%, rgba(15, 15, 50, 0.7) 100%) !important;
    border: 2px solid rgba(120, 140, 255, 0.6) !important;
    border-radius: 14px !important;
    padding: 16px 18px !important;
    margin-top: 18px !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.45) !important;
}

.cabinet-card-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffd700 !important;
    margin-bottom: 12px !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
}

.cabinet-info-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.cabinet-info-list .info-row {
    display: grid !important;
    grid-template-columns: 200px 1fr !important;
    align-items: start !important;
    gap: 10px !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)) !important;
    border: 1px solid rgba(120, 140, 255, 0.3) !important;
}

.cabinet-info-list .label {
    color: #c9d1ff !important;
    font-weight: 600 !important;
}

.cabinet-info-list .value {
    color: #e6e8ff !important;
}

.status-ok {
    color: #79e27d !important;
    font-weight: 700 !important;
}

.status-bad {
    color: #ff6b6b !important;
    font-weight: 700 !important;
}

.cabinet-small-button {
    display: inline-block !important;
    margin-left: 10px !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
    color: #0a0a2a !important;
    text-decoration: none !important;
    background: linear-gradient(145deg, #ffd700 0%, #ffeb3b 100%) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 215, 0, 0.7) !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.35) !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
}

.cabinet-small-button:hover { transform: translateY(-1px) !important; box-shadow: 0 3px 12px rgba(255, 215, 0, 0.5) !important; }

.cabinet-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-top: 18px !important;
}

@media (max-width: 700px) {
    .cabinet-info-list .info-row { grid-template-columns: 1fr !important; }
    .cabinet-grid { grid-template-columns: 1fr !important; }
}

.action-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.action-list li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(120, 140, 255, 0.3) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)) !important;
    transition: background-color .15s ease, border-color .15s ease, transform .08s ease !important;
}

.action-list li:hover {
    border-color: rgba(122, 136, 255, 0.8) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)) !important;
}

.action-list a { color: #ffff77 !important; text-decoration: none !important; }
.action-list a:hover { text-decoration: underline !important; }

.premium-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 14px !important;
}

.premium-table thead th {
    text-align: left !important;
    color: #ffd700 !important;
    font-weight: 700 !important;
    padding: 10px !important;
    border-bottom: 2px solid rgba(120, 140, 255, 0.5) !important;
}

.premium-table td {
    padding: 10px !important;
    border-bottom: 1px solid rgba(120, 140, 255, 0.2) !important;
    color: #e6e8ff !important;
}

.premium-table tr:hover td { background: rgba(255, 255, 255, 0.03) !important; }
.premium-table .tc { text-align: center !important; }

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid rgba(120, 140, 255, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 51, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 51, 0.7) 100%
    );
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 40px;
}

.slide-title {
    font-family: 'WarSans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 20px 0;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 1),
        0 0 40px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 20px;
    color: #e0e0e0;
    margin: 0 0 30px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.5;
}

.slide-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.slide-feature {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border: 2px solid rgba(112, 208, 232, 0.5);
    border-radius: 8px;
    color: #70d0e8;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.slide-feature:hover {
    border-color: #70d0e8;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 208, 232, 0.4);
}

.slide-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'WarSans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.slider-cta-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;
}

.slider-cta-btn:hover::before {
    left: 100%;
}

.slider-cta-btn.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000 !important;
    border: 2px solid #ffd700;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3);
}

.slider-cta-btn.primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.5);
}

.slider-cta-btn.secondary {
    background: linear-gradient(135deg, rgba(25, 25, 72, 0.95) 0%, rgba(0, 0, 51, 0.95) 100%);
    color: #ffd700 !important;
    border: 2px solid rgba(120, 140, 255, 0.7);
    box-shadow: 0 4px 15px rgba(120, 140, 255, 0.3);
}

.slider-cta-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(40, 40, 92, 0.98) 0%, rgba(15, 15, 71, 0.98) 100%);
    color: #ffed4e !important;
    border-color: rgba(120, 140, 255, 0.9);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 25px rgba(120, 140, 255, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffd700;
    border: 2px solid rgba(120, 140, 255, 0.5);
    font-size: 32px;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.slider-btn:hover {
    background: rgba(120, 140, 255, 0.8);
    border-color: rgba(120, 140, 255, 0.9);
    color: #fff;
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(120, 140, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffd700;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 215, 0, 0.8);
}

@media (max-width: 1024px) {
    .slider-container {
        max-width: 100%;
        border-radius: 0;
        margin-bottom: 30px;
    }
    
    .slide img {
        height: 400px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .slide img {
        height: 350px;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .slide-features {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .slide-feature {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .slider-cta-btn {
        width: 100%;
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .slider-btn {
        font-size: 24px;
        padding: 8px 14px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slide img {
        height: 280px;
    }
    
    .slide-title {
        font-size: 22px;
    }
    
    .slide-subtitle {
        font-size: 14px;
    }
    
    .slide-feature {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .slider-cta-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

.info-alert {
    background: linear-gradient(135deg, rgba(40, 40, 90, 0.9) 0%, rgba(20, 20, 60, 0.9) 100%);
    border: 2px solid #5a5a90;
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.info-alert:hover {
    border-color: #6666aa;
    box-shadow: 0 5px 15px rgba(102, 102, 170, 0.4);
    transform: translateY(-2px);
}

.info-alert img {
    vertical-align: middle;
    margin-right: 8px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
}

.feature-item {
    background: linear-gradient(135deg, rgba(30, 30, 80, 0.8) 0%, rgba(15, 15, 50, 0.8) 100%);
    border: 2px solid #4a4a70;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover {
    border-color: #6666aa;
    box-shadow: 0 5px 15px rgba(102, 102, 170, 0.3);
    transform: translateX(5px);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item img {
    flex-shrink: 0;
    padding: 6px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(51, 51, 102, 0.3) 100%);
    border: 2px solid #5a5a80;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.feature-item:hover img {
    border-color: #7a7aaa;
    box-shadow: 0 4px 12px rgba(90, 90, 128, 0.6);
    transform: scale(1.05);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}


.status-value {
    color: #99ff99;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.status-online {
    color: #44ff44 !important;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(68, 255, 68, 0.5);
}

.status-offline {
    color: #ff4444 !important;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.panel {
    border-radius: 10px !important;
}

table {
    border-radius: 8px !important;
    overflow: hidden;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 10px rgba(74, 74, 112, 0.5);
    border-color: #6666aa;
}

input[type="submit"],
input[type="button"],
button {
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.event {
    border-radius: 10px !important;
}

.b-mt-footer {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.modal,

.character-card {
    border-radius: 10px !important;
}

ul, ol {
    border-radius: 8px;
}


.progressbar-bg,
.progress-bar {
    border-radius: 10px !important;
    overflow: hidden;
}

.nav {
    border-radius: 10px !important;
}


#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 51, 0.98) 0%, rgba(25, 25, 72, 0.98) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}


.loader-text {
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                     0 0 40px rgba(255, 215, 0, 0.4);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 1),
                     0 0 60px rgba(255, 215, 0, 0.6);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                     0 0 60px rgba(255, 215, 0, 0.4),
                     0 4px 8px rgba(0, 0, 0, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 215, 0, 1),
                     0 0 80px rgba(255, 215, 0, 0.6),
                     0 0 120px rgba(255, 215, 0, 0.3),
                     0 4px 8px rgba(0, 0, 0, 0.8);
        transform: scale(1.05);
    }
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}


.login-header {
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    max-width: 480px !important;
    position: relative !important;
    z-index: 1 !important;
}

.login-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #ffd700 !important;
    margin: 0 0 8px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.8) !important;
    animation: title-pulse 3s ease-in-out infinite !important;
}

@keyframes title-pulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 2px 6px rgba(0, 0, 0, 0.9);
    }
}

.login-subtitle {
    font-size: 13px !important;
    color: #a0b0ff !important;
    margin: 0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}

.login-error {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, rgba(180, 30, 30, 0.3) 0%, rgba(120, 20, 20, 0.3) 100%) !important;
    border: 2px solid rgba(255, 80, 80, 0.6) !important;
    border-radius: 12px !important;
    padding: 15px !important;
    margin-bottom: 25px !important;
    color: #ffaaaa !important;
    font-size: 14px !important;
    box-shadow: 
        0 4px 15px rgba(180, 30, 30, 0.3),
        inset 0 0 20px rgba(255, 80, 80, 0.1) !important;
    animation: error-shake 0.5s ease-in-out !important;
}

@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-icon {
    width: 20px !important;
    height: 20px !important;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8)) !important;
    flex-shrink: 0 !important;
}

.login-character {
    display: none !important;
}

.login-character img {
    display: none !important;
}

.login-form {
    margin: 25px auto !important;
    max-width: 480px !important;
    position: relative !important;
    z-index: 1 !important;
}

.form-group {
    margin-bottom: 20px !important;
}

.form-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffd700 !important;
    margin-bottom: 10px !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
}


.form-input {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 16px !important;
    font-size: 15px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.6) 0%, rgba(20, 20, 40, 0.6) 100%) !important;
    border: 2px solid rgba(120, 140, 255, 0.4) !important;
    border-radius: 10px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    box-sizing: border-box !important;
}

.form-input::placeholder {
    color: rgba(160, 176, 255, 0.5) !important;
}

.form-input:focus {
    border-color: rgba(120, 140, 255, 0.8) !important;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(120, 140, 255, 0.4) !important;
    background: linear-gradient(135deg, rgba(35, 35, 70, 0.7) 0%, rgba(25, 25, 50, 0.7) 100%) !important;
}

.login-button {
    width: 100% !important;
    padding: 16px 30px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #ffd700 !important;
    background: linear-gradient(135deg, rgba(25, 25, 72, 0.95) 0%, rgba(0, 0, 51, 0.95) 100%) !important;
    border: 2px solid rgba(120, 140, 255, 0.7) !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(120, 140, 255, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.login-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
    transition: left 0.5s ease !important;
}

.login-button:hover {
    background: linear-gradient(135deg, rgba(40, 40, 92, 0.98) 0%, rgba(15, 15, 71, 0.98) 100%) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 
        0 6px 25px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(120, 140, 255, 0.6) !important;
    color: #ffed4e !important;
}

.login-button:hover::before {
    left: 100% !important;
}

.login-button:active {
    transform: translateY(0) scale(1.01) !important;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(120, 140, 255, 0.5) !important;
}

.button-icon {
    font-size: 20px !important;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5)) !important;
}

.login-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    margin: 25px auto 0 auto !important;
    max-width: 480px !important;
    padding: 20px 0 0 0 !important;
    border-top: 1px solid rgba(120, 140, 255, 0.2) !important;
    position: relative !important;
    z-index: 1 !important;
}

.login-link {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #a0b0ff !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
}

.login-link img {
    width: 14px !important;
    height: 14px !important;
    filter: drop-shadow(0 0 4px rgba(120, 140, 255, 0.5)) !important;
}

.login-link:hover {
    color: #d0dcff !important;
    text-shadow: 0 0 8px rgba(160, 176, 255, 0.6) !important;
}

.register-link {
    color: #ffd700 !important;
    font-weight: 700 !important;
}

.register-link:hover {
    color: #ffeb3b !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6) !important;
}

.link-separator {
    color: rgba(120, 140, 255, 0.4) !important;
    font-size: 12px !important;
}


.form-hint {
    display: block !important;
    font-size: 12px !important;
    color: rgba(160, 176, 255, 0.7) !important;
    margin-top: 5px !important;
    font-style: italic !important;
}

.password-input-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.password-toggle {
    cursor: pointer !important;
    font-size: 20px !important;
    user-select: none !important;
    filter: grayscale(0.3) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.password-toggle:hover {
    filter: grayscale(0) !important;
    transform: scale(1.1) !important;
}

.captcha-question {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 180, 0, 0.15) 100%) !important;
    border: 2px solid rgba(255, 215, 0, 0.4) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    margin-bottom: 10px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffd700 !important;
    text-align: center !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2) !important;
}

.register-agreements {
    margin: 20px 0 !important;
    padding: 20px !important;
    background: rgba(30, 30, 60, 0.4) !important;
    border: 1px solid rgba(120, 140, 255, 0.3) !important;
    border-radius: 10px !important;
}

.agreement-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    cursor: pointer !important;
    color: #c9d1ff !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.agreement-item:last-child {
    margin-bottom: 0 !important;
}

.agreement-item input[type="checkbox"] {
    margin-top: 3px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    width: 16px !important;
    height: 16px !important;
}

.agreement-link {
    color: #ffd700 !important;
    text-decoration: underline !important;
    transition: all 0.3s ease !important;
}

.agreement-link:hover {
    color: #ffeb3b !important;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.5) !important;
}

.register-button {
    background: linear-gradient(135deg, rgba(25, 25, 72, 0.95) 0%, rgba(0, 0, 51, 0.95) 100%) !important;
    border: 2px solid rgba(120, 140, 255, 0.7) !important;
}

.register-button:hover {
    background: linear-gradient(135deg, rgba(40, 40, 92, 0.98) 0%, rgba(15, 15, 71, 0.98) 100%) !important;
    box-shadow: 
        0 6px 25px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(120, 140, 255, 0.6) !important;
}

.login-success {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, rgba(30, 180, 30, 0.3) 0%, rgba(20, 120, 20, 0.3) 100%) !important;
    border: 2px solid rgba(80, 255, 80, 0.6) !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    margin: 20px auto !important;
    max-width: 480px !important;
    color: #a0ffa0 !important;
    font-size: 15px !important;
    box-shadow: 
        0 4px 15px rgba(80, 255, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    animation: success-pulse 2s ease-in-out infinite !important;
}

.success-icon {
    width: 20px !important;
    height: 20px !important;
    filter: drop-shadow(0 0 6px rgba(80, 255, 80, 0.6)) !important;
    flex-shrink: 0 !important;
}

@keyframes success-pulse {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(80, 255, 80, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(80, 255, 80, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.restore-info {
    margin: 20px auto !important;
    max-width: 480px !important;
    padding: 20px !important;
    background: rgba(30, 30, 60, 0.4) !important;
    border: 1px solid rgba(120, 140, 255, 0.3) !important;
    border-radius: 10px !important;
    color: #c9d1ff !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.restore-info p {
    margin: 0 0 10px 0 !important;
}

.restore-info p:last-child {
    margin-bottom: 0 !important;
}

.restore-hint {
    color: #ffd700 !important;
    font-style: italic !important;
}

.restore-button {
    background: linear-gradient(135deg, rgba(25, 25, 72, 0.95) 0%, rgba(0, 0, 51, 0.95) 100%) !important;
    border: 2px solid rgba(120, 140, 255, 0.7) !important;
}

.restore-button:hover {
    background: linear-gradient(135deg, rgba(40, 40, 92, 0.98) 0%, rgba(15, 15, 71, 0.98) 100%) !important;
    box-shadow: 
        0 6px 25px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(120, 140, 255, 0.6) !important;
}

.payment-button {
    background: linear-gradient(135deg, #1a5f1a 0%, #0d4d0d 100%) !important;
    border: 2px solid rgba(80, 200, 80, 0.8) !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 4px 15px rgba(80, 200, 80, 0.3),
        0 0 20px rgba(80, 200, 80, 0.2) !important;
}

.payment-button:hover {
    background: linear-gradient(135deg, #2a7f2a 0%, #1a6d1a 100%) !important;
    border-color: rgba(100, 220, 100, 0.9) !important;
    box-shadow: 
        0 6px 25px rgba(80, 200, 80, 0.5),
        0 0 30px rgba(80, 200, 80, 0.4) !important;
    transform: translateY(-2px) !important;
}

.payment-button:active {
    transform: translateY(0) !important;
    box-shadow: 
        0 3px 12px rgba(80, 200, 80, 0.4),
        0 0 20px rgba(80, 200, 80, 0.3) !important;
}

.document-page {
    color: #c9d1ff !important;
    line-height: 1.8 !important;
}

.document-header {
    text-align: center !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    border-bottom: 2px solid rgba(120, 140, 255, 0.3) !important;
}

.document-title {
    font-size: 32px !important;
    color: #ffd700 !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5) !important;
}

.document-subtitle {
    font-size: 14px !important;
    color: rgba(160, 176, 255, 0.8) !important;
    font-style: italic !important;
}

.document-image {
    text-align: center !important;
    margin: 25px 0 !important;
}

.document-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    border: 2px solid rgba(120, 140, 255, 0.4) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.document-section {
    margin: 30px 0 !important;
}

.section-title {
    font-size: 22px !important;
    color: #ffd700 !important;
    margin: 25px 0 15px 0 !important;
    padding-left: 15px !important;
    border-left: 4px solid rgba(255, 215, 0, 0.6) !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3) !important;
}

.document-block {
    background: rgba(30, 30, 60, 0.3) !important;
    border: 1px solid rgba(120, 140, 255, 0.3) !important;
    border-radius: 10px !important;
    padding: 20px !important;
    margin: 15px 0 !important;
}

.document-block p {
    margin: 10px 0 !important;
    color: #c9d1ff !important;
}

.document-block ul,
.document-block ol {
    margin: 15px 0 !important;
    padding-left: 30px !important;
}

.document-block li {
    margin: 8px 0 !important;
    color: #b0c0ff !important;
}

.document-block strong {
    color: #ffd700 !important;
    font-weight: 600 !important;
}

.document-block .gold {
    color: #ffd700 !important;
}

.document-note {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 180, 0, 0.1) 100%) !important;
    border: 2px solid rgba(255, 215, 0, 0.4) !important;
    border-radius: 10px !important;
    padding: 15px 20px !important;
    margin: 20px 0 !important;
}

.document-note img {
    flex-shrink: 0 !important;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5)) !important;
}

.document-contacts {
    background: rgba(30, 30, 70, 0.4) !important;
    border: 2px solid rgba(120, 140, 255, 0.4) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin: 30px 0 !important;
    text-align: center !important;
}

.document-contacts h3 {
    color: #ffd700 !important;
    margin-bottom: 15px !important;
    font-size: 20px !important;
}

.document-contacts a {
    color: #a0b0ff !important;
    text-decoration: underline !important;
    transition: all 0.3s ease !important;
}

.document-contacts a:hover {
    color: #d0dcff !important;
    text-shadow: 0 0 8px rgba(160, 176, 255, 0.6) !important;
}

.document-date {
    text-align: center !important;
    color: rgba(160, 176, 255, 0.6) !important;
    font-size: 13px !important;
    margin-top: 40px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(120, 140, 255, 0.2) !important;
    font-style: italic !important;
}

.premium-notification {
    display: flex;
    align-items: stretch;
    gap: 15px;
    margin: 15px auto;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(30, 30, 90, 0.95) 0%, rgba(15, 15, 60, 0.95) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: notifySlideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.premium-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 215, 0, 0.6) 20%,
        rgba(255, 215, 0, 0.8) 50%,
        rgba(255, 215, 0, 0.6) 80%,
        transparent
    );
    animation: notifyShimmer 2s ease-in-out infinite;
}

@keyframes notifySlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes notifyShimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.premium-notification-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    box-shadow: 
        0 4px 12px rgba(255, 215, 0, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.notification-emoji {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.premium-notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-notification-title {
    font-size: 16px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.premium-notification-message {
    font-size: 14px;
    color: #E0E0E0;
    line-height: 1.5;
}

.premium-notification-message strong {
    color: #FFFFFF;
    font-weight: bold;
}

.coins-highlight {
    color: #FFD700;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    padding: 2px 6px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    display: inline-block;
}

.premium-notification-footer {
    font-size: 12px;
    color: #B0B0B0;
    font-style: italic;
    margin-top: 4px;
}

.premium-notification-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #FFFFFF;
    font-size: 18px;
    align-self: flex-start;
}

.premium-notification-close:hover {
    background: rgba(255, 100, 100, 0.2);
    border-color: rgba(255, 100, 100, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 100, 100, 0.3);
}

.premium-notification-close .close-icon {
    line-height: 1;
    font-weight: bold;
}

@media (max-width: 768px) {
    .premium-notification {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    .premium-notification-icon {
        width: 50px;
        height: 50px;
        align-self: center;
    }
    
    .notification-emoji {
        font-size: 28px;
    }
    
    .premium-notification-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

.breadcrumbs {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 8x 0 !important;
    max-width: 480px !important;
    padding: 10px 0 !important;
    background: transparent !important;
    border: none !important;
    font-size: 13px !important;
}

.breadcrumb-item {
    color: rgba(160, 176, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.breadcrumb-item a {
    color: rgba(160, 176, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.breadcrumb-item a:hover {
    color: #ffd700 !important;
}

.breadcrumb-separator {
    color: rgba(120, 140, 255, 0.5) !important;
    font-size: 11px !important;
}

.breadcrumb-item.active {
    color: #ffd700 !important;
    font-weight: 500 !important;
}


.error-404-page .login-character {
    display: block !important;
    text-align: center !important;
    margin: 30px auto !important;
    padding: 0 !important;
}

.error-404-page .login-character img {
    display: inline-block !important;
    max-width: 500px !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;

    box-shadow: 
        0 0 30px rgba(255, 99, 71, 0.5),
        0 0 60px rgba(255, 99, 71, 0.3),
        0 0 90px rgba(255, 99, 71, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.5) !important;

    animation: dragonGlow 3s ease-in-out infinite !important;
}

@keyframes dragonGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 99, 71, 0.5),
            0 0 60px rgba(255, 99, 71, 0.3),
            0 0 90px rgba(255, 99, 71, 0.2),
            0 10px 40px rgba(0, 0, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 99, 71, 0.7),
            0 0 80px rgba(255, 99, 71, 0.5),
            0 0 120px rgba(255, 99, 71, 0.3),
            0 15px 50px rgba(0, 0, 0, 0.6);
        transform: scale(1.02);
    }
}

.error-404-page .login-character img:hover {
    animation: dragonHover 0.6s ease-in-out !important;
    cursor: pointer !important;
}

@keyframes dragonHover {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(-2deg);
    }
    75% {
        transform: scale(1.05) rotate(2deg);
    }
}

@media (max-width: 768px) {
    .error-404-page .login-character img {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
}


.first-on-server-title {
    color: #70d0e8;
}

.first-on-server-description {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.server-filter-panel {
    margin-bottom: 20px;
}

.server-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.server-filter-label {
    color: #70d0e8;
    font-weight: 600;
    font-size: 15px;
}

.server-filter-buttons {
    display: flex;
    gap: 8px;
}

.server-btn {
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 1px solid rgba(112, 208, 232, 0.3);
    background: rgba(112, 208, 232, 0.1);
    color: #70d0e8;
}

.server-btn:hover {
    background: rgba(112, 208, 232, 0.2);
}

.server-btn.active {
    color: #fff;
}

.server-btn.active.all-servers {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.server-btn.active.x5-server {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-color: #f5576c;
}

.server-btn.active.x1-server {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-color: #00f2fe;
}

.server-btn.active:hover {

    background: inherit;
}

.achievement-category {
    margin-bottom: 20px;
}

.achievement-category-title {
    color: #70d0e8;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(112, 208, 232, 0.2);
    padding-bottom: 10px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
}

.achievement-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1px solid rgba(112, 208, 232, 0.15);
    background: rgba(112, 208, 232, 0.05);
}

.achievement-card.earned {
    background: rgba(76, 175, 80, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
}

.achievement-card:hover {
    background: rgba(112, 208, 232, 0.1);
    border-color: rgba(112, 208, 232, 0.3);
}

.achievement-card.earned:hover {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.5);
}

.achievement-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievement-id {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: bold;
    font-size: 12px;
    background: rgba(112, 208, 232, 0.15);
    color: #70d0e8;
}

.achievement-card.earned .achievement-id {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.achievement-info {
    flex: 1;
    min-width: 0;
}

.achievement-name {
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.achievement-status {
    color: #888;
    font-size: 11px;
    margin-top: 2px;
}

.achievement-status.earned {
    color: #4caf50;
}

.achievement-status.unclaimed {
    color: #70d0e8;
}

.achievement-holder-info {
    padding-top: 8px;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

.holder-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 4px;
}

.holder-account-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.server-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.server-badge.x5 {
    background: rgba(240, 147, 251, 0.2);
    color: #f093fb;
}

.server-badge.x1 {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
}

.holder-account-name {
    color: #b0b0b0;
    font-size: 12px;
}

.holder-account-name strong {
    color: #70d0e8;
}

.holder-character-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.holder-char-name {
    font-size: 13px;
    font-weight: 600;
}

.holder-date {
    color: #888;
    font-size: 11px;
}

.holder-char-details {
    color: #888;
    font-size: 11px;
}

.additional-holders {
    margin-top: 8px;
}

.additional-holders summary {
    color: #70d0e8;
    font-size: 11px;
    cursor: pointer;
    user-select: none;
}

.additional-holders-list {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.additional-holder-item {
    padding: 6px;
    background: rgba(76, 175, 80, 0.03);
    border-radius: 4px;
    font-size: 11px;
}

.additional-holder-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.additional-holder-account {
    color: #999;
    font-size: 10px;
}

.additional-holder-char {
    font-weight: 600;
}

.additional-holder-date {
    color: #777;
    font-size: 10px;
}

.statistics-panel {
    background: rgba(112, 208, 232, 0.05);
    border-left: 4px solid #70d0e8;
}

.statistics-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.statistics-total {
    color: #b0b0b0;
    margin: 0;
    font-size: 14px;
}

.statistics-total strong {
    color: #70d0e8;
}

.statistics-meta {
    color: #888;
    margin: 4px 0 0 0;
    font-size: 12px;
}

.statistics-progress-wrapper {
    flex: 1;
    min-width: 200px;
}

.statistics-counts {
    display: flex;
    gap: 20px;
    font-size: 13px;
}

.stat-claimed {
    color: #4caf50;
}

.stat-unclaimed {
    color: #70d0e8;
}

.progress-bar-wrapper {
    margin-top: 10px;
    height: 8px;
    background: rgba(112, 208, 232, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
    transition: width 0.5s;
}

.progress-bar-label {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
    text-align: right;
}

.achievement-id {
    text-decoration: none !important;
    transition: all 0.3s !important;
    cursor: pointer !important;
}

.achievement-id:hover {
    background: rgba(112, 208, 232, 0.3) !important;
    color: #fff !important;
    transform: scale(1.05) !important;
}

.achievement-card.earned .achievement-id:hover {
    background: rgba(76, 175, 80, 0.4) !important;
    color: #fff !important;
}

.achievement-name {
    text-decoration: none !important;
    display: block !important;
    transition: color 0.3s !important;
}

.achievement-name:hover {
    color: #70d0e8 !important;
    text-decoration: underline !important;
}

.holder-main-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.delete-achievement-form {
    margin: 0;
    flex-shrink: 0;
}

.btn-delete-achievement {
    padding: 8px 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
}

.btn-delete-achievement:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.btn-delete-achievement:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
}

.additional-holder-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.delete-achievement-form-inline {
    margin: 0;
    flex-shrink: 0;
}

.btn-delete-achievement-small {
    padding: 4px 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.btn-delete-achievement-small:hover {
    opacity: 1;
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: scale(1.1);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
    animation: slideIn 0.3s ease-out;
}

.alert-success {
    background: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


