:root {
            --primary-dark: #0c0c14;
            --secondary-dark: #1a1a2e;
            --accent-gold: #c9a96e;
            --accent-red: #8b0000;
            --accent-silver: #d3d3d3;
            --text-primary: #f5f5f5;
            --text-secondary: #b0b0b0;
            --border-color: #2a2a3e;
            --shadow-color: rgba(12, 12, 20, 0.8);
            --container-width: 1200px;
            --mobile-breakpoint: 768px;
        }
        * {
            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.8;
            color: var(--text-primary);
            background-color: var(--primary-dark);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(26, 26, 46, 0.9) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(139, 0, 0, 0.15) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }
        a:hover {
            color: #f0d8a8;
            border-bottom-color: var(--accent-gold);
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(180deg, var(--primary-dark) 0%, rgba(12, 12, 20, 0.95) 100%);
            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: 1rem 0;
        }
        .my-logo {
            font-family: 'Cinzel', 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-silver));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px var(--shadow-color);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            color: var(--accent-silver);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--secondary-dark);
            padding: 1rem;
            border-top: 1px solid var(--border-color);
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            background: var(--secondary-dark);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--accent-silver);
        }
        .breadcrumb span {
            color: var(--text-secondary);
            margin: 0 0.5rem;
        }
        .search-container {
            background: var(--secondary-dark);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            gap: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.2);
        }
        .search-button {
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, var(--accent-red), #6a0c0c);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(135deg, #9e0f0f, var(--accent-red));
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
        }
        main {
            flex: 1;
            padding: 2rem 0 4rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--accent-red);
        }
        h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            color: var(--accent-gold);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px var(--shadow-color);
        }
        .article-meta {
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .last-updated {
            color: var(--accent-silver);
            background: rgba(201, 169, 110, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px var(--shadow-color);
        }
        h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            color: var(--accent-silver);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent-gold);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin: 1.5rem 0 0.8rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-primary);
            text-align: justify;
        }
        .intro-text {
            font-size: 1.3rem;
            line-height: 1.9;
            background: rgba(201, 169, 110, 0.05);
            padding: 1.5rem;
            border-left: 4px solid var(--accent-gold);
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .highlight-box {
            background: rgba(139, 0, 0, 0.1);
            border: 1px solid var(--accent-red);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            border: 2px solid var(--border-color);
            box-shadow: 0 8px 20px var(--shadow-color);
            transition: transform 0.3s ease;
        }
        .featured-image:hover {
            transform: scale(1.005);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin: 1.5rem 0 1.5rem 2rem;
            color: var(--text-primary);
        }
        li {
            margin-bottom: 0.8rem;
        }
        strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        em {
            color: var(--accent-silver);
        }
        blockquote {
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: rgba(201, 169, 110, 0.05);
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        aside {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-title {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .related-links {
            list-style: none;
            margin: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .related-links a:hover {
            background: rgba(201, 169, 110, 0.1);
            padding-left: 1rem;
        }
        .related-links i {
            color: var(--accent-red);
            font-size: 0.9rem;
        }
        .interaction-forms {
            background: var(--secondary-dark);
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid var(--border-color);
        }
        .form-title {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
        }
        .star-rating i {
            font-size: 1.8rem;
            color: var(--border-color);
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffd700;
        }
        .rating-form {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        .rating-submit {
            padding: 0.7rem 1.5rem;
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .rating-submit:hover {
            background: #f0d8a8;
            transform: translateY(-2px);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-label {
            font-weight: 600;
            color: var(--accent-silver);
        }
        .form-input,
        .form-textarea {
            padding: 0.9rem 1.2rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.2);
        }
        .form-submit {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--accent-red), #6a0c0c);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        .form-submit:hover {
            background: linear-gradient(135deg, #9e0f0f, var(--accent-red));
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(139, 0, 0, 0.3);
        }
        .site-footer {
            background: var(--secondary-dark);
            border-top: 2px solid var(--accent-red);
            padding: 3rem 0 2rem;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: var(--accent-silver);
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0.8rem 0;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            article,
            aside,
            .interaction-forms {
                padding: 1.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .intro-text {
                font-size: 1.1rem;
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-button {
                width: 100%;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
