        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #1a1a1a;
            --gray: #7f8c8d;
            --success: #27ae60;
            --warning: #f39c12;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--accent);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--light);
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a:hover {
            color: white;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8edf1;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child):after {
            content: '/';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        main {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            font-weight: 300;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--primary);
            padding-bottom: 8px;
            border-bottom: 1px dashed #ddd;
        }
        h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: #444;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--warning);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .weapon-card {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent);
        }
        .weapon-stats {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
            padding: 1.5rem;
            background-color: #f1f8ff;
            border-radius: var(--border-radius);
        }
        .stat-item {
            text-align: center;
        }
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
        }
        blockquote {
            font-style: italic;
            color: #555;
            border-left: 4px solid var(--secondary);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 0 auto;
        }
        .image-caption {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 10px;
            font-style: italic;
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .sidebar-title {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--primary);
            padding-bottom: 8px;
            border-bottom: 2px solid var(--light);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            outline: none;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ddd;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars .active {
            color: var(--warning);
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
            outline: none;
        }
        .toc ul {
            list-style: none;
            padding-left: 0;
        }
        .toc li {
            margin-bottom: 10px;
        }
        .toc a {
            display: block;
            padding: 8px 12px;
            background-color: #f8f9fa;
            border-radius: 4px;
            color: #555;
        }
        .toc a:hover {
            background-color: var(--light);
            color: var(--primary);
        }
        .footer-links {
            background-color: var(--primary);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(255,255,255,0.1);
            color: white;
            padding: 12px 20px;
            margin: 0 10px 15px 0;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        .links-container {
            text-align: center;
        }
        footer {
            background-color: var(--dark);
            color: #aaa;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .copyright {
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #aaa;
        }
        .social-links a:hover {
            color: white;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                padding: 2rem;
                transition: var(--transition);
                box-shadow: 5px 0 15px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .weapon-card {
                grid-template-columns: 1fr;
            }
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
        }
