:root {
            --primary-dark: #0c0c14;
            --primary-accent: #ffcc00;
            --secondary-accent: #990000;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --card-bg: #1a1a2e;
            --section-spacing: 3rem;
            --border-radius: 8px;
            --transition-speed: 0.3s;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 10% 20%, rgba(28, 28, 50, 0.9) 0%, rgba(12, 12, 20, 1) 90%);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #ffdd44;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 18, 0.95);
            border-bottom: 2px solid var(--secondary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary-accent), #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav.desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            position: relative;
        }
        nav.desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-accent);
            transition: all var(--transition-speed);
            transform: translateX(-50%);
        }
        nav.desktop-nav a:hover:after {
            width: 80%;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--card-bg);
            padding: 1rem;
            border-top: 1px solid #333;
            flex-direction: column;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid #333;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .hero-title {
            text-align: center;
            padding: var(--section-spacing) 0;
            border-bottom: 1px solid #333;
            margin-bottom: var(--section-spacing);
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--primary-accent);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .last-updated {
            font-style: italic;
            color: var(--text-gray);
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        .search-container {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-bottom: var(--section-spacing);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid #444;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: #2a2a3e;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 2rem;
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color var(--transition-speed);
        }
        .search-form button:hover {
            background-color: #bb0000;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: var(--section-spacing);
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            min-width: 0; 
        }
        article {
            margin-bottom: var(--section-spacing);
        }
        h2 {
            font-size: 2.5rem;
            color: var(--primary-accent);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-accent);
        }
        h3 {
            font-size: 1.8rem;
            color: #ffaa00;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #ffbb44;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: #fff;
            background: linear-gradient(90deg, transparent, rgba(153, 0, 0, 0.2), transparent);
            padding: 1.5rem;
            border-left: 4px solid var(--secondary-accent);
            margin: 2rem 0;
        }
        .highlight-box {
            background-color: var(--card-bg);
            border-left: 5px solid var(--primary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2rem auto;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border: 2px solid #333;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            font-style: italic;
            border-left: 4px solid var(--secondary-accent);
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: var(--text-gray);
            background-color: rgba(153, 0, 0, 0.05);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .related-links {
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .related-links li {
            margin-bottom: 0;
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            transition: transform var(--transition-speed);
        }
        .related-links li:hover {
            transform: translateX(5px);
            background-color: rgba(255, 204, 0, 0.1);
        }
        aside {
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            height: fit-content;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget:last-child {
            margin-bottom: 0;
        }
        .widget h3 {
            font-size: 1.5rem;
            border-bottom: 1px solid #444;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            margin: 1rem 0;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--primary-accent);
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 0.8rem;
            border-radius: var(--border-radius);
            border: 1px solid #444;
            background-color: #2a2a3e;
            color: var(--text-light);
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            padding: 0.8rem;
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: background-color var(--transition-speed);
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #bb0000;
        }
        footer {
            background-color: #080810;
            padding: var(--section-spacing) 0;
            margin-top: var(--section-spacing);
            border-top: 2px solid var(--secondary-accent);
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            text-align: center;
        }
        friend-link a {
            display: inline-block;
            margin: 0 1rem;
            padding: 0.5rem 1rem;
            background-color: rgba(255, 204, 0, 0.1);
            border-radius: var(--border-radius);
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            width: 100%;
        }
        .bold {
            font-weight: bold;
            color: #fff;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav.desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
        }
