        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #f8c555;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffde8a;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #f8c555;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #f8c555, #ff7e5f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo a {
            background: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(248, 197, 85, 0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f8c555;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 10, 15, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 5px;
            border-left: 3px solid #f8c555;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " › ";
            margin: 0 8px;
            color: #666;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 2px dashed #f8c555;
            padding-bottom: 25px;
        }
        h1 {
            font-size: 2.8rem;
            color: #f8c555;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .article-meta {
            color: #aaa;
            font-style: italic;
            margin-top: 10px;
        }
        h2 {
            color: #4fc3f7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a3b52;
            font-size: 1.8rem;
        }
        h3 {
            color: #81c784;
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(90deg, rgba(248, 197, 85, 0.1), rgba(33, 150, 243, 0.05));
            border-left: 5px solid #f8c555;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .tip {
            background: rgba(76, 175, 80, 0.1);
            border-left: 5px solid #4caf50;
            padding: 20px;
            margin: 25px 0;
        }
        .warning {
            background: rgba(244, 67, 54, 0.1);
            border-left: 5px solid #f44336;
            padding: 20px;
            margin: 25px 0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #444;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(248, 197, 85, 0.3);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #333;
        }
        .sidebar-widget h3 {
            color: #f8c555;
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 1px solid #444;
            padding-bottom: 10px;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background: #222;
            border: 1px solid #444;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: #fff;
        }
        .search-form button {
            background: #f8c555;
            color: #000;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ffd95e;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffd700;
        }
        .rating-form button {
            background: #2196f3;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
            margin-top: 15px;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #0b7dda;
        }
        .comments-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px dashed #444;
        }
        .comment-form {
            background: rgba(30, 30, 40, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: #222;
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            background: linear-gradient(90deg, #f8c555, #ff9d00);
            color: #000;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: transform 0.3s;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
        }
        .comment-list .comment {
            background: rgba(30, 30, 40, 0.6);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #f8c555;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #aaa;
            font-size: 0.9rem;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            margin: 50px 0;
        }
        .web-link {
            background: rgba(40, 40, 50, 0.7);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(248, 197, 85, 0.1);
            border-color: #f8c555;
            transform: translateX(5px);
        }
        .main-footer {
            background: rgba(5, 5, 10, 0.95);
            padding: 50px 0 20px;
            border-top: 2px solid #f8c555;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #f8c555;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            article, .sidebar-widget {
                padding: 25px;
            }
            .main-content {
                padding: 20px 0;
                gap: 25px;
            }
        }
