        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd166;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            color: #ffd166;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-top: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #4dabf7;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #a9e4ff;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 209, 102, 0.15);
            border-left: 4px solid #ffd166;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .bold {
            font-weight: 700;
            color: #ffd166;
        }
        header {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid #4dabf7;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd166;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: #4dabf7;
            margin-right: 10px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #f0f0f0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background-color: rgba(77, 171, 247, 0.2);
            color: #ffd166;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd166;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd166;
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        .search-box {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            background: #2d3748;
            color: #f0f0f0;
        }
        .search-box button {
            background: linear-gradient(to right, #4dabf7, #3b82f6);
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            color: white;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            border: 3px solid #4dabf7;
        }
        .sidebar {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 2rem;
            height: fit-content;
            border: 1px solid #4dabf7;
        }
        .sidebar h3 {
            margin-top: 0;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 2.5rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            justify-content: center;
        }
        .stars i {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd166;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #4dabf7;
            background: rgba(255,255,255,0.1);
            color: white;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #10b981, #059669);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(to right, #059669, #047857);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 12px;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(77, 171, 247, 0.1);
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(77, 171, 247, 0.25);
        }
        .web-link a {
            color: #a9e4ff;
            font-weight: 600;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid #4dabf7;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .copyright {
            color: #aaa;
            font-size: 0.95rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #aaa;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #ffd166;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0,0,0,0.95);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #4dabf7;
            }
            nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, .sidebar, .web-links {
            animation: fadeIn 0.8s ease-out;
        }
        @media print {
            .sidebar, .search-container, .web-links, footer, .hamburger {
                display: none;
            }
            body { background: white; color: black; }
        }
