        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0c0f18 100%);
            padding: 20px 0;
            border-bottom: 3px solid #00a8ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #ffcc00, #ff6600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            text-shadow: 0 4px 10px rgba(255,204,0,0.5);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 6px;
            background: rgba(255,255,255,0.05);
        }
        .nav-links li a:hover {
            background: rgba(0,168,255,0.2);
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            padding: 40px 0;
            background: #121821;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #1a1f2e;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.5);
        }
        article h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
            border-left: 6px solid #00a8ff;
            padding-left: 20px;
        }
        article h2 {
            font-size: 2rem;
            color: #00a8ff;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        article h3 {
            font-size: 1.5rem;
            color: #ff9900;
            margin: 25px 0 10px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .highlight {
            background: rgba(255,204,0,0.1);
            border-left: 4px solid #ffcc00;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #00a8ff;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-box {
            background: #1a1f2e;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.4);
        }
        .sidebar-box h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #333;
            border-radius: 8px;
            background: #0f1419;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #00a8ff, #0066cc);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,204,0,0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .star-rating i {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #ffcc00;
        }
        footer {
            background: #0c0f18;
            padding: 40px 0 20px;
            border-top: 3px solid #333;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        @media (max-width: 992px) {
            .longtail-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: #1a1f2e;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(0,168,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1f2e;
                padding: 20px;
                border-top: 2px solid #00a8ff;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
