        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a1a2e; 
            --accent: #f5c518; 
            --accent-dark: #d4aa00;
            --secondary: #8b0000; 
            --light: #f0f0f0;
            --gray: #2d3047;
            --text: #e0e0e0;
            --text-dark: #1a1a2e;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--primary);
            background-image: radial-gradient(circle at 15% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 20%),
                              radial-gradient(circle at 85% 30%, rgba(245, 197, 24, 0.05) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--light);
            text-shadow: 0 0 8px rgba(245, 197, 24, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--light);
            text-shadow: 2px 2px 0 var(--secondary), 4px 4px 0 rgba(0, 0, 0, 0.8);
        }
        .logo span {
            color: var(--accent);
        }
        .logo:hover {
            transform: scale(1.02);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: var(--light);
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            border-bottom-color: var(--accent);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(45, 48, 71, 0.6);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--accent);
        }
        .main-content {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 30px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(26, 26, 46, 0.7));
            border-left: 5px solid var(--accent);
        }
        .article-header h1 {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: #aaa;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .article-meta i {
            color: var(--accent);
            margin-right: 8px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-body {
            background-color: rgba(45, 48, 71, 0.4);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--gray);
        }
        .article-body h2 {
            color: var(--accent);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--secondary);
        }
        .article-body h3 {
            color: #f0f0f0;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: var(--accent);
            font-weight: 700;
        }
        .article-body em {
            color: #ffcccb;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(245, 197, 24, 0.1), rgba(139, 0, 0, 0.1));
            border-left: 4px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 40px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 3px solid var(--accent);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.015);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .internal-link-list {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .internal-link-list h3 {
            color: var(--accent);
            margin-bottom: 20px;
        }
        .internal-link-list ul {
            columns: 2;
            list-style: none;
        }
        .internal-link-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .internal-link-list li::before {
            content: '🦇';
            position: absolute;
            left: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: rgba(45, 48, 71, 0.8);
            padding: 25px;
            border-radius: 10px;
            border-top: 4px solid var(--accent);
        }
        .widget h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            font-size: 1.3rem;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: #ccc;
        }
        .form-control {
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid #555;
            background-color: rgba(26, 26, 46, 0.7);
            color: var(--text);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.3);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
            color: var(--text-dark);
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            display: inline-block;
        }
        .btn:hover {
            background: linear-gradient(to bottom, #ffd95e, var(--accent));
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(245, 197, 24, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 2rem;
            margin: 15px 0;
            color: #444;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent);
        }
        .web-links-section {
            background-color: rgba(26, 26, 46, 0.9);
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 2px solid var(--secondary);
            border-bottom: 2px solid var(--secondary);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(45, 48, 71, 0.6);
            padding: 18px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }
        .web-link:hover {
            border-left-color: var(--accent);
            background-color: rgba(45, 48, 71, 0.9);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--light);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        .main-footer {
            background-color: #0f0f1a;
            padding: 40px 20px 20px;
            text-align: center;
        }
        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--gray);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.5rem;
            }
            .internal-link-list ul {
                columns: 1;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary);
                flex-direction: column;
                text-align: center;
                padding: 20px;
                gap: 0;
                box-shadow: var(--shadow);
                border-top: 1px solid var(--gray);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-body {
                padding: 25px;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            .header-container,
            .breadcrumb {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.8rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .widget {
                padding: 20px;
            }
        }
