:root {
            --primary-dark: #1a2a3a;
            --primary-blue: #2c3e50;
            --accent-gold: #d4af37;
            --accent-red: #b33939;
            --text-light: #ecf0f1;
            --text-gray: #bdc3c7;
            --bg-section: #0f151c;
            --border-color: #34495e;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            --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.8;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, rgba(44, 62, 80, 0.15) 0%, transparent 20%), radial-gradient(circle at 80% 80%, rgba(180, 57, 57, 0.1) 0%, transparent 20%);
            overflow-x: hidden;
        }
        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;
        }
        .site-header {
            background-color: rgba(26, 42, 58, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-blue);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(15, 21, 28, 0.7);
            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: var(--text-gray);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--bg-section);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--accent-red);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #ff9f43 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .meta {
            color: var(--text-gray);
            font-size: 0.95rem;
            display: flex;
            gap: 1rem;
        }
        .meta i {
            margin-right: 0.5rem;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--accent-gold);
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #ff9f43;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .article-content em {
            color: var(--text-gray);
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(179, 57, 57, 0.1));
            border-left: 5px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 3px solid var(--border-color);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            padding: 0.8rem;
            background-color: rgba(52, 73, 94, 0.5);
            font-size: 0.95rem;
        }
        .sidebar-widget {
            background-color: var(--bg-section);
            padding: 1.8rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            background-color: #2c3e50;
            border: 1px solid var(--border-color);
            border-radius: 6px 0 0 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #ffd166;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: #555;
            margin-bottom: 0.5rem;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
        }
        .rating-widget input, .rating-widget textarea {
            width: 100%;
            padding: 0.9rem;
            background-color: #2c3e50;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            resize: vertical;
        }
        .rating-widget button {
            background: linear-gradient(to right, var(--accent-gold), #ff9f43);
            color: var(--primary-dark);
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(212, 175, 55, 0.3);
        }
        .comments-section {
            background-color: var(--bg-section);
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 2.5rem;
            border: 1px solid var(--border-color);
        }
        .comments-section h2 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        .comment-form {
            display: grid;
            gap: 1.2rem;
            margin-bottom: 3rem;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }
        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: #2c3e50;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form textarea {
            min-height: 150px;
        }
        .comment-form button {
            background: linear-gradient(to right, var(--accent-red), #b33939);
            color: white;
            border: none;
            padding: 1.2rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .comment-form button:hover {
            background: linear-gradient(to right, #ff5252, var(--accent-red));
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(179, 57, 57, 0.4);
        }
        .footer-links {
            background-color: var(--primary-blue);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px);
        }
        .site-footer {
            background-color: #0c1117;
            padding: 2.5rem 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .desktop-nav {
                display: none;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.4rem;
            }
            article, .sidebar-widget, .comments-section {
                padding: 1.8rem;
            }
            .main-grid {
                gap: 1.8rem;
            }
        }
