        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0e12;
            color: #e0dcd0;
            line-height: 1.7;
            background-image: radial-gradient(circle at 20% 30%, #1a1820 0%, #0f0e12 70%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #c7a029;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #f0d874;
            text-shadow: 0 0 8px rgba(199, 160, 41, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: rgba(15, 14, 18, 0.92);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a2635;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #c7a029;
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(199, 160, 41, 0.4);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2rem;
        }
        .my-logo:hover {
            color: #f0d874;
            text-shadow: 0 0 15px rgba(240, 216, 116, 0.8);
        }
        .main-nav {
            display: flex;
            gap: 30px;
        }
        .nav-link {
            color: #b8b4c4;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #c7a029;
            transition: width 0.3s ease;
        }
        .nav-link:hover {
            color: #f0d874;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #c7a029;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(42, 38, 53, 0.4);
            margin-bottom: 30px;
            border-bottom: 1px solid #3a3547;
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '>';
            color: #6c657c;
        }
        .breadcrumb a {
            color: #b8b4c4;
        }
        .breadcrumb a:hover {
            color: #f0d874;
        }
        main {
            flex: 1;
            padding-bottom: 50px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #2a2635;
        }
        h1 {
            color: #f0d874;
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: #8a849c;
            font-size: 0.95rem;
        }
        .hero-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 30px auto;
            border: 1px solid #3a3547;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.1rem;
        }
        .chapter {
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid #2a2635;
        }
        h2 {
            color: #d4b65c;
            font-size: 2.4rem;
            margin: 40px 0 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid #3a3547;
        }
        h3 {
            color: #c7a029;
            font-size: 1.8rem;
            margin: 35px 0 20px;
        }
        h4 {
            color: #b8941f;
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #e0dcd0;
            background-color: rgba(42, 38, 53, 0.4);
            padding: 25px;
            border-left: 4px solid #c7a029;
            border-radius: 0 8px 8px 0;
            margin-bottom: 35px;
        }
        .highlight-box {
            background: linear-gradient(145deg, #1a1820, #15131a);
            border: 1px solid #3a3547;
            border-left: 5px solid #c7a029;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .tips {
            background-color: rgba(30, 45, 60, 0.3);
            border-left: 5px solid #4a90e2;
            padding: 20px;
            margin: 25px 0;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.7em;
        }
        strong {
            color: #f0d874;
            font-weight: 700;
        }
        em {
            color: #b8b4c4;
            font-style: italic;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed #c7a029;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #8a849c;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: rgba(26, 24, 32, 0.7);
            border: 1px solid #2a2635;
            border-radius: 8px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            color: #d4b65c;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #3a3547;
        }
        .search-form {
            display: flex;
            margin-bottom: 25px;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            background-color: #15131a;
            border: 1px solid #3a3547;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: #e0dcd0;
            font-size: 1rem;
        }
        .search-button {
            background-color: #c7a029;
            color: #0f0e12;
            border: none;
            border-radius: 0 5px 5px 0;
            padding: 0 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .search-button:hover {
            background-color: #f0d874;
        }
        .related-links {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #2a2635;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links i {
            color: #6c657c;
        }
        .interactive-section {
            background-color: rgba(26, 24, 32, 0.7);
            border-radius: 8px;
            padding: 30px;
            margin-top: 50px;
            border: 1px solid #2a2635;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2.2rem;
            cursor: pointer;
        }
        .star {
            color: #3a3547;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
            transform: scale(1.1);
        }
        .star:hover ~ .star {
            color: #3a3547;
        }
        .comment-form .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #b8b4c4;
            font-weight: 600;
        }
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: #15131a;
            border: 1px solid #3a3547;
            border-radius: 5px;
            color: #e0dcd0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #c7a029;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: #c7a029;
            color: #0f0e12;
            border: none;
            border-radius: 5px;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: block;
            width: 100%;
        }
        .submit-button:hover {
            background-color: #f0d874;
            transform: translateY(-2px);
        }
        footer {
            background-color: #0a090d;
            border-top: 1px solid #2a2635;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2rem;
            color: #c7a029;
            margin-bottom: 20px;
            display: inline-block;
        }
        .footer-description {
            color: #8a849c;
        }
        .footer-heading {
            color: #d4b65c;
            font-size: 1.3rem;
            margin-bottom: 25px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background-color: rgba(42, 38, 53, 0.5);
            border-radius: 5px;
            margin-bottom: 10px;
            border-left: 3px solid #c7a029;
            transition: background-color 0.3s ease;
        }
        friend-link:hover {
            background-color: rgba(42, 38, 53, 0.8);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a2635;
            color: #6c657c;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(15, 14, 18, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 20px;
                gap: 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                border-bottom: 1px solid #2a2635;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .nav-link {
                width: 100%;
                text-align: center;
                padding: 15px;
                border-bottom: 1px solid #2a2635;
            }
            .nav-link:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1.1rem;
                padding: 20px;
            }
            .content-wrapper {
                gap: 30px;
            }
            .sidebar {
                position: static;
            }
        }
