        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e8e6e3;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f0f 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', 'Times New Roman', serif;
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.5rem;
            text-align: center;
            text-shadow: 3px 3px 5px rgba(0,0,0,0.8);
            margin-top: 2rem;
            background: linear-gradient(to right, #d4af37, #f4e4a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #b8860b;
            padding-left: 1.5rem;
            margin-top: 3.5rem;
            position: relative;
        }
        h2::after {
            content: '⚔️';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #f0c674;
            margin-top: 2.5rem;
            border-bottom: 2px dashed #b8860b;
            padding-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        strong {
            color: #f0c674;
            font-weight: 700;
        }
        em {
            color: #b0c4de;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #d4af37;
            padding: 1.5rem 2rem;
            margin: 2.5rem 0;
            background: rgba(212, 175, 55, 0.08);
            border-radius: 0 10px 10px 0;
            font-style: italic;
            font-size: 1.2rem;
        }
        blockquote::before {
            content: "“";
            font-size: 3rem;
            color: #d4af37;
            line-height: 0;
            margin-right: 0.5rem;
            vertical-align: -0.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #d4af37;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #d4af37;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
        }
        .logo:hover {
            color: #f4e4a6;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
            transform: scale(1.05);
        }
        .logo span {
            color: #c41e3a;
        }
        .breadcrumb {
            margin: 1.5rem 0 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #f4e4a6;
            text-decoration: underline;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: #e8e6e3;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            background: rgba(212, 175, 55, 0.2);
            color: #f4e4a6;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: #d4af37;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .nav-link:hover::after {
            transform: scaleX(1);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #d4af37;
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 20, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 2px solid #d4af37;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 1rem;
            border-bottom: 1px solid #333;
        }
        .search-container {
            max-width: 600px;
            margin: 3rem auto 4rem;
            padding: 0 1rem;
        }
        .search-form {
            display: flex;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #444;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-form:focus-within {
            border-color: #d4af37;
            box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
        }
        .search-input {
            flex-grow: 1;
            padding: 1.2rem 1.8rem;
            border: none;
            background: #1a1a1a;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-input::placeholder {
            color: #888;
        }
        .search-button {
            padding: 0 2.5rem;
            background: linear-gradient(45deg, #d4af37, #b8860b);
            border: none;
            color: #000;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(45deg, #f4e4a6, #d4af37);
            letter-spacing: 1px;
        }
        main {
            padding: 2rem 0 5rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #333;
            color: #aaa;
            font-size: 0.95rem;
        }
        .author, .date {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.4s, box-shadow 0.4s;
            position: relative;
            overflow: hidden;
        }
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
        }
        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d4af37, #c41e3a, #d4af37);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .review-title {
            font-size: 2.2rem;
            margin: 0;
            flex-grow: 1;
        }
        .score-badge {
            background: linear-gradient(45deg, #d4af37, #f4e4a6);
            color: #000;
            font-weight: bold;
            font-size: 2rem;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            min-width: 100px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        .review-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid #444;
            transition: transform 0.5s;
        }
        .review-image:hover {
            transform: scale(1.02);
        }
        .pros-cons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .pros, .cons {
            padding: 1.5rem;
            border-radius: 10px;
        }
        .pros {
            background: rgba(40, 100, 40, 0.15);
            border: 1px solid #2a7a2a;
        }
        .cons {
            background: rgba(120, 40, 40, 0.15);
            border: 1px solid #7a2a2a;
        }
        .pros h4, .cons h4 {
            color: #4CAF50;
            margin-bottom: 1rem;
        }
        .cons h4 {
            color: #f44336;
        }
        .pros ul, .cons ul {
            list-style: none;
            padding-left: 0;
        }
        .pros li, .cons li {
            padding: 0.5rem 0;
            padding-left: 1.8rem;
            position: relative;
        }
        .pros li::before {
            content: '✓';
            color: #4CAF50;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .cons li::before {
            content: '✗';
            color: #f44336;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid #444;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 0.8rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s, transform 0.3s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .rating-form {
            margin-top: 2rem;
        }
        .rating-form input,
        .rating-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: #1a1a1a;
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .rating-form button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(45deg, #d4af37, #b8860b);
            border: none;
            border-radius: 5px;
            color: #000;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-form button:hover {
            background: linear-gradient(45deg, #f4e4a6, #d4af37);
            letter-spacing: 1px;
        }
        .comments-section {
            margin-top: 5rem;
            background: rgba(30, 30, 30, 0.6);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid #444;
        }
        .comment-form {
            margin-bottom: 3rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 150px;
            padding: 1.5rem;
            background: #1a1a1a;
            border: 2px solid #444;
            border-radius: 10px;
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            resize: vertical;
        }
        .comment-submit {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .comment-submit button {
            padding: 1rem 3rem;
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            border: none;
            border-radius: 8px;
            color: #fff;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-submit button:hover {
            background: linear-gradient(45deg, #2a5298, #1e3c72);
            transform: translateY(-3px);
        }
        .comment {
            background: rgba(40, 40, 40, 0.7);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 4px solid #d4af37;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: bold;
            color: #d4af37;
            font-size: 1.2rem;
        }
        .comment-date {
            color: #888;
            font-size: 0.9rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0;
            padding: 3rem 0;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
        }
        .web-link {
            padding: 1.5rem;
            background: rgba(40, 40, 40, 0.7);
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px);
            border-color: #d4af37;
        }
        .web-link a {
            color: #d4af37;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            line-height: 1.6;
        }
        .web-link a:hover {
            color: #f4e4a6;
            text-decoration: underline;
        }
        footer {
            background: rgba(10, 10, 10, 0.95);
            padding: 3rem 0;
            text-align: center;
            border-top: 3px solid #d4af37;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .copyright {
            color: #888;
            font-size: 0.95rem;
            margin-top: 2rem;
            line-height: 1.6;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #d4af37;
        }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.15) 50%, transparent 100%);
            padding: 0.5rem 1.5rem;
            border-left: 3px solid #d4af37;
            margin: 2rem 0;
            font-size: 1.2rem;
        }
        .key-term {
            color: #d4af37;
            font-weight: bold;
            padding: 0.2rem 0.5rem;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 3px;
        }
        .internal-link {
            color: #4da6ff;
            text-decoration: none;
            border-bottom: 1px dotted #4da6ff;
            transition: all 0.3s;
        }
        .internal-link:hover {
            color: #80c1ff;
            border-bottom: 1px solid #80c1ff;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            margin: 3rem 0;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
                padding-left: 1rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 1.2rem;
            }
            .review-card {
                padding: 1.8rem;
            }
            .review-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .score-badge {
                align-self: flex-end;
            }
            .review-image {
                height: 250px;
            }
            .sidebar-widget {
                padding: 1.5rem;
            }
            .comments-section {
                padding: 2rem 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .review-card, .sidebar-widget, .comments-section {
            animation: fadeIn 0.8s ease-out;
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(#d4af37, #b8860b);
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(#f4e4a6, #d4af37);
        }
