        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #8B0000;
            --secondary-color: #D4AF37;
            --dark-color: #1a1a1a;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 100%);
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background: rgba(26, 26, 26, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--secondary-color);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(45deg, #8B0000, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            text-decoration: none;
            transition: var(--transition);
        }
        .logo:hover {
            transform: scale(1.05);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
        }
        .logo span {
            color: #FFD700;
        }
        .main-nav {
            display: flex;
            gap: 30px;
        }
        .nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover {
            color: var(--secondary-color);
            background: rgba(139, 0, 0, 0.2);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 10px;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb-item {
            color: #ccc;
            font-size: 0.9rem;
        }
        .breadcrumb-item a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb-item a:hover {
            text-decoration: underline;
        }
        .breadcrumb-item::after {
            content: '›';
            margin-left: 10px;
            color: #666;
        }
        .breadcrumb-item:last-child::after {
            content: '';
        }
        .search-section {
            background: rgba(26, 26, 26, 0.8);
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--secondary-color);
            border-right: none;
            border-radius: 8px 0 0 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(45deg, var(--primary-color), #a30000);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background: linear-gradient(45deg, #a30000, var(--primary-color));
            transform: translateY(-2px);
        }
        .main-content {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 16px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .main-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        h1 {
            color: var(--primary-color);
            font-size: 3.2rem;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            padding-bottom: 20px;
        }
        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        h2 {
            color: var(--dark-color);
            font-size: 2.4rem;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 6px solid var(--primary-color);
            background: linear-gradient(to right, rgba(139, 0, 0, 0.1), transparent);
            padding-top: 10px;
            padding-bottom: 10px;
        }
        h3 {
            color: #444;
            font-size: 1.8rem;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 15px;
        }
        h3::before {
            content: '⚔️';
            position: absolute;
            left: -10px;
            top: 50%;
            transform: translateY(-50%);
        }
        .article-intro {
            font-size: 1.3rem;
            color: #555;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 5px solid var(--secondary-color);
            line-height: 1.9;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff8e1, #ffecb3);
            border: 2px solid var(--secondary-color);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }
        .highlight-box::before {
            content: '🔥';
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            opacity: 0.3;
        }
        .content-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            border: 3px solid var(--secondary-color);
            transition: var(--transition);
        }
        .content-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            line-height: 1.9;
            color: #444;
            text-align: justify;
        }
        strong {
            color: var(--primary-color);
            font-weight: 700;
            background: linear-gradient(transparent 60%, rgba(255, 215, 0, 0.3) 60%);
            padding: 0 3px;
        }
        .keyword-badge {
            display: inline-block;
            background: linear-gradient(45deg, #8B0000, #b30000);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin: 5px;
            font-weight: 600;
            box-shadow: 0 3px 8px rgba(139, 0, 0, 0.3);
        }
        .rating-section {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            border: 2px solid #e9ecef;
        }
        .rating-form {
            max-width: 500px;
            margin: 20px auto;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            direction: rtl;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star:hover ~ .star {
            color: #ffc107;
        }
        .star.active {
            color: #ffc107;
        }
        .comment-section {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #e9ecef;
        }
        .comment-form {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-input {
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        .submit-button {
            background: linear-gradient(45deg, var(--primary-color), #a30000);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .submit-button:hover {
            background: linear-gradient(45deg, #a30000, var(--primary-color));
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(139, 0, 0, 0.3);
        }
        .footer-links {
            background: rgba(26, 26, 26, 0.9);
            padding: 40px 20px;
            margin-top: 50px;
            border-top: 3px solid var(--secondary-color);
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .web-link:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px);
            border-color: var(--secondary-color);
        }
        .web-link a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            line-height: 1.6;
        }
        .web-link a:hover {
            color: var(--secondary-color);
        }
        .main-footer {
            background: #0a0a0a;
            color: #aaa;
            padding: 40px 0 20px;
            text-align: center;
        }
        .copyright {
            font-size: 0.95rem;
            padding-top: 20px;
            border-top: 1px solid #333;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 26, 26, 0.98);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-top: 2px solid var(--secondary-color);
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .main-content {
                padding: 25px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .logo {
                font-size: 2.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 8px 8px 0 0;
                border-right: 2px solid var(--secondary-color);
            }
            .search-button {
                border-radius: 0 0 8px 8px;
                padding: 15px;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
        @media print {
            .main-nav, .search-section, .rating-section, .comment-section, .footer-links, .main-footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .main-content {
                box-shadow: none;
                padding: 0;
            }
        }
