        * { 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: #f0f0f0;
            background: linear-gradient(135deg, #0c0c14 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Cinzel', 'Times New Roman', serif; color: #e6b85c; margin-bottom: 1rem; font-weight: 600; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; margin: 2rem 0; text-shadow: 0 0 15px rgba(230, 184, 92, 0.5); }
        h2 { font-size: 2.2rem; border-left: 5px solid #c9306a; padding-left: 1rem; margin-top: 3rem; }
        h3 { font-size: 1.8rem; color: #a3d9ff; margin-top: 2.5rem; }
        h4 { font-size: 1.4rem; color: #7ec4cf; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; color: #ddd; font-style: italic; }
        .highlight { background: linear-gradient(90deg, transparent, rgba(201, 48, 106, 0.2), transparent); padding: 0.2rem 0.5rem; border-radius: 3px; }
        .strong { font-weight: 700; color: #e6b85c; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        a { color: #7ec4cf; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #e6b85c; text-shadow: 0 0 8px rgba(230, 184, 92, 0.7); }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #c9306a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #e6b85c;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(230, 184, 92, 0.7);
            letter-spacing: 2px;
        }
        .my-logo span { color: #c9306a; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #f0f0f0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c9306a;
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0f0f0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: rgba(10, 10, 20, 0.98);
                border-top: 1px solid #333;
                transition: left 0.4s ease;
                padding: 2rem;
                z-index: 999;
            }
            .main-nav.active { left: 0; }
            .main-nav ul { flex-direction: column; gap: 1.5rem; }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #aaa;
            background: rgba(255,255,255,0.03);
            border-radius: 5px;
            margin: 1rem 0 2rem;
            padding-left: 1rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #e6b85c; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .sidebar {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar h3 { font-size: 1.5rem; margin-top: 0; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group label { margin-bottom: 0.5rem; color: #ddd; font-weight: 600; }
        input, textarea, select {
            padding: 0.8rem;
            background: rgba(20, 20, 35, 0.8);
            border: 1px solid #444;
            border-radius: 5px;
            color: #f0f0f0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #c9306a;
            box-shadow: 0 0 8px rgba(201, 48, 106, 0.5);
        }
        .btn {
            background: linear-gradient(to right, #c9306a, #a81b52);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1rem;
            transition: transform 0.2s, box-shadow 0.2s;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(201, 48, 106, 0.4);
        }
        .stars { display: flex; gap: 0.5rem; justify-content: center; }
        .star { font-size: 1.8rem; color: #555; cursor: pointer; transition: color 0.2s; }
        .star.active, .star:hover { color: #ffd700; }
        .article-image {
            float: right;
            margin: 0 0 1.5rem 2rem;
            max-width: 500px;
            border-radius: 10px;
            border: 3px solid #c9306a;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .article-image { float: none; margin: 1.5rem auto; }
        }
        .info-box {
            background: rgba(28, 40, 65, 0.6);
            border-left: 5px solid #e6b85c;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .site-footer {
            background: rgba(5, 5, 10, 0.95);
            border-top: 2px solid #c9306a;
            margin-top: 5rem;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        friend-link {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2rem 0;
        }
        friend-link a {
            background: rgba(255,255,255,0.05);
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            border: 1px solid #444;
        }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            width: 100%;
        }
        .text-center { text-align: center; }
        .last-updated { font-style: italic; color: #aaa; margin: 2rem 0; }
        .clearfix::after { content: ""; clear: both; display: table; }
