:root {
            --primary-dark: #0a0a0f;
            --secondary-dark: #1a1a2e;
            --accent-red: #8b0000;
            --accent-gold: #daa520;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8b8;
            --border-color: #33334d;
            --shadow-glow: 0 0 15px rgba(218, 165, 32, 0.4);
            --transition-speed: 0.3s;
        }
        * {
            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.7;
            color: var(--text-primary);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 15% 50%, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 15, 1) 100%);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #ffd700;
            text-shadow: var(--shadow-glow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 15, 0.95);
            border-bottom: 2px solid var(--accent-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #daa520, #8b0000);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            animation: logo-pulse 1.5s infinite;
        }
        @keyframes logo-pulse {
            0%, 100% { text-shadow: 0 0 10px rgba(218, 165, 32, 0.7); }
            50% { text-shadow: 0 0 25px rgba(218, 165, 32, 1), 0 0 35px rgba(139, 0, 0, 0.7); }
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: all var(--transition-speed);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger-menu {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb i {
            margin: 0 10px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--accent-red);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2, .article-body h3, .article-body h4 {
            color: var(--accent-gold);
            margin-top: 2.5em;
            margin-bottom: 0.8em;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .article-body h2 {
            font-size: 2rem;
        }
        .article-body h3 {
            font-size: 1.6rem;
        }
        .article-body h4 {
            font-size: 1.3rem;
        }
        .article-body p {
            margin-bottom: 1.8em;
            text-align: justify;
            hyphens: auto;
        }
        .article-body strong {
            color: #ffd700;
            font-weight: 700;
        }
        .article-body em {
            color: #b8b8b8;
            font-style: italic;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed var(--accent-gold);
        }
        .featured-image {
            margin: 40px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 8px;
            border: 3px solid var(--accent-red);
            box-shadow: var(--shadow-glow);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(26, 26, 46, 0.8));
            border-left: 5px solid var(--accent-gold);
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
            vertical-align: middle;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background-color: var(--secondary-dark);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-primary);
            outline: none;
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .search-form button:hover {
            background-color: #a00;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: var(--border-color);
            cursor: pointer;
        }
        .star-rating i:hover,
        .star-rating i:hover ~ i {
            color: var(--accent-gold);
        }
        .star-rating i.active {
            color: var(--accent-gold);
        }
        .rating-form input, .rating-form textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--secondary-dark);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            margin-bottom: 10px;
            outline: none;
        }
        .rating-form button, .comment-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color var(--transition-speed);
            align-self: flex-start;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #a00;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--border-color);
        }
        .link-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .link-list i {
            color: var(--accent-red);
        }
        .site-footer {
            background-color: var(--secondary-dark);
            border-top: 3px solid var(--accent-red);
            margin-top: 60px;
            padding: 50px 0 30px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-section p, .footer-section a {
            color: var(--text-secondary);
            margin-bottom: 10px;
            display: block;
        }
        .footer-section a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
            transition: all var(--transition-speed);
        }
        friend-link {
            display: block;
            padding: 8px 15px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 5px;
            margin-bottom: 10px;
            border-left: 3px solid var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.5rem;
            }
            .header-container {
                padding: 12px 0;
            }
            .my-logo {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
        @media print {
            body {
                color: #000;
                background: #fff;
            }
            .site-header, .sidebar, .site-footer, .breadcrumb, .hamburger-menu {
                display: none;
            }
            .main-content {
                grid-template-columns: 1fr;
                padding: 0;
            }
            .article-content {
                box-shadow: none;
                border: none;
                padding: 20px 0;
            }
            a {
                color: #000;
                text-decoration: underline;
            }
        }
