        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-highlight {
            color: #c92a2a;
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(to right, #8B0000, #c92a2a);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(139, 0, 0, 0.5);
            background: linear-gradient(to right, #9d1a1a, #d63333);
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #8B0000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #8B0000, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #d4a017;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #ccc;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #ff6b6b;
            border-bottom-color: #ff6b6b;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(20, 20, 20, 0.98);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            border-top: 1px solid #333;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile a {
            display: block;
            color: #ddd;
            text-decoration: none;
            padding: 15px 0;
            border-bottom: 1px solid #333;
            font-size: 1.1rem;
        }
        .nav-mobile a:hover {
            color: #ff6b6b;
            padding-left: 10px;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #1a1a1a;
            border-bottom: 1px solid #333;
            margin-bottom: 30px;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #aaa;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #ff6b6b;
        }
        .breadcrumb span {
            color: #666;
        }
        .hero {
            text-align: center;
            padding: 50px 20px;
            background: radial-gradient(circle at center, #2a0a0a 0%, #0c0c0c 70%);
            border-radius: 10px;
            margin: 30px auto;
            max-width: 1100px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-widget {
            background: #222;
            padding: 30px;
            border-radius: 10px;
            margin: 40px auto;
            max-width: 800px;
            border-left: 5px solid #8B0000;
        }
        .search-widget h2 {
            margin-bottom: 20px;
            color: #fff;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 1px solid #444;
            border-radius: 5px;
            background: #111;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            padding: 15px 25px;
            background: #8B0000;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #a52a2a;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px auto;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #151515;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-content h2 {
            color: #f0c040;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #444;
            font-size: 2rem;
        }
        .article-content h3 {
            color: #ff9d5c;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.6rem;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #fff;
            font-weight: 700;
        }
        .article-content em {
            color: #aaa;
            font-style: italic;
        }
        .article-content a {
            color: #ff9999;
            text-decoration: none;
            border-bottom: 1px dotted #ff9999;
            transition: color 0.3s;
        }
        .article-content a:hover {
            color: #ff6b6b;
            border-bottom-style: solid;
        }
        .info-box {
            background: #1e2a3a;
            border-left: 5px solid #3498db;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }
        .image-wrapper {
            margin: 40px auto;
            text-align: center;
            border: 1px solid #444;
            padding: 10px;
            border-radius: 8px;
            background: #111;
        }
        .image-wrapper img {
            border-radius: 5px;
        }
        .image-caption {
            font-style: italic;
            color: #888;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background: #151515;
            padding: 25px;
            border-radius: 10px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #f0c040;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #333;
        }
        .sidebar a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar a:hover {
            color: #ff6b6b;
        }
        .sidebar i {
            color: #8B0000;
        }
        .interaction-widgets {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        .comment-box, .rating-box {
            background: #151515;
            padding: 30px;
            border-radius: 10px;
            border-top: 5px solid #8B0000;
        }
        .comment-box h3, .rating-box h3 {
            color: #fff;
            margin-bottom: 20px;
        }
        .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            background: #222;
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .footer-links {
            background: #111;
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 2px solid #333;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #1a1a1a;
            padding: 15px;
            border-radius: 5px;
            border-left: 3px solid #8B0000;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateX(5px);
            background: #222;
        }
        .web-link a {
            color: #ccc;
            text-decoration: none;
            font-size: 1rem;
            display: block;
        }
        .web-link a:hover {
            color: #ff6b6b;
        }
        .site-footer {
            background: #0a0a0a;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid #333;
        }
        .copyright {
            color: #666;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .copyright a {
            color: #8B0000;
            text-decoration: none;
        }
