        * {
            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: #e0e0e0;
            background-color: #0a0a12;
            background-image: 
                radial-gradient(circle at 15% 20%, rgba(40, 10, 60, 0.3) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(20, 40, 80, 0.2) 0%, transparent 20%);
            background-attachment: fixed;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }
        friend-link {
            display: block;
            font-style: italic;
            color: #aaa;
            margin: 5px 0;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Georgia', 'Times New Roman', serif;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            color: #8a2be2;
            text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
            border-bottom: 2px solid #444;
            padding-bottom: 15px;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #b19cd9;
            margin-top: 2.5rem;
            padding-left: 10px;
            border-left: 5px solid #8a2be2;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #d8bfd8;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #e6e6fa;
            margin-top: 1.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        a {
            color: #9370db;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: #ba55d3;
            border-bottom-color: #ba55d3;
            text-shadow: 0 0 8px rgba(186, 85, 211, 0.4);
        }
        strong, b {
            color: #ffcc00;
            font-weight: 700;
        }
        em {
            color: #b0e0e6;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #8a2be2;
            padding-left: 20px;
            margin: 2rem 0;
            font-style: italic;
            background: rgba(30, 30, 50, 0.4);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .site-header {
            background-color: rgba(15, 10, 25, 0.95);
            border-bottom: 2px solid #8a2be2;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #8a2be2, #4b0082);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 8px;
            border: 1px solid #444;
        }
        .my-logo:hover {
            background: linear-gradient(90deg, #ba55d3, #8a2be2);
            -webkit-background-clip: text;
            border-color: #8a2be2;
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #d8bfd8;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            display: block;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(138, 43, 226, 0.2);
            color: #fff;
            border-bottom: 2px solid #8a2be2;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .breadcrumb {
            margin-top: 15px;
            padding: 10px 0;
            color: #aaa;
            font-size: 0.95rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #b19cd9;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(15, 10, 25, 0.98);
                padding: 20px;
                display: none;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
        }
        .sidebar {
            background: rgba(25, 20, 40, 0.7);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar h3 {
            color: #ffcc00;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #555;
        }
        .search-form {
            margin-bottom: 30px;
        }
        .search-form input[type="search"] {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background-color: rgba(255,255,255,0.08);
            color: #fff;
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #8a2be2, #4b0082);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #ba55d3, #8a2be2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }
        .comment-form, .rating-form {
            background: rgba(40, 35, 60, 0.6);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            border-radius: 6px;
            border: 1px solid #555;
            background-color: rgba(255,255,255,0.1);
            color: #fff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        .stars input:checked ~ label {
            color: #ffcc00;
        }
        .main-content {
            background: rgba(20, 15, 30, 0.7);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #444;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-meta {
            color: #aaa;
            font-size: 0.95rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border: 3px solid #8a2be2;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .related-links {
            background: rgba(40, 35, 70, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            columns: 2;
        }
        .related-links li {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .related-links ul {
                columns: 1;
            }
        }
        .site-footer {
            background-color: rgba(10, 5, 20, 0.95);
            margin-top: 50px;
            padding: 40px 0;
            border-top: 2px solid #8a2be2;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 20px;
            border-top: 1px solid #333;
            padding-top: 20px;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.2));
            border-left: 5px solid #8a2be2;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .info-badge {
            display: inline-block;
            background: #8a2be2;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        .last-updated {
            background-color: rgba(0, 100, 0, 0.2);
            color: #90ee90;
            padding: 10px 15px;
            border-radius: 8px;
            font-weight: bold;
            margin: 20px 0;
            display: inline-block;
        }
