:root {
            --primary-dark: #0a0e17;
            --primary-gold: #d4af37;
            --primary-blue: #1a5f9e;
            --secondary-red: #9e1a1a;
            --text-light: #f5f5f5;
            --text-gray: #b0b0b0;
            --bg-card: #141a28;
            --border-color: #2a3450;
            --shadow-color: rgba(0, 0, 0, 0.6);
            --transition-speed: 0.3s;
        }
        * {
            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-color: var(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, rgba(26, 95, 158, 0.1) 0%, transparent 20%),
                              radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #ffd700;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-gold), #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px var(--shadow-color);
        }
        .logo a {
            background: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: all var(--transition-speed);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--primary-dark);
            border-top: 1px solid var(--border-color);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-speed);
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile a {
            display: block;
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(20, 26, 40, 0.7);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 8px;
        }
        .search-section {
            background: linear-gradient(135deg, var(--bg-card) 0%, #1a2235 100%);
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px var(--shadow-color);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--border-color);
            border-radius: 50px 0 0 50px;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--primary-blue);
        }
        .search-form button {
            padding: 0 30px;
            background: linear-gradient(90deg, var(--primary-blue), #2a7bc8);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all var(--transition-speed);
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #2a7bc8, var(--primary-blue));
            transform: scale(1.02);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-container {
            background-color: var(--bg-card);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 15px 35px var(--shadow-color);
        }
        .article-header {
            padding: 40px;
            background: linear-gradient(rgba(10, 14, 23, 0.9), rgba(10, 14, 23, 0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
        }
        .article-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        }
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
        }
        .article-meta {
            color: var(--text-gray);
            font-size: 0.9rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .article-body {
            padding: 40px;
        }
        .article-section {
            margin-bottom: 60px;
        }
        .article-section:last-child {
            margin-bottom: 0;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-gold);
            color: var(--primary-gold);
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #fff;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--primary-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-list {
            list-style: none;
            margin: 25px 0;
        }
        .feature-list li {
            padding: 10px 0 10px 35px;
            position: relative;
        }
        .feature-list li::before {
            content: '⚔️';
            position: absolute;
            left: 0;
            top: 10px;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .article-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 2px solid var(--border-color);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform var(--transition-speed);
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            color: var(--text-gray);
            font-style: italic;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .widget-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-widget {
            text-align: center;
        }
        .rating-stars {
            font-size: 2rem;
            color: var(--primary-gold);
            margin: 15px 0;
            letter-spacing: 5px;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            direction: rtl;
            display: flex;
            justify-content: center;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--primary-gold);
        }
        .rating-form input,
        .rating-form select {
            padding: 12px;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
        }
        .rating-form button {
            padding: 12px;
            background: linear-gradient(90deg, var(--primary-blue), #2a7bc8);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all var(--transition-speed);
        }
        .rating-form button:hover {
            background: linear-gradient(90deg, #2a7bc8, var(--primary-blue));
        }
        .comment-section {
            margin-top: 60px;
        }
        .comment-form {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 15px 40px;
            background: linear-gradient(90deg, var(--primary-gold), #c19b2a);
            color: var(--primary-dark);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 800;
            font-size: 1.1rem;
            transition: all var(--transition-speed);
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #c19b2a, var(--primary-gold));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(212, 175, 55, 0.3);
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .comment {
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 25px;
            border-left: 4px solid var(--primary-blue);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-gold);
        }
        .comment-date {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .web-links-section {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 40px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        .web-link {
            background-color: rgba(26, 95, 158, 0.1);
            padding: 15px;
            border-radius: 5px;
            border-left: 3px solid var(--primary-blue);
            transition: all var(--transition-speed);
        }
        .web-link:hover {
            background-color: rgba(26, 95, 158, 0.2);
            transform: translateX(5px);
        }
        .site-footer {
            background-color: #0a0e17;
            border-top: 1px solid var(--border-color);
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-gold), #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-gradient {
            background: linear-gradient(90deg, var(--primary-gold), #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .emoji { font-size: 1.2em; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
        .mt-40 { margin-top: 40px; }
