:root {
            --primary-dark: #1a0d1f;
            --secondary-dark: #2d1b35;
            --accent-blood: #8a0303;
            --accent-gold: #c9a145;
            --text-primary: #f0e6d6;
            --text-secondary: #b8a9a9;
            --card-bg: rgba(45, 27, 53, 0.8);
            --border-color: #5a3a6b;
            --shadow-glow: 0 0 15px rgba(201, 161, 69, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(138, 3, 3, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(201, 161, 69, 0.08) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: var(--shadow-glow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 13, 31, 0.95);
            border-bottom: 2px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .desktop-nav {
            display: flex;
            gap: 25px;
        }
        .desktop-nav a {
            font-weight: 500;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            border-bottom-color: var(--accent-gold);
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-dark);
            padding: 20px;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 0;
            border-bottom: 1px solid rgba(90, 58, 107, 0.5);
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(90, 58, 107, 0.3);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .search-container {
            margin: 25px 0;
            display: flex;
            justify-content: center;
        }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 600px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-glow);
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 25px;
            border: none;
            background-color: var(--card-bg);
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-input::placeholder {
            color: var(--text-secondary);
        }
        .search-button {
            padding: 0 30px;
            background-color: var(--accent-blood);
            border: none;
            color: white;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #a00404;
        }
        main {
            flex-grow: 1;
            padding: 30px 0;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-glow);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
            text-align: center;
            border-bottom: 3px solid var(--accent-blood);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: var(--text-primary);
            border-left: 5px solid var(--accent-gold);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.7rem;
            margin: 30px 0 15px;
            color: var(--accent-gold);
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: var(--text-secondary);
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px dashed var(--border-color);
            margin-bottom: 30px;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .last-updated {
            color: var(--accent-gold);
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            display: block;
            border-radius: 10px;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-highlight {
            background: linear-gradient(90deg, rgba(138,3,3,0.2) 0%, rgba(45,27,53,0.2) 100%);
            border-left: 4px solid var(--accent-blood);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            background-color: rgba(26, 13, 31, 0.7);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 12px;
        }
        .link-list li {
            padding: 8px 0;
            border-bottom: 1px dotted var(--border-color);
        }
        .user-interaction {
            margin: 50px 0;
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: 15px;
            border: 1px solid var(--border-color);
        }
        .rating-form, .comment-form {
            margin-top: 25px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent-gold);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(26, 13, 31, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(201, 161, 69, 0.2);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--accent-blood), #5a0a0a);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(138, 3, 3, 0.5);
        }
        footer {
            background-color: var(--secondary-dark);
            border-top: 2px solid var(--border-color);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        .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) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            article { padding: 30px 25px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: block; }
            .header-content { padding: 12px 0; }
            .my-logo { font-size: 1.8rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 25px 20px; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.9rem; }
            .article-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
            .search-form { flex-direction: column; border-radius: 10px; }
            .search-input, .search-button { width: 100%; border-radius: 0; }
            .search-button { padding: 15px; }
        }
