        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e6f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            border-bottom: 2px solid #2a3a57;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #4dabf7, #3bc9db);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #b0c4de;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #4dabf7;
            border-bottom-color: #4dabf7;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #b0c4de;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #161d29;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #5c7c9e;
        }
        .breadcrumb a {
            color: #8ba3c7;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .hero {
            text-align: center;
            padding: 80px 0;
            background: radial-gradient(circle at center, #1e2a3d 0%, #0f1419 70%);
            border-bottom: 1px solid #2a3a57;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #b0c4de;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, #339af0, #22b8cf);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(51, 154, 240, 0.3);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(51, 154, 240, 0.4);
            color: white;
        }
        .content-section {
            background-color: #161d29;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border-left: 5px solid #339af0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h2 {
            color: #4dabf7;
            font-size: 2.2rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #2a3a57;
        }
        h3 {
            color: #3bc9db;
            font-size: 1.8rem;
            margin: 35px 0 20px;
        }
        h4 {
            color: #74c0fc;
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #d0d9e9;
        }
        .highlight {
            background-color: #1e2a3d;
            border-left: 4px solid #fab005;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #ffd43b;
        }
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .weapon-card {
            background: #1e2a3d;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s;
            border: 1px solid #2a3a57;
        }
        .weapon-card:hover {
            transform: translateY(-5px);
            border-color: #339af0;
        }
        .search-widget {
            background: #1e2a3d;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin: 40px 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #339af0;
            border-radius: 50px 0 0 50px;
            background: #0f1419;
            color: white;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(90deg, #339af0, #22b8cf);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #228be6, #15aabf);
        }
        .user-interaction {
            background-color: #161d29;
            border-radius: 15px;
            padding: 40px;
            margin-top: 50px;
        }
        .rating-section, .comment-section {
            margin-bottom: 40px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .star {
            font-size: 2.5rem;
            color: #5c7c9e;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd43b;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            background-color: #1e2a3d;
            border: 1px solid #2a3a57;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(90deg, #40c057, #20c997);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-button:hover {
            transform: scale(1.05);
        }
        .site-footer {
            background-color: #0a0e14;
            padding: 60px 0 30px;
            border-top: 2px solid #2a3a57;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: #4dabf7;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col a {
            color: #8ba3c7;
        }
        .footer-col a:hover {
            color: #4dabf7;
            padding-left: 5px;
        }
        friend-link {
            display: inline-block;
            background: #1e2a3d;
            padding: 10px 20px;
            border-radius: 6px;
            margin: 5px;
            border: 1px solid #2a3a57;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a3a57;
            color: #8ba3c7;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a2332;
                padding: 20px;
                border-top: 1px solid #2a3a57;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav ul li {
                margin: 10px 0;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1.1rem; }
            .content-section { padding: 25px; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-button { border-radius: 50px; padding: 15px; }
        }
