:root {
            --primary-color: #c53030;
            --secondary-color: #fbbf24;
            --dark-color: #1a202c;
            --light-color: #f7fafc;
            --text-color: #2d3748;
            --accent-color: #4c51bf;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }
        * {
            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.6;
            color: var(--text-color);
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 32, 44, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary-color);
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--light-color);
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(45, 55, 72, 0.7);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            color: var(--light-color);
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: white;
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 10px;
            color: var(--light-color);
        }
        main {
            background-color: rgba(247, 250, 252, 0.98);
            border-radius: 10px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 40px;
            padding: 30px;
        }
        article {
            max-width: 1000px;
            margin: 0 auto;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--primary-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            color: #4a5568;
            font-size: 0.95rem;
        }
        .article-meta i {
            color: var(--primary-color);
            margin-right: 5px;
        }
        section {
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--secondary-color);
            position: relative;
        }
        h2::before {
            content: '🔥';
            position: absolute;
            left: -40px;
            top: 5px;
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin: 25px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(251, 191, 36, 0.2);
            padding: 20px;
            border-left: 4px solid var(--secondary-color);
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 600;
            color: var(--dark-color);
        }
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .weapon-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .weapon-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .weapon-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid var(--primary-color);
        }
        .weapon-content {
            padding: 20px;
        }
        .weapon-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        .attachment-list {
            list-style: none;
            padding-left: 0;
        }
        .attachment-list li {
            padding: 8px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
        }
        .attachment-list li:last-child {
            border-bottom: none;
        }
        .attachment-list i {
            color: var(--secondary-color);
            margin-right: 10px;
            width: 20px;
        }
        .interaction-section {
            background-color: rgba(237, 242, 247, 0.8);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.2);
        }
        textarea.form-input {
            min-height: 120px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .form-row .form-group {
            flex: 1;
            min-width: 200px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-color), #e53e3e);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
        }
        .btn:hover {
            background: linear-gradient(to right, #b91c1c, var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
        }
        .btn i {
            margin-right: 8px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--secondary-color);
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 3px solid var(--secondary-color);
        }
        .long-tail-links {
            background-color: var(--dark-color);
            padding: 40px 20px;
            margin-top: 50px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(10px);
            background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
        }
        .web-link a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }
        .web-link a:hover {
            color: var(--secondary-color);
        }
        .web-link i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        footer {
            background-color: #0f172a;
            color: var(--light-color);
            padding: 40px 0 20px;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: rgba(26, 32, 44, 0.98);
                width: 100%;
                text-align: center;
                padding: 30px 0;
                transition: var(--transition);
                gap: 0;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .weapon-grid {
                grid-template-columns: 1fr;
            }
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
        }
