        * {
            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: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: #4d9fff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #ffcc00, #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #ccc;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #ffcc00;
            border-bottom-color: #ffcc00;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a1a2e;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            border-top: 1px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ccc;
            padding: 15px 10px;
            border-bottom: 1px solid #2a2a3e;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: #ffcc00;
            background-color: #252540;
            padding-left: 15px;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: rgba(26, 26, 46, 0.7);
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #555;
        }
        .search-section {
            background: rgba(40, 40, 60, 0.6);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
            border: 1px solid #444;
        }
        .search-section h2 {
            color: #ffcc00;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #555;
            border-radius: 8px 0 0 8px;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: #ffcc00;
        }
        .search-btn {
            background: linear-gradient(to right, #ff9900, #ff6600);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(to right, #ffaa00, #ff7700);
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(30, 30, 46, 0.8);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid #3a3a5a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-content h1 {
            color: #ffcc00;
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #444;
            padding-bottom: 20px;
        }
        .article-content h2 {
            color: #4d9fff;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        .article-content h3 {
            color: #ff9966;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-content em {
            color: #99ccff;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(145deg, #2a2a4a, #1f1f3a);
            border-left: 5px solid #ff9900;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
        }
        .featured-image {
            margin: 40px auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image img {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
            border: 3px solid #555;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .internal-links {
            background: rgba(40, 40, 60, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .internal-links h4 {
            color: #ffcc00;
            margin-bottom: 15px;
        }
        .internal-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .internal-links li {
            background: #2a2a4a;
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }
        .internal-links li:hover {
            background: #3a3a6a;
            transform: translateY(-3px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(30, 30, 46, 0.9);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #3a3a5a;
        }
        .sidebar-widget h3 {
            color: #ffcc00;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #444;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin-bottom: 15px;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        .rating-widget input,
        .rating-widget textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .rating-widget textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-widget button {
            background: linear-gradient(to right, #0077cc, #0055aa);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .rating-widget button:hover {
            background: linear-gradient(to right, #0099ff, #0077cc);
            transform: scale(1.03);
        }
        .comments-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 3px solid #333;
        }
        .comments-section h2 {
            color: #ffcc00;
            font-size: 2.2rem;
            margin-bottom: 30px;
            text-align: center;
        }
        .comment-form {
            background: rgba(40, 40, 60, 0.7);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            color: #ccc;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #00aa55, #008844);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #00cc66, #00aa55);
            transform: scale(1.02);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .comment {
            background: rgba(50, 50, 70, 0.6);
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #4d9fff;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .comment-author {
            color: #ffcc00;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .comment-date {
            color: #aaa;
            font-size: 0.9rem;
        }
        .comment-body {
            color: #ddd;
            line-height: 1.6;
        }
        .footer-links {
            background: rgba(20, 20, 35, 0.9);
            padding: 40px 0;
            margin-top: 60px;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.6);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(50, 50, 80, 0.8);
            transform: translateY(-5px);
            border-color: #ffcc00;
        }
        .web-link a {
            color: #ccc;
            font-weight: 600;
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #555;
        }
        .web-link a:last-child {
            border-bottom: none;
        }
        .web-link a:hover {
            color: #ffcc00;
            padding-left: 10px;
        }
        .site-footer {
            background-color: #0a0a0f;
            padding: 40px 0 20px;
            text-align: center;
            color: #888;
        }
        .footer-logo {
            font-family: 'Impact', sans-serif;
            font-size: 2.5rem;
            background: linear-gradient(to right, #ffcc00, #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #666;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 25px;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .internal-links ul {
                flex-direction: column;
                align-items: center;
            }
        }
