* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #60a5fa;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }
        .logo a:hover {
            color: #93c5fd;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: #3b82f6;
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #cbd5e1;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.5rem 0;
        }
        .mobile-nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem;
            display: block;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background-color: #3b82f6;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #60a5fa;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1e293b;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            color: #60a5fa;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #93c5fd;
            margin: 2rem 0 1rem;
            border-left: 4px solid #3b82f6;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #bfdbfe;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #334155;
            padding: 1.5rem;
            border-left: 5px solid #3b82f6;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .link-in-text {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        .link-in-text:hover {
            color: #93c5fd;
            text-decoration: underline;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background-color: #1e293b;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .widget h3 {
            margin-top: 0;
            color: #93c5fd;
            font-size: 1.4rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #475569;
            border-radius: 8px;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.8rem;
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
        }
        .rating-form label, .comment-form label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.5rem;
            color: #94a3b8;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #fbbf24;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #475569;
            border-radius: 8px;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .submit-btn {
            padding: 0.8rem;
            background: linear-gradient(90deg, #10b981, #34d399);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .submit-btn:hover {
            opacity: 0.9;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0 2rem;
        }
        @media (max-width: 1024px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 640px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #1e293b;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }
        .web-link a {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #1e293b;
            padding: 2rem 0;
            text-align: center;
            border-top: 3px solid #334155;
            margin-top: 2rem;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
