        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a12;
            --primary-accent: #8a0303;
            --secondary-accent: #c5a028;
            --text-primary: #e0e0e0;
            --text-secondary: #aaaaaa;
            --card-bg: #1a1a24;
            --border-color: #333344;
            --success: #2a8c2a;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(138, 3, 3, 0.08) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(197, 160, 40, 0.05) 0%, transparent 20%);
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid var(--border-color);
        }
        header {
            background: rgba(10, 10, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            text-shadow: 0 0 15px rgba(138, 3, 3, 0.7);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-primary);
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .hero {
            padding: 80px 0;
            text-align: center;
            background: 
                linear-gradient(rgba(10,10,18,0.9), rgba(10,10,18,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;
            border-bottom: 3px solid var(--primary-accent);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-secondary);
        }
        .last-updated {
            font-style: italic;
            color: var(--secondary-accent);
            margin-top: 20px;
            font-size: 1rem;
        }
        .search-container {
            max-width: 600px;
            margin: 30px auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            background: var(--card-bg);
            border: none;
            color: var(--text-primary);
            font-size: 1.1rem;
        }
        .search-input:focus {
            outline: none;
            background: #222233;
        }
        .search-btn {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: #a00404;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #fff;
            border-left: 5px solid var(--primary-accent);
            padding-left: 20px;
        }
        article h2 {
            font-size: 2.2rem;
            margin: 50px 0 25px;
            color: var(--secondary-accent);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        article h3 {
            font-size: 1.8rem;
            margin: 40px 0 20px;
            color: #e8c468;
        }
        article h4 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #b0a080;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(197, 160, 40, 0.1);
            border-left: 4px solid var(--secondary-accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .emphasize {
            font-weight: bold;
            color: var(--secondary-accent);
        }
        .inline-link {
            border-bottom: 1px dashed var(--secondary-accent);
        }
        .img-container {
            margin: 40px auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            border: 3px solid var(--border-color);
            border-radius: 5px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .img-caption {
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--secondary-accent);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary-accent);
            font-size: 0.8rem;
        }
        .rating-widget, .comment-widget {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .star {
            color: #555;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: gold;
            transform: scale(1.1);
        }
        .rating-btn, .comment-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary-accent);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
            margin-top: 10px;
        }
        .rating-btn:hover, .comment-btn:hover {
            background: #a00404;
        }
        .comment-input {
            width: 100%;
            padding: 15px;
            background: #222233;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            margin: 15px 0;
            resize: vertical;
            min-height: 100px;
        }
        footer {
            background: #080810;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 2px solid var(--primary-accent);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--secondary-accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 12px;
            color: var(--text-secondary);
            padding: 8px 0;
            border-bottom: 1px dotted #333;
        }
        friend-link:last-child {
            border-bottom: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 18, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                gap: 30px;
                transition: left 0.5s ease;
            }
            .nav-links.active {
                left: 0;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 10px;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
