        * { 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: #e0e0e0;
            background: #0a0a12;
            background-image: radial-gradient(circle at 15% 50%, rgba(28, 58, 112, 0.1) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(90, 30, 60, 0.1) 0%, transparent 20%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #4da6ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #80ccff; text-shadow: 0 0 8px rgba(77, 166, 255, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2em; margin: 1em 0; }
        .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; color: #fff; }
        .highlight { background: linear-gradient(90deg, transparent 0%, rgba(255,215,0,0.15) 50%, transparent 100%); padding: 2px 8px; border-left: 3px solid #ffd700; }
        .site-header {
            background: rgba(15, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #1a3a6a;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-family: 'Cinzel', serif;
            background: linear-gradient(to right, #b8860b, #ffd700, #daa520);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 900;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo a:hover { text-shadow: 0 2px 12px rgba(255, 215, 0, 0.7); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #c0c0d0;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ffd700;
            background: rgba(26, 58, 106, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffd700;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ffd700; }
        .breadcrumb span { margin: 0 8px; }
        .hero {
            background: linear-gradient(rgba(10, 20, 40, 0.85), rgba(5, 10, 25, 0.9)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 3rem 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #2a4a7a;
            box-shadow: 0 10px 30px rgba(0, 10, 30, 0.7);
        }
        .hero h1 {
            font-size: 3.2rem;
            color: #fff;
            margin-bottom: 1rem;
            text-shadow: 0 3px 6px rgba(0,0,0,0.8);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: #d0d0e0;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-box {
            max-width: 700px;
            margin: 2rem auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 30, 80, 0.4);
        }
        .search-box input {
            flex-grow: 1;
            padding: 1.2rem 1.8rem;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            color: #222;
        }
        .search-box button {
            background: linear-gradient(135deg, #1a5fb4, #0d2b5c);
            color: white;
            border: none;
            padding: 0 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover { background: linear-gradient(135deg, #2a6fd4, #1a3b6c); }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(20, 25, 45, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid #2a3a5a;
            box-shadow: 0 8px 25px rgba(0, 15, 40, 0.6);
        }
        article h2 {
            color: #ffd700;
            font-size: 2.4rem;
            margin: 2rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3a4a6a;
        }
        article h3 {
            color: #a0c8ff;
            font-size: 1.8rem;
            margin: 1.8rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .featured-img {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #3a5a8a;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            max-width: 900px;
        }
        .featured-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: rgba(30, 40, 70, 0.7);
            color: #b0b0c0;
        }
        .quote {
            font-size: 1.3rem;
            color: #c0d0ff;
            border-left: 5px solid #ffd700;
            padding: 1.5rem 2rem;
            margin: 2.5rem;
            background: rgba(40, 50, 80, 0.4);
            border-radius: 0 10px 10px 0;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background: rgba(30, 40, 65, 0.6);
            border-radius: 8px;
            overflow: hidden;
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid #4a5a8a;
            padding: 1.2rem;
            text-align: left;
        }
        .comparison-table th {
            background: rgba(26, 58, 106, 0.8);
            color: #ffd700;
        }
        .comparison-table tr:nth-child(even) { background: rgba(40, 50, 80, 0.2); }
        .sidebar {
            background: rgba(20, 25, 45, 0.8);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #2a3a5a;
            align-self: start;
        }
        .sidebar h3 {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #3a4a6a;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar li { margin-bottom: 1rem; }
        .sidebar a {
            display: block;
            padding: 0.8rem 1rem;
            background: rgba(40, 50, 80, 0.4);
            border-radius: 6px;
            border-left: 4px solid #4da6ff;
            transition: all 0.3s;
        }
        .sidebar a:hover {
            background: rgba(60, 80, 120, 0.6);
            border-left-color: #ffd700;
            transform: translateX(5px);
        }
        .rating-widget, .comment-widget {
            background: rgba(30, 40, 65, 0.6);
            padding: 1.8rem;
            border-radius: 10px;
            margin-top: 2.5rem;
        }
        .stars {
            color: #ffd700;
            font-size: 2rem;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span { margin-right: 5px; transition: transform 0.2s; }
        .stars span:hover { transform: scale(1.2); }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input, .comment-widget input, .comment-widget textarea {
            padding: 1rem;
            border-radius: 6px;
            border: 1px solid #4a5a8a;
            background: rgba(20, 30, 50, 0.7);
            color: #e0e0e0;
            font-size: 1rem;
        }
        .comment-widget textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(135deg, #b8860b, #daa520);
            color: #111;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-submit:hover {
            background: linear-gradient(135deg, #d4a017, #ffd700);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0 2rem;
        }
        .web-link {
            background: rgba(30, 40, 65, 0.6);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #1a5fb4;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(26, 95, 180, 0.3);
            border-left-color: #ffd700;
        }
        .web-link a {
            color: #c0d0ff;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link p {
            color: #a0a0b0;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .site-footer {
            background: rgba(10, 15, 30, 0.95);
            border-top: 2px solid #1a3a6a;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            text-align: center;
            border-radius: 10px 10px 0 0;
        }
        .footer-logo {
            font-size: 2rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
        }
        .copyright {
            color: #888;
            font-size: 0.95rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #2a3a5a;
        }
        @media (max-width: 768px) {
            .header-content { justify-content: space-between; }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active { display: block; }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav li { width: 100%; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .content-area { gap: 2rem; }
            article, .sidebar { padding: 1.8rem; }
            article h2 { font-size: 2rem; }
            article h3 { font-size: 1.6rem; }
            .footer-links { grid-template-columns: 1fr; }
        }
