:root {
            --primary-dark: #1a1a2e;
            --primary-blue: #16213e;
            --accent-gold: #d4af37;
            --accent-red: #b91d1d;
            --text-light: #f0f0f0;
            --text-gray: #b8b8b8;
            --card-bg: #0f3460;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            min-height: 100vh;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-gold), #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent-red);
            -webkit-text-fill-color: var(--accent-red);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.1);
            border-radius: 30px;
            padding: 8px 15px;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: white;
            padding: 5px 10px;
            width: 200px;
            outline: none;
        }
        .search-box button {
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--primary-blue);
            padding: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            background: rgba(15, 52, 96, 0.3);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(rgba(22, 33, 62, 0.8), rgba(10, 10, 20, 0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            border-left: 5px solid var(--accent-red);
        }
        .article-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 2px 2px 4px #000;
        }
        .article-header .meta {
            color: var(--text-gray);
            font-style: italic;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        }
        .article-body h3 {
            font-size: 1.7rem;
            color: #fff;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight-box {
            background: var(--card-bg);
            border-left: 5px solid var(--accent-red);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .image-container figcaption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-gray);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(15, 52, 96, 0.7);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .widget h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .rating-widget .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin-bottom: 15px;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rating-widget select, .comment-form input, .comment-form textarea {
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #444;
            background: rgba(0,0,0,0.3);
            color: white;
        }
        .rating-widget button, .comment-form button {
            background: linear-gradient(to right, var(--accent-red), #a80a0a);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-widget button:hover, .comment-form button:hover {
            background: linear-gradient(to right, #c91d1d, #8a0808);
            transform: translateY(-3px);
        }
        .comment-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }
        .comment-list::-webkit-scrollbar {
            width: 8px;
        }
        .comment-list::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 4px;
        }
        .comment-item {
            background: rgba(0,0,0,0.2);
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 8px;
        }
        .comment-author {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--text-gray);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
            padding: 30px;
            background: rgba(10, 10, 20, 0.8);
            border-radius: 10px;
        }
        .web-link {
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateX(5px);
        }
        footer {
            background-color: #0a0a14;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .nav-desktop, .search-box.desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .longtail-links {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
