        * {
            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: #121212;
            background-image: linear-gradient(to bottom, #0a0a0a, #1a1a2e);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd43b;
            text-shadow: 0 0 8px rgba(255, 212, 59, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .py-3 { padding-top: 3rem; padding-bottom: 3rem; }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(77, 171, 247, 0.15), transparent);
            border-left: 4px solid #4dabf7;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3em; }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #333355;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ffd43b, #f76707);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding: 10px 0;
        }
        .my-logo:hover {
            text-shadow: 0 0 15px rgba(247, 103, 7, 0.7);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ffd43b;
            background-color: rgba(255, 212, 59, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd43b;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(30, 30, 46, 0.8);
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd43b;
        }
        .search-module {
            background: rgba(40, 40, 60, 0.6);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #4dabf7;
            border-radius: 50px 0 0 50px;
            background: #1e1e2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(45deg, #4dabf7, #228be6);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 1.8rem;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(45deg, #228be6, #1c7ed6);
            box-shadow: 0 0 15px rgba(77, 171, 247, 0.6);
        }
        .main-content {
            flex-grow: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #333355;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(255, 212, 59, 0.3);
        }
        .article-meta {
            color: #aaa;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        h2 {
            color: #4dabf7;
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #333355;
        }
        h3 {
            color: #a5d8ff;
            font-size: 1.6rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h4 {
            color: #ccc;
            font-size: 1.3rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        strong {
            color: #ffd43b;
            font-weight: 700;
        }
        .featured-image {
            margin: 2.5rem auto;
            max-width: 900px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid #444477;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #999;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .interactive-module {
            background: rgba(30, 30, 50, 0.7);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #444477;
        }
        .module-title {
            color: #ffd43b;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .rating-form, .comment-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #a5d8ff;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background: #1a1a2e;
            border: 1px solid #555577;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .form-control:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.3);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            direction: rtl; 
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars:not(:hover) .star.selected,
        .star:hover,
        .star:hover ~ .star {
            color: #ffd43b;
        }
        .submit-btn {
            background: linear-gradient(45deg, #37b24d, #2b8a3e);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            justify-self: start;
        }
        .submit-btn:hover {
            background: linear-gradient(45deg, #2b8a3e, #237032);
            box-shadow: 0 0 15px rgba(55, 178, 77, 0.5);
        }
        .site-footer {
            background-color: #0a0a14;
            border-top: 2px solid #333355;
            margin-top: 4rem;
            padding: 3rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: #ffd43b;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333355;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .header-container { padding: 0 15px; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: rgba(10, 10, 20, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #333;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger { display: block; }
            .breadcrumb ol { justify-content: center; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-btn { border-radius: 50px; padding: 0.9rem; }
            .interactive-module { padding: 1.5rem; }
            .stars { justify-content: center; }
        }
