*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f0efe9;
            color: #2e2e2e;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #6b8e23;
            text-decoration: none;
            transition: color .2s ease;
        }
        a:hover {
            color: #556b2f;
            text-decoration: underline;
        }
        .site-header {
            background: #1f1f1f;
            padding: 15px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            border-bottom: 3px solid #6b8e23;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #f0f0f0;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #a0c060;
            text-decoration: none;
        }
        .my-logo i {
            color: #6b8e23;
            margin-right: 6px;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .main-nav {
            background: #2a2a2a;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
        }
        .nav-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li a {
            display: block;
            padding: 14px 18px;
            color: #d5d5d5;
            font-weight: 600;
            font-size: .9rem;
            text-transform: uppercase;
            letter-spacing: .5px;
        }
        .nav-links li a:hover {
            color: #fff;
            background: #3a3a3a;
            text-decoration: none;
        }
        .nav-links li a.active {
            color: #6b8e23;
            background: #1f1f1f;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px 15px;
        }
        .breadcrumb {
            background: #e8e6df;
            padding: 10px 30px;
            font-size: .85rem;
            border-bottom: 1px solid #d0cdc0;
        }
        .breadcrumb a {
            color: #6b8e23;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 5px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 30px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .hero {
            text-align: center;
            background: linear-gradient(135deg, #3e3e3e, #1f1f1f);
            color: #f5f5f5;
            padding: 50px 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(107, 142, 35, .4), transparent);
            border-radius: 50%;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
            margin-bottom: 15px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #c8c8c8;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 15px;
            background: rgba(107, 142, 35, .3);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: .85rem;
            color: #d0ffb0;
        }
        .article-section {
            background: #fff;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
            margin-bottom: 25px;
        }
        .article-section h2 {
            font-size: 2rem;
            color: #1f1f1f;
            margin-bottom: 20px;
            border-left: 5px solid #6b8e23;
            padding-left: 15px;
        }
        .article-section h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 25px 0 12px;
        }
        .article-section h4 {
            font-size: 1.15rem;
            color: #555;
            margin: 18px 0 10px;
        }
        .article-section p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .article-section ul,
        .article-section ol {
            margin: 0 0 16px 30px;
        }
        .article-section li {
            margin-bottom: 6px;
        }
        .callout {
            background: #f8f7f2;
            border-left: 4px solid #6b8e23;
            padding: 18px 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .info-box {
            background: #eef3e6;
            border: 1px solid #c8d8b0;
            border-radius: 8px;
            padding: 18px 20px;
            margin: 20px 0;
        }
        .tarkov-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .tarkov-table th,
        .tarkov-table td {
            padding: 12px 15px;
            border: 1px solid #ddd;
            text-align: left;
        }
        .tarkov-table th {
            background: #2a2a2a;
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            font-size: .85rem;
        }
        .tarkov-table tr:nth-child(even) {
            background: #f8f7f2;
        }
        .tarkov-table tr:hover {
            background: #eef3e6;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .feature-card {
            background: #faf9f5;
            border: 1px solid #e0ddd0;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
        }
        .feature-card i {
            font-size: 2.2rem;
            color: #6b8e23;
            margin-bottom: 12px;
        }
        .feature-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }
        .comments-section {
            background: #fff;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
            margin-bottom: 25px;
        }
        .comments-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            border-left: 5px solid #6b8e23;
            padding-left: 15px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 12px;
            resize: vertical;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 48%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 12px;
        }
        .comment-form .btn {
            background: #6b8e23;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background .2s;
        }
        .comment-form .btn:hover {
            background: #556b2f;
        }
        .rating-section {
            background: #fff;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
            margin-bottom: 25px;
            text-align: center;
        }
        .rating-stars {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            display: inline-block;
            margin-bottom: 10px;
        }
        .rating-stars .star.active {
            color: #f5b301;
        }
        .search-section {
            background: #2a2a2a;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 25px;
        }
        .search-section form {
            display: flex;
            gap: 10px;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-section input[type="search"] {
            flex: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            background: #fff;
        }
        .search-section button {
            background: #6b8e23;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            cursor: pointer;
            font-size: 1rem;
        }
        .search-section button:hover {
            background: #556b2f;
        }
        .site-footer {
            background: #1a1a1a;
            color: #a0a0a0;
            padding: 40px 30px 20px;
            margin-top: auto;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .footer-col h4 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 5px;
        }
        .footer-col ul li a {
            color: #a0a0a0;
        }
        .footer-col ul li a:hover {
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            margin-top: 30px;
            font-size: .85rem;
            color: #666;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            padding: 15px;
            background: #1f1f1f;
            border-radius: 8px;
            border-left: 4px solid #6b8e23;
        }
        friend-link a {
            color: #6b8e23;
            margin: 0 10px;
        }
        @media screen and (max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2a2a2a;
                padding: 0;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li a {
                padding: 12px 20px;
                border-bottom: 1px solid #3a3a3a;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 20px 15px;
            }
            .article-section {
                padding: 25px;
            }
            .comment-form input[type="text"],
            .comment-form input[type="email"] {
                width: 100%;
            }
        }
        @media screen and (min-width:769px) {
            .feature-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
