        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #e8e6e3;
            background-color: #121212;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #a5d8ff;
            text-shadow: 0 0 8px rgba(77, 171, 247, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 2rem; }
        .py-2 { padding-top: 1rem; padding-bottom: 1rem; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, rgba(255,215,0,0.15) 50%, transparent 100%);
            padding: 2px 8px;
            border-radius: 3px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border-bottom: 3px solid #d4a017;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #d4a017, #ffdd00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            animation: logo-glow 1s ease-in-out infinite alternate;
        }
        @keyframes logo-glow {
            from { text-shadow: 0 0 5px rgba(212, 160, 23, 0.7); }
            to { text-shadow: 0 0 15px rgba(255, 221, 0, 0.9), 0 0 20px rgba(255, 221, 0, 0.6); }
        }
        .search-form {
            flex-grow: 1;
            max-width: 400px;
            margin: 0 30px;
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            border-radius: 30px;
            border: 2px solid #444;
            background-color: #2d2d2d;
            color: #f0f0f0;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #d4a017;
            box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.3);
        }
        .search-button {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #aaa;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #d4a017;
            transition: width 0.3s;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #d4a017;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #1f1f1f;
            border-bottom: 1px solid #333;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #fff; }
        .breadcrumb span { color: #d4a017; margin: 0 8px; }
        main {
            padding: 30px 0;
            background: radial-gradient(ellipse at top, #1c1c1c 0%, #121212 70%);
            min-height: 80vh;
        }
        .article-header {
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 2px dashed #444;
        }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #ffdd00, #d4a017);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #aaa;
            font-size: 0.9rem;
        }
        .meta-info i { margin-right: 5px; color: #d4a017; }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-content { grid-template-columns: 1fr; }
        }
        .content-body {
            font-size: 1.1rem;
        }
        .content-body h2 {
            font-size: 2rem;
            color: #ffdd00;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .content-body h3 {
            font-size: 1.6rem;
            color: #f0b823;
            margin: 2rem 0 1rem;
        }
        .content-body h4 {
            font-size: 1.3rem;
            color: #e6c068;
            margin: 1.5rem 0 0.8rem;
        }
        .content-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-body ul, .content-body ol {
            margin-left: 25px;
            margin-bottom: 1.5rem;
        }
        .content-body li {
            margin-bottom: 0.7rem;
        }
        .pull-quote {
            border-left: 5px solid #d4a017;
            padding-left: 25px;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.3rem;
            color: #ffdd00;
            background: rgba(212, 160, 23, 0.05);
            padding-top: 15px;
            padding-bottom: 15px;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
            border: 2px solid #444;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            padding: 10px;
            background: #1f1f1f;
        }
        .sidebar {
            background: rgba(40, 40, 40, 0.8);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: #ffdd00;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #555;
            font-size: 1.4rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .stars i {
            color: #555;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffdd00;
            transform: scale(1.2);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background-color: #2d2d2d;
            color: #f0f0f0;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #d4a017, #b8860b);
            color: #121212;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #ffdd00, #d4a017);
            box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
        }
        .site-footer {
            background: #1a1a1a;
            padding: 40px 0 20px;
            border-top: 3px solid #333;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffdd00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 12px 15px;
            background: #252525;
            border-radius: 5px;
            margin-bottom: 10px;
            border-left: 4px solid #d4a017;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #2d2d2d;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .my-logo { font-size: 1.8rem; order: 1; }
            .hamburger {
                display: flex;
                order: 2;
            }
            .main-nav {
                order: 4;
                flex-basis: 100%;
                margin-top: 15px;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .search-form {
                order: 3;
                margin: 15px 0 0;
                max-width: 100%;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-body h2 { font-size: 1.7rem; }
            .content-body h3 { font-size: 1.4rem; }
        }
