
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0c10; /* Темный фон */
    font-family: 'Roboto', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* --- УТИЛИТЫ --- */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- HEADER --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(to bottom, rgb(10 10 10 / 0%), rgb(0 0 0 / 4%));
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0e0e0;
}
.logo span { color: #fff; }

.lang-switch {
    border: 1px solid #444;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.server-status {
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}
.online-count {
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}
.online-dot {
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 5px #4caf50;
}

nav ul {
    display: flex;
    gap: 40px;
}
nav a {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
nav a:hover, nav a.active { color: #fff; }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.btn-login {
    font-size: 13px;
    color: #ccc;
    background: transparent;
}
.btn-reg {
    background-color: #2e3b33;
    color: #fff;
    padding: 10px 25px;
    font-size: 13px;
    text-transform: uppercase;
    border: 1px solid #3a4a40;
    transition: 0.3s;
}
.btn-reg:hover {

}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh; /* На весь экран */
    min-height: 800px;
    /* Вставьте сюда ссылку на вашу картинку с девушкой */
    background-image: url('../images/back.png');
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
}

/* Градиент поверх картинки для затемнения низа и левой части */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%),
                linear-gradient(0deg, #0f1114 5%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: 40px;
    margin-top: -50px; /* Чуть поднять визуально */
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 80px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 40px;
    max-width: 450px;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-play {
  padding: 15px 40px;
border: 1px solid #4a5e50;
background: rgb(0 229 0 / 24%);
color: #fff;
margin-top: 54px;
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 1px;
transition: 0.3s;
position: relative;
overflow: hidden;
}

.btn-play:hover {
    background: #1e2b22;
    border-color: #6a8e70;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.gift-icon {
    width: 50px;
    height: 50px;
    /* Заглушка для иконки подарка */
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.6));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- NEWS SECTION --- */
.news-section {
    position: relative;
    z-index: 2;
    padding: 50px 40px 100px;
    margin-top: -150px; /* Наезжает на Hero */
    background: linear-gradient(to bottom, transparent, #0f1114 20%);
}

.news-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.news-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.news-info p {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border: 1px solid #333;
    background: transparent;
    color: #888;
    font-size: 13px;
    transition: 0.3s;
}
.btn-view-all:hover {
    border-color: #666;
    color: #fff;
}
.btn-view-all span { margin-right: 10px; font-size: 10px; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    background: #000; /* На случай если картинка не прогрузится */
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
    group: hover;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}

.news-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.news-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.2;
}

.news-date {
    font-size: 11px;
    color: #666;
}
/* --- ГЛОБАЛЬНЫЙ ФОН (Единое полотно) --- */
  body {
      /* Единый глубокий темно-зеленый/черный цвет для всего сайта */
      background-color: #0a0c10;
      color: #fff;
      font-family: 'Roboto', sans-serif;
      overflow-x: hidden;
  }

  /* Убираем жесткие цвета фонов у секций, чтобы они сливались */
  .news-section,
  .features-section,
  .ranking-section,
  .streams-section,
  footer {
      background-color: transparent !important; /* Прозрачный фон */
      /* Добавляем очень легкий градиент, чтобы не было скучно, но без стыков */
      background-image: linear-gradient(to bottom, rgba(255,255,255,0.01), transparent);
      border: none !important; /* Убираем рамки, если были */
  }

  /* --- ИСПРАВЛЕНИЕ HERO (Текст слева) --- */
  .hero {
      position: relative;
      height: 100vh;
      min-height: 800px;
      /* Картинка фона */
      background-image: url('../images/back.png');
      background-size: cover;
      background-position: center top;

      display: flex;
      align-items: center;
      /* Самое важное: выравниваем контент по левому краю */
      justify-content: flex-start;
      padding-left: 0; /* Отступы зададим внутри контента */
  }

  /* Градиент, который делает плавный переход от картинки к фону сайта */
  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* 1. Затемнение слева (чтобы текст читался)
         2. Затемнение снизу (чтобы слить с фоном body #0a0c10) */
      background:
          linear-gradient(90deg, #0a0c10 10%, rgba(10, 12, 16, 0.4) 60%, transparent 100%),
          linear-gradient(to bottom, transparent 70%, #0a0c10 100%);
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      /* Отступ слева такой же, как у логотипа в шапке (40px + отступ контейнера) */
      margin-left: 80px;
      text-align: left; /* Текст строго слева */
  }

  /* Корректировка заголовка */
  h1 {
      font-family: 'Cinzel', serif;
      font-size: 80px;
      line-height: 1;
      font-weight: 400;
      margin-bottom: 25px;
      color: #fff;
      /* Легкая тень для контраста */
      text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  /* Корректировка описания */
  .hero-desc {
      font-size: 16px;
      line-height: 1.6;
      color: #bbb;
      margin-bottom: 45px;
      max-width: 500px;
  }

  /* --- КОРРЕКТИРОВКА ОТСТУПОВ МЕЖДУ СЕКЦИЯМИ --- */
  /* Чтобы блоки не наезжали друг на друга слишком сильно, но были близко */

  .news-section {
      position: relative;
      z-index: 3;
      margin-top: -100px; /* Чуть меньше наезд на картинку */
      padding-bottom: 40px;
  }

  /* Убираем лишние рамки у контейнеров, чтобы все было "чисто" */
  .feature-container {
      border: none;
      background: rgba(255, 255, 255, 0.02); /* Еле заметный фон контейнера */
  }

  /* Линии разделителей делаем очень мягкими */
  .ranking-details, .topic-item, header, footer {

  }

  /* Обновляем цвет карточек, чтобы они не выбивались */
  .rank-card, .stream-thumb, .news-card {
      background-color: #111316;
      border: 1px solid rgba(255,255,255,0.05);
  }
  .header-right {
display: flex;
align-items: center;
gap: 30px; /* Расстояние между "Войти" и кнопкой */
}

/* Кнопка "Войти" - просто текст */
.btn-login {
background: transparent;
border: none;
color: #a0a0a0; /* Светло-серый цвет */
font-family: 'Roboto', sans-serif;
font-size: 14px;
font-weight: 400;
cursor: pointer;
transition: color 0.3s ease;
padding: 0;
}

.btn-login:hover {
color: #ffffff; /* Белый при наведении */
}

/* Кнопка "Регистрация" - прямоугольник */
.btn-reg {
/* Темно-зеленый "болотный" фон, как в L2 */
background-color: #212924;

/* Тонкая рамка чуть светлее фона */
border: 1px solid #303c34;

color: #e0e0e0;
font-family: 'Roboto', sans-serif; /* Простой шрифт без засечек */
font-size: 12px;
font-weight: 500; /* Чуть жирнее */
text-transform: uppercase; /* Все буквы заглавные */
letter-spacing: 0.5px; /* Немного разрядим буквы */

padding: 11px 28px; /* Размер кнопки (прямоугольный) */
cursor: pointer;
transition: all 0.3s ease;
}

.btn-reg:hover {

border-color: #405044;
color: #fff;
}
/* --- ОБНОВЛЕННЫЙ ХЕДЕР (Для кнопки во всю высоту) --- */
header {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 80px; /* Фиксируем высоту шапки */
z-index: 100;
/* Убираем вертикальные отступы (padding), чтобы кнопка касалась краев */
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;

/* Линия снизу на всю ширину */
border-bottom: 1px solid rgba(255, 255, 255, 0.1);

/* Легкий фон самой шапки */
background: linear-gradient(to bottom, rgb(10 10 10 / 0%), rgb(0 0 0 / 4%));
}

/* Правая часть: растягиваем на всю высоту */
.header-right {
display: flex;
align-items: center;
height: 100%; /* Важно: заполняем высоту хедера */
gap: 0; /* Убираем отступы между элементами, настроим их внутри */
}

/* Кнопка "Войти" */
.btn-login {
background: transparent;
border: none;
color: #ccc;
font-size: 14px;
font-weight: 400;
cursor: pointer;
padding: 0 30px; /* Отступы по бокам */
height: 100%; /* На всю высоту (для удобства клика) */
transition: color 0.3s;
}

.btn-login:hover {
color: #fff;
}

/* Кнопка "Регистрация" - КАК НА СКРИНШОТЕ */
.btn-reg {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 0 40px;
background-color: #1e2621;
background: linear-gradient(to bottom, #19201b00 0%, /* Темный верх */ #1a6832 97%, /* Темная середина */ #4caf50 100% /* Яркая зеленая полоска в самом низу (1-2px) */);
color: #fff;
font-family: 'Roboto', sans-serif;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
border: none;
border-left: 1px solid rgba(255, 255, 255, 0.05);
cursor: pointer;
transition: 0.3s;
}

.btn-reg:hover {
/* При наведении делаем чуть светлее и усиливаем нижнее свечение */

color: #fff;
text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* --- ОБЩИЕ СТИЛИ ДЛЯ НОВЫХ СЕКЦИЙ --- */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.2;
}

/* --- FEATURES SECTION (Видео и слайдер) --- */
.features-section {
    background-color: #080a09; /* Очень темный зеленый */
    padding: 80px 0;
    position: relative;
}

.feature-container {
    max-width: 1200px; /* Чуть уже, как на скриншоте */
    margin: 0 auto;
    border: 1px solid #1e2622;
    background: #0b0e0c;
    display: flex;
    min-height: 450px;
}

/* Левая часть: Видео/Превью */
.feature-video {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0.8;
}

.feature-video:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    transition: 0.3s;
}

.play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
    margin-left: 5px;
}

.feature-video:hover .play-btn {
    border-color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

/* Правая часть: Инфо */
.feature-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #0b0e0c, #0f1411);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

/* Ромб с иконкой */
.feature-icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 10px;
    margin-left: 10px; /* Отступ для поворота */
}

.feature-icon-box i {
    transform: rotate(-45deg); /* Возвращаем иконку обратно */
    font-size: 20px;
    color: #aaa;
    font-style: normal;
}

.feature-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 5px;
}

.feature-desc {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 50px;
    padding-left: 70px; /* Выравнивание под заголовком */
}

.feature-thumbnails {
    display: flex;
    gap: 15px;
    padding-left: 70px;
}

.thumb-item {
    width: 80px;
    height: 50px;
    border: 1px solid #333;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.thumb-item.active {
    border-bottom: 2px solid #4caf50;
}

.thumb-item.active img { opacity: 1; }
.thumb-item:hover img { opacity: 1; }

/* --- FORUM SECTION --- */
.forum-section {
    background-color: #0b1210; /* Еще темнее */
    padding: 60px 0 100px;
}

.forum-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* Левая часть: Список тем */
.forum-topics {
    flex: 3;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Две колонки */
    column-gap: 40px;
    row-gap: 0;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    cursor: pointer;
}

.topic-item:hover {
    background: rgba(255,255,255,0.02);
}

.topic-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.topic-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-content {
    display: flex;
    flex-direction: column;
}

.topic-title {
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 5px;
    font-weight: 500;
}

.topic-date {
    font-size: 11px;
    color: #555;
}

/* Правая часть: Меню */
.forum-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px; /* Отступы между кнопками */
}

.sidebar-btn {
    width: 100%;
    padding: 18px;
    text-align: center;
    background: transparent;
    color: #777;
    border: 1px solid #1e2622;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.03);
}

.sidebar-btn.active {
    background-color: #25ff285e; /* Зеленый активный */
    color: #fff;
    border-color: #354a3b;
}
/* --- RANKING SECTION --- */
.ranking-section {
    background-color: #0d1012; /* Темно-серый фон */
    padding: 80px 0;
}

.ranking-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr; /* Левая колонка с текстом + Карточки */
    gap: 40px;
    max-width: 1600px; /* Ширина как в первой секции новостей */
    margin: 0 auto;
    padding: 0 40px;
}

/* Левая часть (Текст) */
.ranking-info {
    padding-top: 20px;
}

.ranking-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.ranking-info p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border: 1px solid #333;
    background: transparent;
    color: #888;
    font-size: 13px;
    text-transform: none;
    transition: 0.3s;
    width: 100%; /* Кнопка на всю ширину колонки */
    justify-content: center;
}

.btn-outline:hover {
    border-color: #555;
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.btn-outline span { margin-right: 10px; font-size: 10px; }

/* Правая часть (Сетка карточек) */
.ranking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 карточки в ряд */
    gap: 20px;
}

.rank-card {
    background: #15181a;
    border: 1px solid #1e2225;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.rank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.rank-img {
    width: 100%;
    aspect-ratio: 1/1; /* Квадратная картинка */
    overflow: hidden;
}

.rank-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-stat-bar {
    background-color: #25ff285e; /* Темно-зеленый, как на скриншоте */
    color: #fff;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rank-details {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.rank-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #e0e0e0;
}

.rank-class-icon {
    width: 24px;
    height: 24px;
    opacity: 0.5;
    background-image: url('https://cdn-icons-png.flaticon.com/512/1062/1062689.png'); /* Заглушка иконки класса */
    background-size: contain;
    filter: invert(1); /* Делаем белой */
}

.rank-clan {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #666;
}

.clan-icon {
    width: 16px;
    height: 16px;
    background: #444; /* Заглушка значка клана */
    border-radius: 2px;
}

/* --- STREAMS SECTION --- */
.streams-section {
    padding: 80px 0 100px;
    background-color: #0a0c0e; /* Почти черный */
}

.streams-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.streams-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 400;
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stream-card {
    cursor: pointer;
    group: hover;
}

.stream-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #222;
}

.stream-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0.9;
}

.stream-card:hover .stream-thumb img {
    transform: scale(1.05);
    opacity: 1;
}

/* Кнопка Play поверх стрима (поменьше, чем в Hero) */
.stream-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.stream-play-btn::after {
    content: '';
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
    margin-left: 3px;
}

.stream-card:hover .stream-play-btn {
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.stream-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.stream-viewers {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.viewer-icon {
    font-size: 10px; /* Имитация точки/глаза */
}
/* --- FOOTER --- */
footer {
    background-color: #080a09; /* Темный фон, как на скриншоте */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Еле заметная линия сверху */
    padding: 80px 0 60px;
    color: #666;
    font-size: 13px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    /* Сетка: Левая часть широкая (2 доли), остальные по 1 доле */
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Левая колонка (Бренд) */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.brand-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Логотип (переиспользуем стили, но чуть адаптируем) */
.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0e0e0;
}
.footer-logo span { color: #fff; }

.footer-lang {
    border: 1px solid #333;
    padding: 4px 8px;
    font-size: 11px;
    color: #777;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.footer-lang:hover { border-color: #555; color: #aaa; }

.copyright {
    line-height: 1.6;
    font-size: 12px;
    color: #444;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    font-size: 18px;
    color: #555;
    transition: 0.3s;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Колонки меню */
.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: #777;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #fff;
}

      /* --- ГЛОБАЛЬНЫЙ ФОН (СВЕТЛЕЕ ЗЕЛЕНЫЙ) --- */
      body {
          /* Базовый цвет: Насыщенный темно-зеленый (L2 swamp style) */
          background-color: #111a15;
          color: #fff;
          font-family: 'Roboto', sans-serif;
          overflow-x: hidden;
          margin: 0;
      }

      /* Делаем секции прозрачными */
      .news-section,
      .features-section,
      .ranking-section,
      .streams-section,
      .forum-section,
      footer {
          background: transparent !important;
          border: none !important;
          position: relative;
          z-index: 10;
      }

      /* --- HERO СЕКЦИЯ (Слияние с новым зеленым) --- */
      /* --- HERO СЕКЦИЯ --- */
     .hero {
         position: relative;
         height: 100vh;
         min-height: 800px;

         /* Картинка */
         background-image: url('../images/back.png');
         background-size: cover;
         background-position: top center;

         display: flex;
         align-items: center;
         justify-content: flex-start; /* Текст слева */
         padding-left: 0;
     }

     /* ГРАДИЕНТЫ (Только функциональные) */
     .hero::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       z-index: 1;
       background: /* 1. ГРАДИЕНТ СЛЕВА (Для текста): Темный зеленый слева, плавно исчезает к центру. Справа картинка остается чистой. */ linear-gradient(356deg, #111a1500 0%, rgba(17, 26, 21, 0.8) 40%, transparent 100%), /* 2. ГРАДИЕНТ СНИЗУ (Для слияния): Сверху - полностью ПРОЗРАЧНЫЙ (transparent), картинка чистая. Начинает темнеть только с 60% высоты. */ linear-gradient(to bottom, transparent 0%, transparent 60%, #111a15 100%);
   }
     /* УБИРАЕМ ::after, который давал общую мутность */
     .hero::after {
         display: none;
     }

     .hero-content {
         position: relative;
         z-index: 5;
         max-width: 700px;
         margin-left: 80px; /* Отступ текста */
     }

      /* --- ОБНОВЛЕНИЕ КАРТОЧЕК (ЧТОБЫ СОЧЕТАЛИСЬ С НОВЫМ ФОНОМ) --- */
      /* Делаем карточки чуть светлее фона body, чтобы они выделялись */

      .news-card,
      .rank-card,
      .feature-container,
      .stream-thumb,
      .feature-info {
          /* Полупрозрачный более светлый зеленый */
          background-color: rgba(30, 45, 35, 0.6) !important;
          border: 1px solid rgba(255, 255, 255, 0.08) !important;
          backdrop-filter: blur(5px); /* Легкое размытие фона под карточкой */
      }

      /* Рамки разделителей чуть виднее */
      .rank-details, .topic-item, header {

      }

      /* Кнопка "Регистрация" тоже подстраивается под тон */
      .btn-reg {
          background-color: #1a2b20; /* Чуть светлее база */
            background: linear-gradient(to bottom, #16221b00 0%, #02541e 97%, #4caf50 100%);
      }
