        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
        }
        a {
            color: #ff6b35;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff9a3d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #ff6b35, #ff9a3d);
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #ff9a3d;
            text-align: center;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: #ff6b35;
            margin: 10px auto;
            border-radius: 2px;
        }
        header {
            background: rgba(10, 10, 10, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff6b35;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff6b35, #ff9a3d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a {
            background: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            transition: background 0.3s;
        }
        .desktop-nav a:hover {
            background: rgba(255, 107, 53, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b35;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 10, 10, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 4px solid transparent;
            transition: border-color 0.3s;
        }
        .mobile-nav a:hover {
            border-left-color: #ff6b35;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff6b35;
        }
        .breadcrumb span {
            color: #ff6b35;
        }
        .hero {
            padding: 80px 20px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        article h2 {
            font-size: 2rem;
            color: #ff9a3d;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 107, 53, 0.3);
        }
        article h3 {
            font-size: 1.5rem;
            color: #ffb347;
            margin: 25px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        article strong {
            color: #ff9a3d;
            font-weight: 700;
        }
        article em {
            color: #ffb347;
            font-style: italic;
        }
        .highlight-box {
            background: rgba(255, 107, 53, 0.1);
            border-left: 5px solid #ff6b35;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid #ff6b35;
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .loadout-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(20, 20, 35, 0.8);
            border-radius: 10px;
            overflow: hidden;
        }
        .loadout-table th, .loadout-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 107, 53, 0.3);
        }
        .loadout-table th {
            background: rgba(255, 107, 53, 0.2);
            color: #ff9a3d;
        }
        .loadout-table tr:hover {
            background: rgba(255, 107, 53, 0.1);
        }
        aside {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 40px;
        }
        .sidebar-widget h3 {
            color: #ff9a3d;
            margin-bottom: 20px;
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 107, 53, 0.3);
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ff6b35;
            border-radius: 30px 0 0 30px;
            background: rgba(20, 20, 35, 0.9);
            color: #fff;
            outline: none;
        }
        .search-box button {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff9a3d;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ffed4e;
        }
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #444;
            border-radius: 8px;
            background: rgba(20, 20, 35, 0.9);
            color: #fff;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form input:focus, .comment-form textarea:focus {
            border-color: #ff6b35;
        }
        .footer-links {
            background: rgba(10, 10, 15, 0.9);
            padding: 50px 20px;
            border-top: 2px solid #ff6b35;
            border-bottom: 1px solid #333;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 107, 53, 0.05);
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 107, 53, 0.15);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffb347;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #ff9a3d;
        }
        footer {
            background: #0a0a0a;
            padding: 40px 20px;
            text-align: center;
            color: #aaa;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            article {
                padding: 25px;
            }
            article h2 {
                font-size: 1.7rem;
            }
            article h3 {
                font-size: 1.3rem;
            }
        }
