        * {
            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: #e6eef5;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4da6ff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #80c1ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            padding: 15px 0;
            border-bottom: 2px solid #2a3a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b00, #ffa600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #b0c4de;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: #ffa600;
            border-bottom-color: #ffa600;
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffa600;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a2332;
            padding: 20px;
            border-top: 1px solid #2a3a5a;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: #b0c4de;
            font-size: 1.1rem;
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: #ffa600;
            border-left-color: #ffa600;
            background-color: rgba(255, 166, 0, 0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8a9bb2;
        }
        .breadcrumb a {
            color: #8a9bb2;
        }
        .breadcrumb a:hover {
            color: #ffa600;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 35, 50, 0.7);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffffff;
            line-height: 1.2;
            background: linear-gradient(90deg, #ffa600, #ff6b00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        article h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #ffcc80;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        article h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #b0c4de;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article em {
            color: #ffcc80;
            font-style: italic;
        }
        article strong {
            color: #ffffff;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 166, 0, 0.1));
            border-left: 5px solid #ffa600;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #1a2332;
            border-radius: 8px;
            overflow: hidden;
        }
        .specs-table th, .specs-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #2a3a5a;
        }
        .specs-table th {
            background-color: #0f1419;
            color: #ffa600;
            font-weight: 700;
        }
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        .specs-table tr:hover {
            background-color: rgba(255, 166, 0, 0.05);
        }
        .featured-image {
            margin: 40px 0;
            text-align: center;
        }
        .featured-image img {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        .image-caption {
            font-style: italic;
            color: #8a9bb2;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed #4da6ff;
        }
        .sidebar {
            background: rgba(26, 35, 50, 0.7);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar h3 {
            color: #ffcc80;
            margin-bottom: 15px;
            font-size: 1.3rem;
            padding-bottom: 8px;
            border-bottom: 1px solid #334155;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background-color: #0f1419;
            border: 1px solid #2a3a5a;
            border-radius: 6px 0 0 6px;
            color: #e6eef5;
        }
        .search-form button {
            background: linear-gradient(90deg, #ff6b00, #ffa600);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffa600;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.1);
        }
        .submit-rating {
            background-color: #2a3a5a;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: background-color 0.3s;
        }
        .submit-rating:hover {
            background-color: #3a4a6a;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #2a3a5a;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links i {
            color: #ffa600;
            font-size: 0.9rem;
        }
        .comment-section {
            margin-top: 50px;
            background: rgba(26, 35, 50, 0.7);
            border-radius: 12px;
            padding: 30px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background-color: #0f1419;
            border: 1px solid #2a3a5a;
            border-radius: 6px;
            color: #e6eef5;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px;
            background-color: #0f1419;
            border: 1px solid #2a3a5a;
            border-radius: 6px;
            color: #e6eef5;
            margin-bottom: 15px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        @media (max-width: 576px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        .submit-comment {
            background: linear-gradient(90deg, #ff6b00, #ffa600);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: opacity 0.3s;
        }
        .submit-comment:hover {
            opacity: 0.9;
        }
        .internal-links {
            background-color: #1a2332;
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid #2a3a5a;
            border-bottom: 2px solid #2a3a5a;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 10px 20px;
            background: rgba(255, 166, 0, 0.1);
            border-radius: 6px;
            border: 1px solid rgba(255, 166, 0, 0.3);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 166, 0, 0.2);
            transform: translateY(-3px);
        }
        .site-footer {
            padding: 30px 0;
            text-align: center;
            color: #8a9bb2;
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            article {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .header-content, .breadcrumb, .main-content, .internal-links .container, .site-footer .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
