:root {
            --primary-dark: #0c1a2d;
            --primary-blue: #1a3a5f;
            --accent-orange: #ff8c00;
            --accent-gold: #ffd700;
            --text-light: #f0f8ff;
            --text-gray: #b0c4de;
            --border-color: #2a4a6e;
            --card-bg: rgba(26, 58, 95, 0.7);
            --success-green: #32cd32;
            --danger-red: #dc143c;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            background-image: linear-gradient(rgba(12, 26, 45, 0.9), rgba(12, 26, 45, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-orange);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(12, 26, 45, 0.95);
            border-bottom: 2px solid var(--accent-orange);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--accent-gold), var(--accent-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo a {
            background: none;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: var(--primary-blue);
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.1rem;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background-color: rgba(42, 74, 110, 0.5);
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            color: var(--accent-orange);
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: rgba(26, 58, 95, 0.85);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: var(--accent-gold);
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid var(--accent-orange);
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--accent-orange);
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: var(--text-gray);
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text-gray);
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-light);
            font-weight: 500;
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background-color: rgba(255, 140, 0, 0.1);
            border-left: 4px solid var(--accent-orange);
            border-radius: 4px;
        }
        strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        em {
            color: var(--text-light);
            font-style: italic;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.15);
            padding: 3px 6px;
            border-radius: 3px;
            font-weight: bold;
        }
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .weapon-card {
            background: linear-gradient(145deg, rgba(42,74,110,0.8), rgba(26,58,95,0.9));
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .weapon-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(255, 140, 0, 0.2);
            border-color: var(--accent-orange);
        }
        .weapon-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .weapon-icon {
            font-size: 2.5rem;
            margin-right: 20px;
            color: var(--accent-orange);
        }
        .weapon-name {
            font-size: 1.8rem;
            color: var(--text-light);
        }
        .weapon-type {
            display: inline-block;
            background-color: var(--primary-blue);
            color: var(--text-gray);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        .weapon-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dotted var(--border-color);
        }
        .stat-label {
            color: var(--text-gray);
        }
        .stat-value {
            color: var(--text-light);
            font-weight: 600;
        }
        .pro-tip {
            background-color: rgba(50, 205, 50, 0.1);
            border-left: 4px solid var(--success-green);
            padding: 15px;
            margin-top: 20px;
            border-radius: 4px;
            font-style: italic;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid var(--accent-orange);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.05);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            padding: 10px;
            background-color: rgba(42, 74, 110, 0.7);
        }
        .search-section, .comments-section, .rating-section {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title i {
            color: var(--accent-orange);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid var(--border-color);
            border-radius: 8px 0 0 8px;
            background-color: rgba(12, 26, 45, 0.8);
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-orange);
        }
        .search-btn {
            background-color: var(--accent-orange);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-size: 1.1rem;
        }
        .search-btn:hover {
            background-color: #ff7300;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star.active, .star:hover, .star:hover ~ .star {
            color: var(--accent-gold);
        }
        .rating-form {
            max-width: 600px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-light);
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            background-color: rgba(12, 26, 45, 0.8);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent-orange);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-size: 1.1rem;
        }
        .submit-btn:hover {
            background-color: #ff7300;
        }
        .comments-list {
            margin-top: 40px;
        }
        .comment {
            background-color: rgba(12, 26, 45, 0.6);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid var(--accent-orange);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent-gold);
        }
        .comment-date {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .comment-rating {
            color: var(--accent-gold);
            margin-left: 10px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background-color: rgba(42, 74, 110, 0.5);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(255, 140, 0, 0.1);
            border-color: var(--accent-orange);
        }
        footer {
            background-color: rgba(12, 26, 45, 0.95);
            border-top: 2px solid var(--accent-orange);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .weapon-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 15px 0;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .search-btn {
                border-radius: 8px;
                padding: 15px;
            }
            .footer-content {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .weapon-grid {
                grid-template-columns: 1fr;
            }
            .weapon-stats {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                justify-content: center;
            }
            .star {
                font-size: 2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .weapon-card, .search-section, .comments-section, .rating-section {
            animation: fadeIn 0.6s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
            color: var(--text-gray);
        }
        li {
            margin-bottom: 10px;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: rgba(12, 26, 45, 0.7);
        }
        .comparison-table th {
            background-color: var(--primary-blue);
            color: var(--accent-gold);
            padding: 15px;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .comparison-table td {
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
        }
        .comparison-table tr:nth-child(even) {
            background-color: rgba(26, 58, 95, 0.5);
        }
        .comparison-table tr:hover {
            background-color: rgba(255, 140, 0, 0.1);
        }
