        * {
            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.6;
            color: #e0e0e0;
            background-color: #121212;
            background-image: radial-gradient(#333 1px, transparent 1px);
            background-size: 20px 20px;
            overflow-x: hidden;
        }
        a {
            color: #f0b040;
            text-decoration: none;
            transition: color 0.3s ease, border-bottom 0.3s ease;
        }
        a:hover {
            color: #ffd166;
            border-bottom: 1px dashed #ffd166;
        }
        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-color: #1a1a1a;
            border-bottom: 2px solid #f0b040;
            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;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #f0b040;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 1px 1px 2px #000;
        }
        .logo a:hover {
            border-bottom: none;
            color: #ffd166;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0b040;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #1e1e1e;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(240, 176, 64, 0.2);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            background-color: #2a2a2a;
            color: #fff;
            font-size: 1rem;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-button {
            background-color: #f0b040;
            color: #121212;
            border: none;
            padding: 0 1.8rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #ffd166;
        }
        .main-content {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #333;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #f0b040;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #888;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-body {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-body {
                grid-template-columns: 1fr;
            }
        }
        .article-text {
            font-size: 1.1rem;
            color: #ccc;
        }
        .article-text p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-text h2, .article-text h3 {
            color: #f0b040;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .article-text h2 {
            font-size: 2rem;
        }
        .article-text h3 {
            font-size: 1.6rem;
        }
        .article-text emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
        .article-text strong {
            color: #ffd166;
            font-weight: 700;
        }
        .article-text blockquote {
            border-left: 4px solid #f0b040;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #aaa;
            background-color: #1e1e1e;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .article-text ul, .article-text ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article-text li {
            margin-bottom: 0.5rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            border: 1px solid #f0b040;
            border-radius: 10px;
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            border: 2px solid #444;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            color: #888;
            font-size: 0.9rem;
            margin-top: 0.8rem;
            font-style: italic;
        }
        .sidebar {
            background-color: #1a1a1a;
            border-radius: 10px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid #333;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: #f0b040;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #333;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffd166;
        }
        .rating-submit {
            background-color: #333;
            color: #fff;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-submit:hover {
            background-color: #f0b040;
            color: #121212;
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
        }
        .comments-section h2 {
            color: #f0b040;
            margin-bottom: 2rem;
        }
        .comment-form {
            background-color: #1e1e1e;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background-color: #2a2a2a;
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: #f0b040;
            color: #121212;
            border: none;
            padding: 1rem 2rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-button:hover {
            background-color: #ffd166;
        }
        .comment-list .comment {
            background-color: #1a1a1a;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid #333;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: #888;
            font-size: 0.9rem;
        }
        .comment-author {
            color: #f0b040;
            font-weight: bold;
        }
        .internal-links {
            background-color: #1a1a1a;
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
        }
        .internal-links h2 {
            text-align: center;
            color: #f0b040;
            margin-bottom: 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #222;
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
            border: 1px solid #333;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #2a2a2a;
            border-color: #f0b040;
        }
        .web-link a {
            color: #ccc;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #ffd166;
        }
        .site-footer {
            background-color: #0f0f0f;
            color: #888;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
        }
        .footer-links {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: #f0b040;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 0.8rem;
        }
        .footer-col a {
            color: #aaa;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #1a1a1a;
                width: 80%;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                border-top: 2px solid #f0b040;
            }
            .main-nav.active ul {
                right: 0;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .footer-links {
                flex-direction: column;
            }
        }
