* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a0a0a;
            --primary-red: #8b0000;
            --primary-gold: #daa520;
            --secondary-brown: #3d2b1f;
            --accent-sand: #f4e4bc;
            --light-text: #f5f5f5;
            --dark-text: #222;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #0f0a05;
            color: var(--light-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, var(--primary-dark), #2a150f);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--primary-gold), #ff4500);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo span {
            color: var(--primary-red);
        }
        .search-box {
            display: flex;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 30px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 2px solid var(--secondary-brown);
            border-radius: 30px 0 0 30px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #a52a2a;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-gold);
        }
        nav {
            margin-top: 1rem;
            background-color: rgba(61, 43, 31, 0.9);
            border-radius: 8px;
            padding: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-list li {
            margin: 0 15px;
        }
        .nav-list a {
            display: block;
            padding: 12px 20px;
            font-weight: 600;
            border-radius: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
        }
        .nav-list a:hover, .nav-list a.active {
            background-color: var(--primary-red);
            color: white;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--accent-sand);
        }
        .breadcrumb a {
            color: var(--accent-sand);
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .hero {
            position: relative;
            height: 60vh;
            min-height: 400px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1546182991-6baeccf8d2fb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 5px solid var(--primary-red);
        }
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px black;
            color: var(--primary-gold);
        }
        .hero-content p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            color: var(--accent-sand);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        .content-area {
            background: rgba(42, 21, 15, 0.8);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--primary-gold);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 10px;
            margin: 2rem 0 1.5rem;
            font-size: 2.2rem;
        }
        article h3 {
            color: #e6b17e;
            margin: 1.8rem 0 1rem;
            font-size: 1.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--secondary-brown);
            margin: 25px auto;
            display: block;
            box-shadow: var(--shadow);
        }
        .highlight {
            background: linear-gradient(to right, rgba(139,0,0,0.2), transparent);
            border-left: 5px solid var(--primary-red);
            padding: 20px;
            margin: 25px 0;
            font-style: italic;
            font-size: 1.2rem;
        }
        .interactive-box {
            background: var(--secondary-brown);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid var(--primary-gold);
        }
        .interactive-box h4 {
            color: var(--primary-gold);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .stars .active {
            color: var(--primary-gold);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: bold;
            color: var(--accent-sand);
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #666;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            padding: 14px 28px;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background: #a52a2a;
            transform: translateY(-3px);
        }
        sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(42, 21, 15, 0.8);
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-gold);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #555;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .link-list i {
            color: var(--primary-red);
        }
        .popular-articles img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        .footer-links {
            background: rgba(26, 10, 10, 0.9);
            padding: 40px 0;
            border-top: 3px solid var(--primary-red);
            border-bottom: 3px solid var(--secondary-brown);
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background: rgba(61, 43, 31, 0.7);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(139, 0, 0, 0.3);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--accent-sand);
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: var(--primary-dark);
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-logo {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary-gold);
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-box {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            nav {
                display: none;
                margin-top: 0;
            }
            nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                align-items: center;
            }
            .nav-list li {
                width: 100%;
                text-align: center;
                margin: 5px 0;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-content p {
                font-size: 1.1rem;
                padding: 0 15px;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
        @media print {
            .interactive-box, sidebar, .footer-links, header, footer {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
            a {
                color: #0000ee;
            }
        }
