/* ==========================================================================
   СТРАНИЦА "ОПИСАНИЕ СЕРВЕРА" (ABOUT ONLY)
   ========================================================================== */

/* Идеально отцентрированный Header */
.pw-page-header {
    position: relative;
    min-height: 250px;
    background-color: var(--pw-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Симметричный фон */
.pw-page-header .pw-hero-bg-zoom {
    position: absolute;
    inset: -15px;
    background: url('header.jpg') center center / cover no-repeat;
    animation: heroBreathe 18s ease-in-out infinite alternate;
    z-index: 1;
}

/* Световая вспышка строго по центру за текстом */
.pw-page-header .pw-hero-sword-flare {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 2;
}

/* Симметричное затемнение без сдвига вправо */
.pw-page-header .pw-hero-cinematic-overlay {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 50% 50%, rgba(11, 12, 16, 0.4) 0%, rgba(11, 12, 16, 0.85) 75%, var(--pw-bg-dark) 100%),
            linear-gradient(to bottom, rgba(11, 12, 16, 0.3) 0%, transparent 40%, rgba(13, 14, 18, 0.98) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Хлебные крошки */
.pw-breadcrumb {
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    list-style: none;
    padding-left: 0 !important;
}

.pw-breadcrumb .breadcrumb-item a {
    color: var(--pw-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pw-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.pw-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.45);
}

.pw-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(229, 193, 88, 0.35);
    content: "•";
    padding: 0 8px;
}

/* ==========================================================================
   ПЛАВАЮЩИЙ САЙДБАР БЫСТРОГО ДОСТУПА (СПРАВА)
   ========================================================================== */
.pw-floating-quick {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.pw-quick-bubble {
    pointer-events: auto;
    position: relative;
    border-radius: 8px;
    background: rgba(11, 12, 16, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 193, 88, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 12px rgba(229, 193, 88, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pw-quick-bubble.float-1 { animation: floatBob 4.2s ease-in-out infinite alternate; }
.pw-quick-bubble.float-2 { animation: floatBob 4.8s ease-in-out infinite alternate 0.6s; }
.pw-quick-bubble.float-3 { animation: floatBob 4.4s ease-in-out infinite alternate 1.2s; }
.pw-quick-bubble.float-4 { animation: floatBob 5s ease-in-out infinite alternate 1.8s; }

.pw-quick-bubble:hover {
    transform: scale(1.08) translateX(-6px) !important;
    border-color: var(--pw-gold-light);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.9), 0 0 20px rgba(229, 193, 88, 0.45);
}

.pw-quick-bubble-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    text-decoration: none;
    color: #f1f1f1;
}

.pw-quick-icon {
    color: var(--pw-gold);
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(229, 193, 88, 0.5));
}

.pw-quick-label {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.pw-quick-bubble-link.is-donate .pw-quick-label {
    color: var(--pw-gold-light);
}

.pw-quick-bubble-link.is-donate .pw-quick-icon {
    color: #ffd700;
    animation: coinPulse 2.5s ease-in-out infinite alternate;
}

@media (max-width: 991px) {
    .pw-floating-quick { display: none; }
}

/* ==========================================================================
   ОСНОВНОЙ КОНТЕНТ СТРАНИЦЫ
   ========================================================================== */
.pw-about-nav-card {
    background: var(--pw-bg-dark);
    border: 1px solid var(--pw-border-soft);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.pw-about-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 4px;
    text-align: left;
    transition: all 0.25s ease;
}

.pw-about-tabs .nav-link:hover {
    background: rgba(229, 193, 88, 0.08);
    color: var(--pw-gold);
    transform: translateX(3px);
}

.pw-about-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--pw-gold-light) 0%, var(--pw-gold) 50%, var(--pw-gold-dark) 100%);
    color: #111 !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(229, 193, 88, 0.3);
}

.pw-about-card {
    background: var(--pw-bg-dark);
    border: 1px solid var(--pw-border-soft) !important;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.pw-section-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff7d6;
}

.pw-stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.25s ease;
}

.pw-stat-box:hover {
    border-color: rgba(229, 193, 88, 0.3);
}

.pw-feature-card {
    background: rgba(229, 193, 88, 0.03);
    border: 1px solid rgba(229, 193, 88, 0.15);
}

.pw-check-list {
    list-style: none;
    padding-left: 0;
}

.pw-check-list li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.pw-custom-table {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.pw-custom-table th {
    background: #141720;
    border-color: rgba(229, 193, 88, 0.2);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pw-custom-table td {
    background: rgba(11, 12, 16, 0.6);
    border-color: rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
}