        * { 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: #333;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #f0f0f0;
            overflow-x: hidden;
        }
        a { color: #f96816; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ff9a56; transform: translateY(-2px); }
        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; }
        .bold { font-weight: 800; color: #f96816; }
        .section-padding { padding: 60px 0; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #f96816;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #f96816, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(249, 104, 22, 0.5);
            letter-spacing: -1px;
        }
        .logo span { color: #fff; }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #ddd;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: rgba(249, 104, 22, 0.1);
            color: #f96816;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f96816;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #444;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #ddd;
            padding: 15px 10px;
            border-bottom: 1px solid #333;
            font-size: 1.1rem;
        }
        .nav-mobile a:hover { color: #f96816; background: rgba(255,255,255,0.05); }
        .breadcrumb {
            background: rgba(30, 30, 40, 0.8);
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #f96816; }
        .breadcrumb span { color: #f96816; margin: 0 8px; }
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-layout { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(25, 25, 35, 0.9);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-left: 5px solid #f96816;
        }
        .article-content h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #fff;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
            color: #ffcc00;
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 35px 0 15px;
            color: #f96816;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(249, 104, 22, 0.1), rgba(30, 30, 50, 0.7));
            border-left: 4px solid #f96816;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .article-image {
            margin: 40px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #444;
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
            max-width: 800px;
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-image img:hover {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            padding: 10px;
            background: rgba(0,0,0,0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(30, 30, 40, 0.9);
            border-radius: 10px;
            padding: 25px;
            border-top: 4px solid #f96816;
        }
        .sidebar-widget h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            background: #222;
            color: #fff;
        }
        .search-btn {
            background: #f96816;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover { background: #ff8533; }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active { color: #ffcc00; transform: scale(1.2); }
        .rating-form { display: none; }
        .rating-form.active { display: block; }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: #222;
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            margin-bottom: 15px;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background: #f96816;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: #ff8533; }
        .internal-links {
            background: rgba(20, 20, 30, 0.95);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid #444;
            border-bottom: 2px solid #444;
        }
        .internal-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.7);
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }
        .web-link:hover {
            border-left-color: #f96816;
            background: rgba(50, 50, 80, 0.9);
            transform: translateX(5px);
        }
        .site-footer {
            background: #0a0a0f;
            padding: 50px 0 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .footer-links a { color: #bbb; }
        .footer-links a:hover { color: #f96816; }
        .copyright {
            color: #777;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
