* { 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: #0a0a12;
    background-image: radial-gradient(circle at 15% 50%, rgba(30, 15, 60, 0.7) 0%, transparent 55%), radial-gradient(circle at 85% 30%, rgba(60, 10, 20, 0.5) 0%, transparent 55%);
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: #6ee7ff; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #ff4d8d; text-shadow: 0 0 8px rgba(255, 77, 141, 0.6); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.site-header {
    background: rgba(10, 5, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a1a5e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00f7ff, #ff00cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}
.breadcrumb {
    font-size: 0.9rem;
    color: #aaa;
    margin: 10px 0 0;
}
.breadcrumb a { color: #aaa; }
.breadcrumb a:hover { color: #6ee7ff; }
.nav-desktop {
    display: flex;
    gap: 30px;
}
.nav-desktop a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}
.nav-desktop a:hover, .nav-desktop a.active {
    border-bottom-color: #ff4d8d;
}
.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #00f7ff;
    cursor: pointer;
}
.nav-mobile {
    display: none;
    flex-direction: column;
    background: rgba(20, 10, 40, 0.98);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #2a1a5e;
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
    padding: 12px 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
}
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    border-radius: 10px;
    margin: 30px 0;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #00f7ff, #ff4d8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ccc;
}
.search-box {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
}
.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #2a1a5e;
    background: rgba(255,255,255,0.05);
    border-radius: 50px 0 0 50px;
    color: #fff;
    font-size: 1rem;
}
.search-box button {
    padding: 15px 30px;
    background: linear-gradient(90deg, #2a1a5e, #ff4d8d);
    border: none;
    border-radius: 0 50px 50px 0;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}
.search-box button:hover { transform: scale(1.05); }
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 30px 0;
}
.article-content {
    background: rgba(20, 15, 35, 0.7);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.article-content h2 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff4d8d;
    color: #00f7ff;
}
.article-content h3 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: #ffb347;
}
.article-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: justify;
}
.article-content ul, .article-content ol {
    margin: 20px 0 20px 30px;
}
.article-content li { margin-bottom: 10px; }
.highlight {
    background: rgba(255, 77, 141, 0.1);
    border-left: 4px solid #ff4d8d;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}
.featured-img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #00f7ff;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}
.sidebar {
    background: rgba(20, 15, 35, 0.7);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #333;
    align-self: start;
}
.sidebar h3 {
    color: #00f7ff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.weapon-category {
    margin-bottom: 25px;
}
.weapon-category h4 {
    color: #ffb347;
    margin-bottom: 10px;
}
.weapon-category ul { list-style: none; }
.weapon-category li {
    padding: 8px 0;
    border-bottom: 1px dashed #444;
}
.rating-widget, .comment-widget {
    background: rgba(30, 20, 50, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}
.rating-widget h4, .comment-widget h4 {
    margin-bottom: 15px;
    color: #ff4d8d;
}
.stars { margin-bottom: 15px; }
.stars i {
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 5px;
}
.rating-form input, .comment-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
}
.rating-form button, .comment-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #2a1a5e, #00f7ff);
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 50px 0 30px;
    padding: 30px;
    background: rgba(10, 5, 25, 0.8);
    border-radius: 10px;
}
.web-link {
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #2a1a5e;
    transition: transform 0.3s, border-color 0.3s;
}
.web-link:hover {
    transform: translateY(-5px);
    border-color: #ff4d8d;
}
.site-footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #2a1a5e;
    color: #888;
    font-size: 0.9rem;
}
.site-footer p { margin: 10px 0; }
@media (max-width: 992px) {
    .main-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .article-content h2 { font-size: 1.8rem; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .hero h1 { font-size: 2rem; }
    .search-box { flex-direction: column; }
    .search-box input { border-radius: 50px; margin-bottom: 10px; }
    .search-box button { border-radius: 50px; }
    .footer-links { grid-template-columns: 1fr; }
}
