        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2a2a72;
            --secondary: #009ffd;
            --accent: #ffa400;
            --dark: #0a0a1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --danger: #dc3545;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent);
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            letter-spacing: -1px;
        }
        .logo span {
            color: white;
        }
        .search-box {
            display: flex;
            width: 40%;
            max-width: 500px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #ff8c00;
        }
        nav {
            padding: 15px 0;
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent);
            bottom: -5px;
            left: 50%;
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 80%;
            left: 10%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--dark);
            z-index: 1001;
            padding: 80px 30px 30px;
            transition: var(--transition);
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 1.1rem;
        }
        .close-nav {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
            color: var(--gray);
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
        }
        .breadcrumb a {
            color: var(--secondary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            background: white;
            border-radius: 10px;
            margin-top: 20px;
            box-shadow: var(--shadow);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            padding-right: 20px;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            padding: 10px;
            background: #f8f9fa;
            font-style: italic;
            color: var(--gray);
            text-align: center;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed #eee;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(42, 42, 114, 0.05), rgba(0, 159, 253, 0.05));
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 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);
        }
        .weapon-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .weapon-card h4 {
            padding: 20px 20px 10px;
            color: var(--primary);
        }
        .weapon-card p {
            padding: 0 20px 20px;
            font-size: 0.95rem;
            color: var(--gray);
        }
        .sidebar {
            padding-left: 20px;
            border-left: 2px solid #eee;
        }
        @media (max-width: 992px) {
            .sidebar {
                border-left: none;
                border-top: 2px solid #eee;
                padding-top: 40px;
                padding-left: 0;
            }
        }
        .sidebar-widget {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
        }
        .legend-list li {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: white;
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        .legend-list li:hover {
            background: var(--secondary);
            color: white;
            transform: translateX(5px);
        }
        .interaction-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 3px solid #eee;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2.5rem;
            color: #ddd;
            margin: 20px 0;
            cursor: pointer;
        }
        .stars .star {
            margin: 0 5px;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent);
        }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary);
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 159, 253, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .web-links {
            background: var(--dark);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--accent);
            font-weight: 600;
            display: block;
            margin-bottom: 10px;
        }
        .web-link p {
            color: #aaa;
            font-size: 0.9rem;
        }
        footer {
            background: #0a0a1a;
            color: #ccc;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #aaa;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .header-top .container {
                flex-direction: column;
                gap: 20px;
            }
            .search-box {
                width: 100%;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .section-title {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.7rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
            .weapon-grid {
                grid-template-columns: 1fr;
            }
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
