* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd43b;
        }
        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, #1a237e, #0d47a1);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd43b;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2.5rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #1e293b;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        main {
            padding: 30px 0;
            min-height: 100vh;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #1a202c;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 30px 0 15px;
            border-left: 5px solid #4dabf7;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #a5d8ff;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 212, 59, 0.1);
            border-left: 4px solid #ffd43b;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
            padding: 20px;
            background: #2d3748;
            border-radius: 10px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background: #4a5568;
            border-radius: 8px;
        }
        .stat-value {
            font-size: 2.5rem;
            color: #ffd43b;
            font-weight: bold;
        }
        .feature-img {
            margin: 25px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
            max-width: 800px;
        }
        aside {
            background: #1a202c;
            padding: 25px;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #ffd43b;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .search-box, .comment-form, .rating-form {
            background: #2d3748;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            margin: 10px 0;
            border: 1px solid #4a5568;
            background: #1a202c;
            color: #e0e0e0;
            border-radius: 6px;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #4dabf7, #1a73e8);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(77, 171, 247, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }
        .star-rating i {
            font-size: 2rem;
            color: #94a3b8;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating i:hover, .star-rating i.active {
            color: #ffd43b;
        }
        .footer-links {
            background: #1a202c;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            padding: 12px 20px;
            background: #2d3748;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: #4a5568;
        }
        .web-link a {
            color: #cbd5e1;
            font-weight: 600;
        }
        footer {
            background: #0d1117;
            padding: 25px 0;
            text-align: center;
            border-top: 2px solid #4dabf7;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a237e;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-grid {
                gap: 25px;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
