        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e7ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #93c5fd;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid #1e293b;
        }
        header {
            background: linear-gradient(135deg, #111827 0%, #1e1b4b 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo span {
            color: #fbbf24;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .desktop-nav a:hover {
            background-color: rgba(96, 165, 250, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #60a5fa;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            padding: 20px;
            border-top: 1px solid #334155;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #334155;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #1e293b;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .hero {
            background: radial-gradient(circle at 30% 20%, #1e3a8a 0%, #0a0e17 70%);
            text-align: center;
            padding: 80px 20px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #fbbf24, #60a5fa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cbd5e1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #fbbf24;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        article h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #93c5fd;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(96, 165, 250, 0.1), transparent);
            border-left: 4px solid #60a5fa;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .sidebar {
            background-color: #111827;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #334155;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar h4 {
            color: #fbbf24;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
            width: 100%;
        }
        button {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #2563eb, #7c3aed);
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #fbbf24;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 40px 20px;
            background-color: #111827;
        }
        .web-link {
            background-color: #1e293b;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3b82f6;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(10px);
            background-color: #0f172a;
        }
        footer {
            background-color: #030712;
            padding: 40px 20px 20px;
            text-align: center;
            color: #94a3b8;
            border-top: 1px solid #1e293b;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .copyright {
            margin-top: 30px;
            font-size: 0.9rem;
            border-top: 1px solid #334155;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.4rem; }
            .header-container, .breadcrumb { padding: 15px; }
            section { padding: 40px 0; }
        }
