        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: linear-gradient(rgba(15, 15, 15, 0.97), rgba(15, 15, 15, 0.97)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cGF0aCBkPSJNMjUgMjVIMHYyNWg1MFYwaC0yNXYyNXoiIGZpbGw9IiMxYTFhMWEiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #f5e07a;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid #333;
        }
        .section-title {
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #8b6914);
        }
        .highlight {
            color: #d4af37;
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #8b6914, #d4af37);
            color: #0f0f0f;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
            color: #0f0f0f;
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #333;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .logo span {
            color: #b22222;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #ccc;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: #d4af37;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.98);
            flex-direction: column;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: #ccc;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: #d4af37;
            background-color: rgba(212, 175, 55, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1a1a1a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #666;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 80px 0;
            text-align: center;
            border-bottom: 5px solid #8b6914;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 3px 3px 6px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ddd;
        }
        .search-box {
            background-color: #1a1a1a;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .search-box h2 {
            margin-bottom: 20px;
            color: #d4af37;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #333;
            border-radius: 5px 0 0 5px;
            background-color: #2a2a2a;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: linear-gradient(135deg, #8b6914, #d4af37);
            color: #000;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-article {
            background-color: rgba(26, 26, 26, 0.8);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-image {
            margin: 30px 0;
            text-align: center;
        }
        .article-image figcaption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .article-section {
            margin-bottom: 50px;
        }
        .article-section h2 {
            color: #d4af37;
            font-size: 2rem;
            margin-bottom: 20px;
            border-left: 5px solid #d4af37;
            padding-left: 15px;
        }
        .article-section h3 {
            color: #f5e07a;
            font-size: 1.5rem;
            margin: 25px 0 15px;
        }
        .article-section p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-section ul, .article-section ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        .article-section li {
            margin-bottom: 10px;
        }
        .quote {
            border-left: 4px solid #d4af37;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #ccc;
            background-color: rgba(212, 175, 55, 0.05);
            padding: 20px;
        }
        .sidebar {
            background-color: rgba(26, 26, 26, 0.8);
            padding: 30px;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget-title {
            color: #d4af37;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffcc00;
            margin-bottom: 15px;
        }
        .score {
            font-size: 3rem;
            font-weight: bold;
            color: #d4af37;
        }
        .rating-form input[type="radio"] {
            display: none;
        }
        .rating-form label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            margin: 0 5px;
        }
        .rating-form input:checked ~ label,
        .rating-form label:hover,
        .rating-form label:hover ~ label {
            color: #ffcc00;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            display: block;
            padding: 12px;
            background-color: #2a2a2a;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .quick-links a:hover {
            background-color: #333;
            transform: translateX(5px);
        }
        .comment-section {
            background-color: rgba(26, 26, 26, 0.8);
            padding: 40px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background-color: #2a2a2a;
            border: 2px solid #333;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 150px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 48%;
            padding: 12px;
            background-color: #2a2a2a;
            border: 2px solid #333;
            border-radius: 5px;
            color: #fff;
            margin-bottom: 15px;
        }
        .comment-form .form-group {
            display: flex;
            justify-content: space-between;
            gap: 4%;
        }
        .comment-list .comment {
            background-color: #2a2a2a;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 20px;
            border-left: 4px solid #444;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #aaa;
            font-size: 0.9rem;
        }
        .footer-links {
            background-color: #1a1a1a;
            padding: 40px 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 10px 20px;
            background-color: #2a2a2a;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #333;
            transform: translateY(-3px);
        }
        footer {
            background-color: #111;
            padding: 40px 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .copyright {
            color: #777;
            font-size: 0.9rem;
        }
        .social-links a {
            display: inline-block;
            margin: 0 10px;
            font-size: 1.5rem;
            color: #777;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #d4af37;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 5px;
                margin-bottom: 10px;
            }
            .comment-form .form-group {
                flex-direction: column;
            }
            .comment-form input[type="text"],
            .comment-form input[type="email"] {
                width: 100%;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
