        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #8a0f3e; 
            --secondary-color: #1a1a2e; 
            --accent-color: #d4af37; 
            --light-bg: #f5f5f5;
            --text-dark: #222;
            --text-light: #eee;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--secondary-color);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--secondary-color), #0f3460);
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(26, 26, 46, 0.8);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--accent-color);
        }
        .search-container {
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--primary-color);
            border-radius: 30px 0 0 30px;
            background: var(--light-bg);
            color: var(--text-dark);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #a0124a;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(255,255,255,0.03);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(255,255,255,0.03);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--accent-color);
        }
        h1, h2, h3, h4 {
            color: var(--accent-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #ff9999;
        }
        h3 {
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #d4d4d4;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #ccc;
            border-left: 4px solid var(--primary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .highlight {
            background-color: rgba(138, 15, 62, 0.2);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--primary-color);
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            border: 3px solid var(--accent-color);
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            margin-top: 0.5rem;
            color: #aaa;
            font-size: 0.9rem;
        }
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(0,0,0,0.3);
            border-radius: 8px;
            margin: 2rem 0;
        }
        .internal-links a {
            background: var(--secondary-color);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid var(--primary-color);
        }
        .internal-links a:hover {
            background: var(--primary-color);
        }
        .user-interaction {
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(255,255,255,0.02);
            border-radius: 15px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .active {
            color: gold;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #444;
            background: rgba(255,255,255,0.08);
            color: white;
            font-size: 1rem;
        }
        button[type="submit"] {
            align-self: flex-start;
            padding: 0.8rem 2rem;
            background: linear-gradient(to right, var(--primary-color), #6a0dad);
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(138, 15, 62, 0.4);
        }
        .site-footer {
            background: #0a0a15;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--secondary-color);
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content { padding: 1.5rem; }
            .header-content { flex-wrap: wrap; }
        }
        @media print {
            .site-header, .sidebar, .user-interaction, .site-footer, .search-container {
                display: none;
            }
            body { color: black; background: white; }
            .container { max-width: 100%; }
            a { color: #000; text-decoration: underline; }
        }
