html, body {
    background: var(--bg-body) !important;
}


:root {
  --bg-body: #1e2021;
  --bg-content: #191a1b;
  --bg-header: #111317;
  --bg-hero: #171a1f;
  --accent: #e53935;
  --accent-dark: #b71c1c;
  --text-main: #d1cdc7;
  --text-muted: #d1cdc7; /* alt #a0978b */
  --border-soft: #e0e2e6;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    background: var(--bg-body);
    color: var(--text-main);
    padding-top: 60px;
}



.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary {
  background: #5a0002;
  color: #fff;
  /* box-shadow: 0 8px 22px rgba(229, 57, 53, 0.45); */
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #cc0000;
  /* box-shadow: 0 10px 26px rgba(229, 57, 53, 0.55); */
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  color: #222;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
  background: #f5f5f7;
}

.btn-small {
  font-size: 13px;
  padding: 7px 16px;
}

.btn-full {
  width: 100%;
}





.home-news {
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-content);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.home-news h2 {
    margin-bottom: 20px;
    color: var(--text-main);
}

.home-news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.home-news-item {
    display: flex;
    gap: 12px;
    background: #1b1c1d;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: 0.2s;
}

.home-news-item:hover {
    background: #222;
}

.home-news-thumb {
    width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.home-news-info h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.home-news-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.home-news-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.home-news-more:hover {
    color: var(--accent-dark);
}




