        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --primary-blue: #16213e;
            --accent-gold: #e6b325;
            --accent-red: #c72a3e;
            --text-light: #f0f0f0;
            --text-gray: #b8b8b8;
            --card-bg: #222831;
            --section-spacing: 3rem;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd166;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(to bottom, var(--primary-blue), var(--primary-dark));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: var(--accent-red);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background-color: rgba(230, 179, 37, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            color: var(--accent-gold);
            margin: 0 0.5rem;
        }
        .hero {
            background: linear-gradient(rgba(22, 33, 62, 0.9), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 20px;
            text-align: center;
            margin-bottom: var(--section-spacing);
            border-bottom: 3px solid var(--accent-gold);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #fff;
            text-shadow: 2px 2px 8px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-gray);
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            background-color: rgba(255, 255, 255, 0.95);
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #a02233;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background-color: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        .article-body h2 {
            color: var(--accent-gold);
            border-left: 5px solid var(--accent-red);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
            font-size: 2rem;
        }
        .article-body h3 {
            color: #fff;
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        .article-body h4 {
            color: var(--text-gray);
            margin: 1.5rem 0 1rem;
            font-size: 1.3rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: var(--accent-gold);
        }
        .article-body em {
            color: #ffb347;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(22, 33, 62, 0.7), rgba(199, 42, 62, 0.1));
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-with-caption {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-with-caption img {
            border-radius: 10px;
            border: 2px solid var(--primary-blue);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .image-caption {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .link-list {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
        }
        .link-list li:before {
            content: "▶";
            color: var(--accent-red);
            margin-right: 0.8rem;
            font-size: 0.8rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-red);
            font-size: 1.4rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            margin: 0.5rem 0;
        }
        .stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
        }
        .rating-widget input,
        .rating-widget textarea,
        .comment-widget input,
        .comment-widget textarea {
            width: 100%;
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid #444;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
        }
        .rating-widget button,
        .comment-widget button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-widget button:hover,
        .comment-widget button:hover {
            background-color: #a02233;
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-gray);
            text-align: center;
            margin-top: 1rem;
        }
        .site-footer {
            background-color: var(--primary-blue);
            padding: 3rem 20px 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--accent-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 6px;
            transition: transform 0.3s;
        }
        friend-link:hover {
            transform: translateX(5px);
            background-color: rgba(230, 179, 37, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: var(--primary-blue);
                width: 80%;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            .main-nav.active ul {
                right: 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-body {
                padding: 1.5rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-body, .sidebar-widget {
            animation: fadeIn 0.8s ease-out;
        }
