        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #1a1a2e;
            --primary-accent: #c53030;
            --secondary-accent: #d4af37;
            --text-light: #f0f0f0;
            --text-muted: #b0b0b0;
            --bg-section: #2d3047;
            --bg-card: #3a3d5d;
            --border-color: #4a5079;
            --shadow: 0 6px 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.8;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, #16213e 100%);
            background-attachment: fixed;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-accent);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .py-3 { padding-top: 3rem; padding-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .text-center { text-align: center; }
        .text-highlight { color: var(--secondary-accent); font-weight: bold; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-accent), #9b2c2c);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(197, 48, 48, 0.3);
            text-decoration: none;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-accent);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--secondary-accent), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-accent);
            transition: width 0.3s;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--bg-section);
            padding: 1rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a { margin: 0 5px; }
        .breadcrumb span { color: var(--text-muted); margin: 0 5px; }
        .hero {
            padding: 4rem 20px;
            text-align: center;
            background: radial-gradient(circle at center, var(--bg-section) 0%, transparent 70%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%231a1a2e" d="M0,0 L100,0 L100,100 Z"/></svg>') no-repeat bottom center;
            background-size: cover;
            border-bottom: 3px solid var(--secondary-accent);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-muted);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .article-content h2, .article-content h3, .article-content h4 {
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary-accent);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 0.5rem;
        }
        .article-content h2 { font-size: 2.2rem; }
        .article-content h3 { font-size: 1.8rem; }
        .article-content h4 { font-size: 1.4rem; }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-content blockquote {
            border-left: 4px solid var(--primary-accent);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-muted);
        }
        .article-content ul, .article-content ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article-content li { margin-bottom: 0.5rem; }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        .info-box {
            background: linear-gradient(145deg, var(--primary-dark), var(--bg-section));
            border-left: 5px solid var(--secondary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--secondary-accent);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form input {
            width: 100%;
            padding: 12px;
            border-radius: 25px;
            border: 1px solid var(--border-color);
            background: var(--primary-dark);
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
        }
        .rating-widget .stars {
            font-size: 1.8rem;
            color: var(--secondary-accent);
            margin: 1rem 0;
            cursor: pointer;
        }
        .rating-widget .stars i:hover {
            color: gold;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            background: var(--primary-dark);
            color: var(--text-light);
            min-height: 120px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .link-list li:before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary-accent);
            font-size: 0.8rem;
        }
        .site-footer {
            background-color: var(--primary-dark);
            border-top: 3px solid var(--primary-accent);
            padding: 3rem 20px 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--secondary-accent);
            margin-bottom: 1.5rem;
        }
        .friend-links {
            background: var(--bg-section);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        friend-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .article-content { padding: 1.5rem; }
            .header-container { flex-wrap: wrap; }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-card);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
            .main-nav.active { display: flex; }
            .hamburger { display: block; }
        }
        @media print {
            .site-header, .sidebar, .site-footer, .breadcrumb, .hamburger { display: none; }
            .main-content { grid-template-columns: 1fr; }
            body { color: #000; background: #fff; }
        }
