/* --- Змінні кольорів --- */
:root {
    --bg-main: #121418;
    --bg-card: #1e2126;
    --bg-header: #181a1f;
    --accent: #ccff00; /* Неоново-зелений */
    --text-main: #ffffff;
    --text-muted: #8b929e;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- Базові стилі та Шапка --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-main); color: var(--text-main); font-family: var(--font-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; display: block; border-radius: 4px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header { background-color: var(--bg-header); padding: 20px 0; border-bottom: 1px solid #2a2d35; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 900; font-style: italic; letter-spacing: 1px; }
.logo span { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 30px; font-size: 14px; font-weight: 600; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 5px; }

.auth-buttons { display: flex; gap: 15px; }
.btn { padding: 8px 20px; border-radius: 4px; font-weight: bold; font-size: 14px; cursor: pointer; text-transform: uppercase; border: none; }
.btn-login { background: transparent; color: var(--text-main); border: 1px solid #333; }
.btn-login:hover { border-color: var(--accent); color: var(--accent); }
.btn-signup { background: var(--accent); color: #000; }
.btn-signup:hover { background: #b3e600; }

/* --- Сітка карток (Спільна для Новин та Оглядів) --- */
.grid-layout { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin: 40px 0; }
.card { background-color: var(--bg-card); border-radius: 8px; overflow: hidden; transition: transform 0.3s ease; border: 1px solid transparent; }
.card:hover { transform: translateY(-5px); border-color: #333; }
.card-img-wrapper { height: 200px; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img-wrapper img { transform: scale(1.05); }
.card-content { padding: 20px; }
.card-category { color: var(--accent); font-size: 12px; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; display: block; }
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; text-transform: uppercase; }
.card-excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* --- Специфічні стилі: Огляди (Reviews) --- */
.review-score { display: inline-block; background-color: var(--accent); color: #000; font-weight: 900; padding: 5px 12px; border-radius: 4px; margin-top: 15px; font-size: 16px; }

/* --- Специфічні стилі: Внутрішня стаття (Single Article) --- */
.article-wrapper { max-width: 800px; margin: 40px auto; background-color: var(--bg-card); padding: 40px; border-radius: 12px; border: 1px solid #2a2d35; }
.article-header { margin-bottom: 30px; text-align: center; }
.article-header h1 { font-size: 36px; font-style: italic; text-transform: uppercase; margin-bottom: 15px; }
.article-meta { display: flex; justify-content: center; gap: 20px; color: var(--text-muted); font-size: 14px; font-weight: bold; }
.article-meta span.tag { color: var(--accent); }
.article-hero-img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 30px; }
.article-content p { margin-bottom: 20px; font-size: 16px; color: #d1d5db; }
.article-content h2 { font-size: 24px; color: #fff; margin: 30px 0 15px; text-transform: uppercase; }
.article-content blockquote { border-left: 4px solid var(--accent); padding-left: 20px; font-style: italic; color: #fff; margin: 30px 0; font-size: 18px; background: rgba(204, 255, 0, 0.05); padding: 20px; border-radius: 0 8px 8px 0; }

/* --- Специфічні стилі: Про нас (About Us) --- */
.about-hero { text-align: center; padding: 60px 20px; background: linear-gradient(135deg, #1a1d24 0%, #0d0f12 100%); margin-top: 40px; border-radius: 12px; border: 1px solid #2a2d35; }
.about-hero h1 { font-size: 48px; font-style: italic; color: var(--accent); text-transform: uppercase; margin-bottom: 20px; }
.about-hero p { max-width: 700px; margin: 0 auto; font-size: 18px; color: var(--text-muted); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; text-align: center; }
.stat-item { background: var(--bg-card); padding: 30px; border-radius: 8px; border: 1px solid #2a2d35; }
.stat-number { font-size: 36px; font-weight: 900; color: var(--accent); margin-bottom: 10px; }

/* --- Адаптивність --- */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 15px; }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .article-wrapper { padding: 20px; margin: 20px; }
    .article-header h1 { font-size: 28px; }
    .article-hero-img { height: 250px; }
    .stats-grid { grid-template-columns: 1fr; }
}
<style>
        /* --- Змінні кольорів --- */
        :root {
            --bg-main: #121418;
            --bg-card: #1e2126;
            --bg-header: #181a1f;
            --accent: #ccff00; /* Неоново-зелений */
            --text-main: #ffffff;
            --text-muted: #8b929e;
            --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        /* --- Базові стилі --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-main);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        img {
            max-width: 100%;
            display: block;
            border-radius: 4px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Шапка (Header) --- */
        header {
            background-color: var(--bg-header);
            padding: 20px 0;
            border-bottom: 1px solid #2a2d35;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 900;
            font-style: italic;
            letter-spacing: 1px;
        }

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

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 5px;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            text-transform: uppercase;
            border: none;
        }

        .btn-login {
            background: transparent;
            color: var(--text-main);
            border: 1px solid #333;
        }

        .btn-login:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-signup {
            background: var(--accent);
            color: #000;
        }

        .btn-signup:hover {
            background: #b3e600;
        }

        /* --- Головний банер (Hero Section) --- */
        .hero {
            margin: 30px 0;
            background: linear-gradient(135deg, #1a1d24 0%, #0d0f12 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px;
            position: relative;
            overflow: hidden;
            border: 1px solid #2a2d35;
        }

        .hero-content {
            max-width: 50%;
            z-index: 2;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 900;
            font-style: italic;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-image {
            width: 45%;
            z-index: 2;
        }

        .hero-image img {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* --- Навігація категорій (Sub-nav) --- */
        .sub-nav {
            display: flex;
            align-items: center;
            background-color: var(--bg-card);
            border-radius: 6px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .sub-nav-item {
            padding: 12px 25px;
            font-size: 13px;
            font-weight: bold;
            text-transform: uppercase;
            color: var(--text-muted);
            cursor: pointer;
        }

        .sub-nav-item.active {
            background-color: var(--accent);
            color: #000;
        }

        .sub-nav-item:hover:not(.active) {
            color: var(--text-main);
        }

        /* --- Сітка новин (News Grid) --- */
        .news-grid-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .news-grid-bottom {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-bottom: 50px;
        }

        .card {
            background-color: var(--bg-card);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 1px solid transparent;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: #333;
        }

        .card-img-wrapper {
            height: 200px;
            overflow: hidden;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card:hover .card-img-wrapper img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 20px;
        }

        .card-category {
            color: var(--accent);
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
            text-transform: uppercase;
        }

        .card-excerpt {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
        }

        /* --- Адаптивність (Mobile) --- */
        @media (max-width: 768px) {
            .header-inner { flex-direction: column; gap: 15px; }
            .nav-links { gap: 15px; }
            .hero { flex-direction: column; padding: 30px; text-align: center; }
            .hero-content { max-width: 100%; margin-bottom: 20px; }
            .hero h1 { font-size: 32px; }
            .hero-image { width: 100%; }
            .news-grid-top, .news-grid-bottom { grid-template-columns: 1fr; }
            .sub-nav { flex-wrap: wrap; }
        }
    </style>