/* Подключаем брутальные шрифты */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto+Mono&display=swap');

body {
    /* Фон без размытия */
    background: #000 url('images/server-bg.png') no-repeat center center fixed;
    background-size: cover;
    color: #bcbcbc; /* Чуть тусклее белого для ретро-эффекта */
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ГЛАВНЫЙ КОНТЕЙНЕР */
.dungeon-terminal {
    width: 1000px;
    background: rgba(12, 12, 12, 0.97); 
    border: 1px solid #333;
    box-shadow: 0 0 50px rgba(0,0,0,1);
    display: flex;
    flex-direction: column;
}

/* ШАПКА */
.top-nav {
    background: #111;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #C5A059; /* Ретро-золото */
    text-transform: uppercase;
}

.logo span {
    color: #555;
    font-size: 13px;
    margin-left: 10px;
}

.lang-toggle {
    color: #C5A059;
    border: 1px solid #C5A059;
    padding: 2px 8px;
    font-size: 11px;
    cursor: pointer;
    font-weight: bold;
}

/* ГЕРОЙ-БЛОК */
.hero-block {
    display: flex;
    padding: 40px 50px 0 50px; /* Убрали нижний паддинг, чтобы не было дыры */
    gap: 40px;
    align-items: flex-end; /* Билли стоит на "земле" */
}

.billy-container {
    flex: 0 0 280px;
    line-height: 0; /* Убираем микро-отступ под картинкой */
}

.billy-hero {
    width: 100%;
    /* Возвращаем Билли цвета и четкость */
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.2));
    display: block;
}

.hero-content {
    padding-bottom: 40px; /* Отступ текста от низа, пока Билли стоит на черте */
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #C5A059;
    line-height: 1.1;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.hero-content p {
    font-style: italic;
    color: #888;
    font-size: 18px;
    margin-bottom: 35px;
}

/* КНОПКИ */
.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 32px;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    font-size: 15px;
    border-radius: 3px;
    transition: 0.2s;
    text-transform: uppercase;
    display: inline-block;
}

.btn-gold {
    background: #C5A059;
    color: #000;
    box-shadow: 0 4px 0 #8c7042;
}

.btn-gold:hover {
    background: #d4b475;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #C5A059;
    color: #C5A059;
}

.btn-outline:hover {
    background: rgba(197, 160, 89, 0.1);
}

/* СЕТКА УСЛУГ */
.services-label {
    text-align: center;
    padding: 10px;
    background: #181818;
    color: #444;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid #222; /* Четкая линия разделения */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #222; 
    gap: 1px;
}

.card {
    background: #0e0e0e;
    padding: 40px 20px;
    text-align: center;
}

/* КРУПНЫЕ ИКОНКИ */
.card-icon {
    height: 110px; /* Увеличили еще сильнее */
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.card h3 {
    font-family: 'Oswald', sans-serif;
    color: #C5A059;
    margin-bottom: 10px;
    font-size: 18px;
}

.card p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* ЛОГИ */
.terminal-footer {
    background: #000;
    border-top: 1px solid #222;
}

.log-output {
    padding: 20px;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
}

.log-line { margin-bottom: 5px; }
.info { color: #3a9e5c; }
.warn { color: #a38b3d; }
.success { color: #3a9e5c; font-weight: bold; }

.copyright {
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #333;
    border-top: 1px solid #111;
}

/* --- PRICING PAGE SPECIFIC --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #222;
    gap: 1px;
}

.price-card {
    background: #0e0e0e;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.price-card.featured {
    background: #121212;
    box-shadow: inset 0 0 50px rgba(197, 160, 89, 0.05);
}

.price-header {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #C5A059;
    margin-bottom: 20px;
}

.price-value {
    font-family: 'Oswald', sans-serif;
    font-size: 54px;
    color: #fff;
    margin-bottom: 40px;
}

.price-value span {
    font-size: 16px;
    color: #444;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    text-align: left;
}

.price-features li {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 2px solid #222;
    transition: 0.2s;
}

.price-card:hover .price-features li {
    border-left-color: #C5A059;
    color: #ccc;
}

.badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #C5A059;
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 10px;
    font-family: 'Oswald', sans-serif;
}

.price-card:hover {
    background: #151515;
}
