        * {
            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: #e0e0e0;
            background: linear-gradient(135deg, #0c0c14 0%, #1a1a2a 100%);
            background-attachment: fixed;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b9d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .site-header {
            background: rgba(20, 22, 36, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a2d45;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b9d, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .main-nav a {
            color: #b0b7d6;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #4dabf7;
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #b0b7d6;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1rem 20px;
            max-width: 1300px;
            margin: 0 auto;
            font-size: 0.95rem;
            color: #8a8fb5;
        }
        .breadcrumb a {
            color: #8a8fb5;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 3.5rem 1rem;
            background: radial-gradient(circle at 50% 0%, rgba(77, 171, 247, 0.1) 0%, transparent 60%);
            border-bottom: 1px solid #2a2d45;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            color: #b0b7d6;
            max-width: 800px;
            margin: 0 auto 2.5rem;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .search-box input {
            flex: 1;
            padding: 1.2rem 1.8rem;
            border: none;
            background: #1e2130;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-box button {
            padding: 0 2.5rem;
            background: linear-gradient(90deg, #4dabf7, #3b8fd8);
            color: white;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #3b8fd8, #2a7bc1);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            max-width: 1300px;
            margin: 3rem auto;
            padding: 0 20px;
        }
        main {
            background: rgba(26, 28, 44, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid #33365a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        article > * + * {
            margin-top: 2.2rem;
        }
        h2, h3, h4 {
            color: #ffffff;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.3rem;
            border-left: 5px solid #ff6b9d;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #4dabf7;
        }
        h4 {
            font-size: 1.4rem;
            color: #b0b7d6;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(77, 171, 247, 0.1));
            border-left: 4px solid #4dabf7;
            padding: 1.8rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .weapon-card {
            background: #1e2130;
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid #33365a;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .weapon-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(77, 171, 247, 0.15);
            border-color: #4dabf7;
        }
        .weapon-card h4 {
            color: #ffcc00;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .weapon-card h4 i {
            color: #ff6b9d;
        }
        .stat-bar {
            height: 8px;
            background: #2a2d45;
            border-radius: 4px;
            margin: 0.8rem 0;
            overflow: hidden;
        }
        .stat-fill {
            height: 100%;
            background: linear-gradient(90deg, #4dabf7, #ff6b9d);
            border-radius: 4px;
        }
        aside {
            background: rgba(26, 28, 44, 0.8);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid #33365a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #ff6b9d;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 1rem 0;
        }
        .rating-form input, .rating-form select, .rating-form textarea {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1.2rem;
            background: #1e2130;
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
        }
        .rating-form button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(90deg, #ff6b9d, #e84393);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .rating-form button:hover {
            background: linear-gradient(90deg, #e84393, #d63384);
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid #2a2d45;
        }
        .comment {
            background: #1e2130;
            padding: 1.8rem;
            border-radius: 12px;
            margin-bottom: 1.8rem;
            border-left: 4px solid #4dabf7;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: #8a8fb5;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 3rem 20px;
            max-width: 1300px;
            margin: 3rem auto 0;
            border-top: 2px solid #2a2d45;
            border-bottom: 2px solid #2a2d45;
        }
        .web-link {
            background: #1e2130;
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #252841;
            transform: scale(1.03);
        }
        .web-link a {
            color: #b0b7d6;
            font-weight: 600;
        }
        footer {
            text-align: center;
            padding: 2.5rem 20px;
            color: #8a8fb5;
            font-size: 0.95rem;
            max-width: 1300px;
            margin: 0 auto;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(20, 22, 36, 0.98);
                padding: 2rem;
                border-top: 1px solid #2a2d45;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .weapon-grid {
                grid-template-columns: 1fr;
            }
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-box button {
                padding: 1rem;
            }
            .longtail-links {
                grid-template-columns: 1fr;
            }
        }
