* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0e17;
            --primary-accent: #c28f2d;
            --primary-gold: #ffb142;
            --secondary-red: #8b0000;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --bg-card: #1a1f2e;
            --border-color: #2a3347;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffda79;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, rgba(10, 14, 23, 0.95), rgba(10, 14, 23, 0.85));
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(to right, var(--primary-gold), var(--secondary-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--primary-accent);
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav.desktop-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 5px;
            position: relative;
        }
        nav.desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-accent);
            transition: var(--transition);
        }
        nav.desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--bg-card);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--primary-accent);
            background-color: rgba(255, 177, 66, 0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 20px;
            border-bottom: 2px solid var(--primary-accent);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--primary-gold);
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary-gold);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #ffda79;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight-box {
            background-color: var(--bg-card);
            border-left: 5px solid var(--primary-accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow);
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .specs-table th, .specs-table td {
            border: 1px solid var(--border-color);
            padding: 15px;
            text-align: left;
        }
        .specs-table th {
            background-color: var(--secondary-red);
            color: white;
            font-weight: 600;
        }
        .specs-table tr:nth-child(even) {
            background-color: rgba(26, 31, 46, 0.5);
        }
        .specs-table tr:hover {
            background-color: rgba(255, 177, 66, 0.1);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 2px solid var(--border-color);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .sidebar {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: var(--primary-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .search-widget form {
            display: flex;
        }
        .search-widget input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            background-color: rgba(255,255,255,0.05);
            color: var(--text-light);
            border-radius: 5px 0 0 5px;
            outline: none;
        }
        .search-widget button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-widget button:hover {
            background-color: var(--primary-gold);
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .rating-widget .star {
            font-size: 1.5rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget .star:hover,
        .rating-widget .star.active {
            color: var(--primary-gold);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rating-widget input, .rating-widget select {
            padding: 10px;
            border: 1px solid var(--border-color);
            background-color: rgba(255,255,255,0.05);
            color: var(--text-light);
            border-radius: 5px;
        }
        .rating-widget button {
            background-color: var(--secondary-red);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .rating-widget button:hover {
            background-color: #a30000;
        }
        .comment-form {
            margin-top: 40px;
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .comment-form h3 {
            color: var(--primary-gold);
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            background-color: rgba(255,255,255,0.05);
            color: var(--text-light);
            border-radius: 5px;
            resize: vertical;
        }
        .form-group textarea {
            min-height: 150px;
        }
        .comment-form button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--primary-gold);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
            padding: 30px;
            background-color: var(--bg-card);
            border-radius: 10px;
            border-top: 3px solid var(--primary-accent);
        }
        .web-link {
            padding: 12px 15px;
            background-color: rgba(255,255,255,0.03);
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 177, 66, 0.1);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .longtail-links {
                grid-template-columns: 1fr;
            }
        }
        footer {
            background-color: #05080f;
            padding: 40px 0 20px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 20px;
            color: var(--text-gray);
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            width: 100%;
        }
        .text-bold {
            font-weight: 700;
            color: var(--primary-gold);
        }
        .text-italic {
            font-style: italic;
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav.desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-grid {
                gap: 30px;
            }
            .sidebar {
                position: static;
            }
        }
