        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
            max-width: 100%;
            overflow-x: hidden;
        }
        h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 1.5rem; color: #1a365d; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin: 3rem 0 1.5rem; color: #2d3748; border-left: 5px solid #e53e3e; padding-left: 1rem; }
        h3 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: #4a5568; }
        h4 { font-size: 1.2rem; margin: 2rem 0 0.8rem; color: #718096; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        a { color: #3182ce; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #e53e3e; text-decoration: underline; }
        strong { color: #2d3748; font-weight: 700; }
        em { font-style: italic; color: #4a5568; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        header {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a.my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            font-family: 'Arial Black', Gadget, sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a.my-logo:hover { text-decoration: none; }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #cbd5e0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover { color: #fff; }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #e53e3e;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #718096;
        }
        .breadcrumb a { color: #4a5568; }
        main { padding: 2rem 0; }
        .article-header { text-align: center; margin-bottom: 3rem; }
        .article-meta {
            color: #718096;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover { transform: scale(1.005); }
        .content-section {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .weapon-card {
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        .weapon-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            border-color: #cbd5e0;
        }
        .search-box, .comment-form, .rating-form {
            background: #f1f5f9;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .search-box form, .comment-form form, .rating-form form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            flex-grow: 1;
            min-width: 200px;
        }
        button {
            background: linear-gradient(to right, #e53e3e, #dd6b20);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #c53030, #c05621);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(229, 62, 62, 0.2);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #e2e8f0;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active { color: #f6e05e; }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        footer {
            background: #1a202c;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background: #2d3748;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            transition: background 0.3s ease;
        }
        friend-link:hover { background: #4a5568; }
        friend-link a {
            color: #90cdf4;
            font-weight: 600;
            display: block;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
            .header-content { justify-content: center; }
            nav ul { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2d3748;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #4a5568;
            }
            nav ul.active { display: flex; }
            .content-section { padding: 2rem; }
            .featured-image { max-height: 300px; }
            .weapon-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .search-box form, .comment-form form, .rating-form form { flex-direction: column; align-items: stretch; }
            input, textarea, select { min-width: auto; }
        }
        .highlight-box {
            background: linear-gradient(135deg, #feebc8 0%, #fed7d7 100%);
            border-left: 5px solid #dd6b20;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .last-updated {
            background: #e6fffa;
            color: #234e52;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
