/* about.css */

/* Hero */
.about-hero {
    position: relative;
    margin-bottom: 20px;
    padding: 8px 0 16px;
}
.about-hero-bg {
    display: none;
}
.about-hero-overlay {
    display: none;
}
.about-hero-content {
    position: relative;
    width: 100%;
    padding-left: 80px;
}
.about-hero-eyebrow {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 18px;
}
.about-hero-title {
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
    margin: 0 0 12px;
    line-height: 1.15;
}
.about-hero-dot {
    font-size: 20px;
    vertical-align: middle;
}
.about-hero-tagline {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.65;
    max-width: 520px;
}

/* Три сценария */
.about-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.about-scenario {
    padding: 24px 20px;
    border-radius: 12px;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}
.about-scenario:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 0 0 1px rgba(34,158,217,0.5), 0 8px 24px rgba(34,158,217,0.25);
}
.about-scenario--lore {
    background: url('/images/world.jpg') center / cover no-repeat;
}
.about-scenario--lore::before,
.about-scenario--raid::before,
.about-scenario--pvp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,51,0.62) 0%, rgba(0,0,0,0.42) 50%, rgba(0,0,51,0.62) 100%);
    z-index: 0;
}
.about-scenario--lore .about-scenario-title,
.about-scenario--lore .about-scenario-desc {
    position: relative;
    z-index: 1;
}
.about-scenario--raid {
    background: url('/images/raid.jpg') center / cover no-repeat;
}
.about-scenario--raid .about-scenario-title,
.about-scenario--raid .about-scenario-desc {
    position: relative;
    z-index: 1;
}
.about-scenario--pvp {
    background: url('/images/pvp.jpg') center / cover no-repeat;
}
.about-scenario--pvp .about-scenario-title,
.about-scenario--pvp .about-scenario-desc {
    position: relative;
    z-index: 1;
}
.about-scenario-num {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.about-scenario-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255,215,0,0.4));
}
.about-scenario-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.3;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 15px rgba(255,215,0,0.35);
}
.about-scenario-desc {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    text-align: left;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.about-scenario:hover .about-scenario-title {
    text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 15px rgba(255,215,0,0.5);
}
.about-scenario:hover .about-scenario-desc {
    color: #e0e0e0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

/* Три карточки ботов */
.about-bots-heading {
    font-size: 24px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
    margin: 40px 0 24px;
}
.about-bots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

/* Готовый компонент: карточка-фича с иконкой сверху (формат "Гильдии") — для блоков с малым числом пунктов, где нужно описание, а не плотный список */
.about-feature-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-feature-checklist {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-feature-checklist li {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    padding-left: 18px;
    position: relative;
}
.about-feature-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1eff00;
    font-weight: 700;
}
.about-feature-download-btn {
    display: block;
    width: fit-content;
    text-align: center;
    margin: 14px auto 0;
    padding: 8px 18px;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.4);
    border-radius: 6px;
    color: #4ade80;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.15s, border-color 0.15s;
}
.about-feature-download-btn:hover {
    text-decoration: none !important;
    background: rgba(34,197,94,0.2);
    border-color: rgba(34,197,94,0.6);
}
.about-feature-download-btn--disabled {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.35);
    cursor: default;
}
.about-feature-cmd {
    font-family: 'Courier New', monospace;
    color: rgba(255,255,255,0.55);
}
.about-roadmap-card {
    margin-bottom: 24px;
    text-align: center;
    border: none !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12) !important;
}
.about-roadmap-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 22px;
}
.about-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 16px;
    margin-bottom: 20px;
}
.about-roadmap-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}
.about-roadmap-item .about-feature-icon {
    position: relative;
    top: 0;
    left: 0;
    flex-shrink: 0;
}
.about-roadmap-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
.about-roadmap-item-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.3;
    margin-top: -12px;
}
.about-roadmap-item-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}
.about-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    align-items: start;
}
.about-launcher-note {
    font-size: 13px;
    color: rgba(255,200,80,0.85);
    background: rgba(255,200,80,0.07);
    border: 1px solid rgba(255,200,80,0.25);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
}
.about-launcher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.about-feature-card--soon {
    position: relative;
    background: rgba(255,255,255,0.02) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08) !important;
}
.about-feature-card--soon .about-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    margin-top: 0;
}
.about-feature-card--soon .about-feature-desc,
.about-feature-card--soon .about-feature-checklist {
    opacity: 0.5;
}
.about-feature-card--hardware .about-feature-checklist {
    margin-top: 2px;
}
.about-feature-card {
    position: relative;
    align-self: start;
    padding: 16px !important;
    margin-top: 20px !important;
    border: none !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12) !important;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.about-feature-card:hover {
    box-shadow: inset 0 0 0 1px rgba(34,158,217,0.5), 0 8px 24px rgba(34,158,217,0.25) !important;
}
.about-feature-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 20px;
    margin-bottom: 10px;
}
.about-feature-icon {
    position: absolute;
    top: -33px;
    left: 0;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}
.about-feature-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    border-radius: 3px;
}
.about-feature-icon--social img:first-child {
    width: 84%;
    height: 84%;
    top: 8%;
    left: 8%;
    object-fit: contain;
    image-rendering: auto;
    border-radius: 8px;
}
.about-feature-icon-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    z-index: 3;
}
.about-feature-card:hover .about-feature-icon-glow {
    opacity: 1;
}
.about-feature-icon-border {
    width: 42px !important;
    height: 42px !important;
    top: -2px !important;
    left: -2px !important;
    object-fit: contain !important;
    image-rendering: auto !important;
    z-index: 2;
}
.about-feature-title {
    position: absolute;
    top: 10px;
    left: 48px;
    transform: translateY(-100%);
    font-size: 15px;
    font-weight: 700;
    color: #ffd700;
}
.about-feature-desc {
    margin-top: -10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.about-botcard-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 4px;
    text-align: center;
}
.about-botcard-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.about-botcard-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    transition: background 0.15s, color 0.15s;
}
.about-botcard-item:hover {
    background: rgba(255,215,0,0.06);
    border-color: rgba(255,215,0,0.15);
    color: #fff;
}
.about-botcard-item img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
    image-rendering: pixelated;
}

/* Цитата */
.about-quote {
    border-left: 3px solid rgba(160,176,255,0.35);
    padding: 12px 20px;
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    background: rgba(120,140,255,0.04);
    border-radius: 0 6px 6px 0;
}
.about-quote-author {
    margin-top: 8px;
    font-size: 12px;
    font-style: normal;
    color: rgba(255,255,255,0.25);
}

/* Реалмы */
.about-realms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}
.about-realms--three {
    grid-template-columns: repeat(3, 1fr);
}
.about-realm {
    border-radius: 10px;
    padding: 24px;
}
.about-realm--x5 {
    background: linear-gradient(135deg, rgba(30,60,160,0.25) 0%, rgba(10,20,80,0.4) 100%);
    border: 1px solid rgba(100,140,255,0.35);
}
.about-realm--x1 {
    background: linear-gradient(135deg, rgba(80,50,5,0.35) 0%, rgba(40,20,5,0.5) 100%);
    border: 1px solid rgba(255,200,50,0.3);
}
.about-realm--bc {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
}
.about-realm-rows--placeholder {
    opacity: 0.4;
}
.about-realm-head {
    text-align: center;
    margin-bottom: 14px;
}
.about-realm-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    margin-bottom: 8px;
}
.about-realm-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.about-realm-logo--bc img {
    opacity: 0.7;
}
.about-realm-desc {
    text-align: left;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    min-height: 60px;
}
.about-realm-card-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.4px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-realm--bc .about-soon-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    margin-top: 0;
}
.about-realm-rows { display: flex; flex-direction: column; gap: 5px; }
.about-realm-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-realm-row b { margin-left: auto; }
.about-realm-row-icon {
    position: relative;
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.about-realm-row-icon img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}
.about-realm-row-icon-border {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.about-realm-row-icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.about-realm-row:hover .about-realm-row-icon-glow {
    opacity: 1;
}
.about-realm-row:last-child { border-bottom: none; }
.about-realm-row-tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    transform: translateY(-50%);
    width: 230px;
    padding: 12px 14px;
    background: rgba(1,7,33,0.78);
    border: 1px solid #777;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    text-align: left;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 10;
}
.about-realm-row-tooltip-title {
    display: block;
    color: #ffd700;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 6px;
}
.about-realm-row-tooltip-desc {
    display: block;
    color: rgba(255,255,255,0.9);
    margin-bottom: 4px;
}
.about-realm-row-tooltip-list {
    margin: 0;
    padding-left: 16px;
    color: #1eff00;
}
.about-realm-row-tooltip-list li {
    margin-bottom: 2px;
}
.about-realm-row-tooltip-list--quality li { color: inherit; display: flex; justify-content: space-between; gap: 8px; }
.about-realm-row-tooltip-list--quality li b { color: rgba(255,255,255,0.6); font-weight: 700; }
.about-realm-row-tooltip-list--quality .q-poor { color: #9d9d9d; }
.about-realm-row-tooltip-list--quality .q-common { color: #ffffff; }
.about-realm-row-tooltip-list--quality .q-uncommon { color: #1eff00; }
.about-realm-row-tooltip-list--quality .q-rare { color: #0070dd; }
.about-realm-row-tooltip-list--quality .q-epic { color: #a335ee; }
.about-realm-row-tooltip-list--quality .q-legendary { color: #ff8000; }
.about-realm-row-tooltip-note {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    line-height: 1.4;
}
.about-realm-row-icon:hover .about-realm-row-tooltip {
    opacity: 1;
    visibility: visible;
}
.about-feature-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    font-weight: 700;
    margin-left: 6px;
    cursor: help;
    position: relative;
    vertical-align: middle;
}
.about-feature-info-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    width: 220px;
    padding: 10px 12px;
    background: rgba(1,7,33,0.92);
    border: 1px solid #777;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 50;
}
.about-feature-info:hover .about-feature-info-tooltip {
    opacity: 1;
    visibility: visible;
}
.about-realm--x5 .about-realm-row-tooltip {
    left: auto;
    right: calc(100% + 12px);
}
.about-realm--x5 .about-realm-row > b { color: #88aaff; }
.about-realm--x1 .about-realm-row > b { color: #ffd700; }

/* Масштаб */
.about-scale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.about-scale-card {
    text-align: center;
    border: none !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12) !important;
}
.about-scale-num {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
    margin-bottom: 8px;
}
.about-scale-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.about-scale-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* Полосы фич */
.about-strips { display: flex; flex-direction: column; gap: 10px; }
.about-strips--mt { margin-top: 14px; }
.about-strip {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid rgba(120,140,255,0.12);
    background: rgba(255,255,255,0.02);
}
.about-strip-icon { font-size: 28px; flex-shrink: 0; width: 40px; text-align: center; }
.about-strip-body { flex: 1; }
.about-strip-title { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 3px; }
.about-strip-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.about-strip-tag {
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.about-strip-tag--green { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25); color: #4ade80; }
.about-strip-tag--blue  { background: rgba(120,140,255,0.1); border: 1px solid rgba(120,140,255,0.25); color: #a0b0ff; }

.about-soon-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: rgba(251,191,36,0.08);
    border: 1px solid rgba(251,191,36,0.25);
    color: #fbbf24;
}



/* CTA */
.about-cta {
    text-align: center;
    padding: 12px 0 4px;
}
.about-cta-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.about-cta-sub { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.about-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.about-cta-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
}
.about-cta-btn--play {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 4px 20px rgba(34,197,94,0.25);
}
.about-cta-btn--play:hover { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; }
.about-cta-btn--outline {
    background: transparent;
    border: 1px solid rgba(120,140,255,0.4);
    color: #a0b0ff;
}
.about-cta-btn--outline:hover { border-color: rgba(120,140,255,0.8); color: #fff; }

/* Мобайл */
@media (max-width: 768px) {
    .about-hero-content { padding: 24px 20px; }
    .about-hero-title { font-size: 26px; }
    .about-scenarios { grid-template-columns: 1fr; }
    .about-realms, .about-scale-grid, .about-launcher-grid, .about-infra-grid { grid-template-columns: 1fr; }
    .about-bots-grid { grid-template-columns: 1fr; }
    .about-roadmap-grid { grid-template-columns: 1fr; }
}

/* Философия */
.about-philosophy-tagline {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    max-width: 720px;
}
.about-philosophy-grid {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
    .about-philosophy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .about-philosophy-grid { grid-template-columns: 1fr; }
}

/* История — текст */
.about-history-story {
    margin-bottom: 16px;
    border: none !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12) !important;
}
.about-history-story p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    margin: 0 0 12px;
}
.about-history-story p:last-child {
    margin-bottom: 0;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* История — вертикальный таймлайн по месяцам */
.about-history-timeline {
    position: relative;
    padding-left: 24px;
}
.about-history-tl-item {
    position: relative;
    padding-bottom: 22px;
    border-left: 1px solid rgba(255,215,0,0.2);
    margin-left: 5px;
    padding-left: 22px;
}
.about-history-tl-item--last {
    border-left: 1px solid transparent;
    padding-bottom: 0;
}
.about-history-tl-dot {
    position: absolute;
    top: 2px;
    left: -5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffd700;
    box-shadow: 0 0 0 3px rgba(11,15,33,1);
}
.about-history-tl-date {
    font-size: 16px;
    color: #ffd700;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}
.about-history-tl-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    margin-bottom: 3px;
}
.about-history-tl-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
