/* -------------------- LIGHT THEME VARIABLES -------------------- */
:root {
    --bg-dark: #F2F2F2;
    --bg-section: #FFFFFF;
    --bg-card: #F7F7F7;

    --text-main: #1A1A1A;
    --text-muted: #555;

    --accent: #F2A900;
    --accent-soft: #FFD45C;

    --pubg-yellow: #F2A900;
    --pubg-black: #1A1A1A;
    --pubg-gray: #D9D9D9;
}

/* -------------------- FONTS -------------------- */
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Oswald', sans-serif;
}

body, p, li, a, label, input, textarea {
    font-family: 'Roboto Condensed', sans-serif;
}

/* -------------------- GLOBAL -------------------- */
body {
background: radial-gradient(circle at top, #F7F7F7 0%, #EDEDED 55%, #E2E2E2 100%);
    color: var(--text-main);
}

/* -------------------- HEADER -------------------- */
.navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    border-bottom: 4px solid var(--pubg-yellow);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pubg-black) !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--accent);
}

.nav-link {
    color: var(--pubg-black) !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* -------------------- HERO -------------------- */
.hero-section {
    position: relative;
    height: 220px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-image: url('https://ipubg.ru/assets/img/banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    border-bottom: 4px solid var(--pubg-yellow);
}

@media (min-width: 768px) {
    .hero-section { background-position: center center; }
}
@media (min-width: 914px) {
    .hero-section { background-position: center 20%; }
}
@media (min-width: 1220px) {
    .hero-section { background-position: center 20%; }
}
@media (min-width: 1400px) {
    .hero-section { background-position: center 20%; }
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.65),
        rgba(255,255,255,0.45),
        rgba(255,255,255,0.25)
    );
    z-index: 1;
}

/* -------------------- CARDS -------------------- */
.card-dark {
    background: var(--bg-card);
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.card-dark p {
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.card-dark h2 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-dark h2 span {
    color: var(--accent);
}

/* -------------------- SIDEBAR -------------------- */
.sidebar-block {
    background: var(--bg-card);
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 20px;
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.requirements li i,
.claninf li i {
    width: 22px;
    display: inline-block;
}

/* -------------------- NEWS LIST -------------------- */
.news-item {
    list-style: none;
    padding: 14px 0;
    border-bottom: 1px solid #DDD;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}

.news-item a {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.news-item a:hover {
    color: var(--accent-soft);
}

.news-item p {
    margin-top: 6px;
    color: #333;
    line-height: 1.5;
}


.news-item img, .card-dark img, article img { max-width: 100%; height: auto; display: block; margin: 12px 0; border-radius: 6px}
/* -------------------- FOOTER -------------------- */
.footer {
    padding: 10px 0;
    background: #F2F2F2;
    text-align: center;
    color: #555;
    border-top: 4px solid var(--pubg-yellow);

}