        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0d1117;
            color: #c9d1d9;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #58a6ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1f6feb;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #161b22;
            border-bottom: 1px solid #30363d;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #f0f6fc;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        .logo a:hover {
            text-shadow: 0 0 8px #58a6ff;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links li a:hover {
            background-color: #30363d;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #c9d1d9;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #0d1117;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #8b949e;
        }
        .breadcrumb a:hover {
            color: #58a6ff;
        }
        .breadcrumb span {
            color: #c9d1d9;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #161b22;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .article-content h1 {
            font-size: 2.5rem;
            color: #f0f6fc;
            margin-bottom: 20px;
            border-left: 5px solid #58a6ff;
            padding-left: 15px;
        }
        .article-content h2 {
            font-size: 1.8rem;
            color: #c9d1d9;
            margin: 25px 0 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #30363d;
        }
        .article-content h3 {
            font-size: 1.4rem;
            color: #8b949e;
            margin: 20px 0 10px;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #f0f6fc;
            font-weight: bold;
        }
        .article-content em {
            color: #8b949e;
            font-style: italic;
        }
        .highlight {
            background-color: #1f6feb20;
            border-left: 4px solid #1f6feb;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 2px solid #30363d;
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .sidebar {
            background-color: #161b22;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            align-self: start;
        }
        .widget {
            margin-bottom: 25px;
        }
        .widget h3 {
            font-size: 1.3rem;
            color: #f0f6fc;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid #30363d;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .search-form input, .comment-form textarea, .comment-form input, .rating-form select {
            padding: 12px;
            border: 1px solid #30363d;
            border-radius: 5px;
            background-color: #0d1117;
            color: #c9d1d9;
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            padding: 12px;
            background-color: #238636;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background-color: #2ea043;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffd700;
            cursor: pointer;
        }
        .stars span:hover {
            color: #ffaa00;
        }
        .footer-links {
            background-color: #161b22;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 1px solid #30363d;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #0d1117;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid #30363d;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #58a6ff;
        }
        footer {
            background-color: #0d1117;
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid #30363d;
            font-size: 0.9rem;
            color: #8b949e;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #8b949e;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #58a6ff;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 20px;
                background-color: #161b22;
                width: 200px;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                z-index: 1000;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.8rem;
            }
            .article-content h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.6rem;
            }
            .links-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
