* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8B0000;
            --secondary: #FFD700;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffed4e;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, var(--dark), #2a0a0a);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(to right, var(--secondary), #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
        }
        .logo span {
            color: var(--primary);
        }
        .search-box {
            display: flex;
            width: 300px;
        }
        .search-box input {
            flex: 1;
            padding: 10px 15px;
            border: 2px solid var(--primary);
            border-right: none;
            background: #222;
            color: white;
            border-radius: 5px 0 0 5px;
            outline: none;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #a30000;
        }
        nav {
            background-color: rgba(26, 26, 26, 0.95);
            padding: 10px 0;
            border-top: 1px solid #333;
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop li a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
            display: block;
        }
        .nav-desktop li a:hover,
        .nav-desktop li a.active {
            background-color: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--secondary);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            list-style: none;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            border-top: 2px solid var(--primary);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile li {
            margin-bottom: 15px;
        }
        .nav-mobile li a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid #333;
            color: #ddd;
        }
        .nav-mobile li a:hover {
            background-color: #333;
            color: var(--secondary);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1a1a1a;
            border-bottom: 1px solid #333;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 10px;
        }
        main {
            padding: 30px 0;
            min-height: 80vh;
        }
        article {
            background: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
            border: 1px solid #444;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        h2 {
            font-size: 2rem;
            color: #ff6b6b;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        h3 {
            font-size: 1.5rem;
            color: #ffa500;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(139, 0, 0, 0.2);
            border-left: 5px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .loadout-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .loadout-card {
            background: linear-gradient(145deg, #222, #2a2a2a);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #444;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .loadout-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        }
        .loadout-card h3 {
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .loadout-card ul {
            list-style: none;
            margin-top: 15px;
        }
        .loadout-card li {
            padding: 8px 0;
            border-bottom: 1px dashed #444;
            display: flex;
            justify-content: space-between;
        }
        .rating {
            color: #ffd700;
            margin: 10px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .featured-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            transition: var(--transition);
        }
        .featured-img:hover {
            transform: scale(1.02);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #222;
            border-radius: 10px;
            overflow: hidden;
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #444;
        }
        .stats-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 700;
        }
        .stats-table tr:hover {
            background-color: #333;
        }
        .interaction {
            background: rgba(40, 40, 40, 0.9);
            border-radius: 10px;
            padding: 30px;
            margin-top: 40px;
            border: 1px solid #555;
        }
        .interaction h2 {
            color: var(--secondary);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ccc;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: #222;
            border: 2px solid #555;
            border-radius: 5px;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd700;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), #c0392b);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            background: linear-gradient(to right, #a30000, #e74c3c);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .footer-links {
            background: #111;
            padding: 40px 0;
            border-top: 3px solid var(--primary);
            border-bottom: 1px solid #333;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: #222;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid var(--secondary);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #2a2a2a;
            transform: translateX(5px);
        }
        .web-link a {
            color: #ddd;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background: #0a0a0a;
            padding: 30px 0;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .social-links {
            display: flex;
            gap: 20px;
        }
        .social-links a {
            color: #aaa;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--secondary);
            transform: scale(1.2);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .loadout-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        }
        @media (max-width: 768px) {
            .header-top { flex-direction: column; gap: 20px; }
            .search-box { width: 100%; max-width: 500px; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .footer-container { flex-direction: column; }
            .web-links { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            article { padding: 20px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .loadout-grid { grid-template-columns: 1fr; }
        }
