* {
            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;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #161b22;
            padding: 15px 0;
            border-bottom: 2px solid #30363d;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #00ff9d;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #ff6b6b;
        }
        .search-box {
            display: flex;
            background: #21262d;
            border-radius: 25px;
            padding: 5px 15px;
            border: 1px solid #30363d;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: #c9d1d9;
            padding: 10px;
            width: 250px;
            outline: none;
        }
        .search-box button {
            background: transparent;
            border: none;
            color: #58a6ff;
            cursor: pointer;
            padding: 10px;
        }
        .search-box button:hover {
            color: #1f6feb;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #c9d1d9;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            background-color: #161b22;
            padding: 10px;
            border-radius: 8px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li {
            margin: 0 15px;
        }
        .nav-links a {
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #21262d;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #8b949e;
        }
        .breadcrumb a {
            color: #8b949e;
        }
        .breadcrumb a:hover {
            color: #58a6ff;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 0;
        }
        article {
            background-color: #161b22;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.5rem;
            color: #00ff9d;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: #ff6b6b;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #30363d;
        }
        h3 {
            font-size: 1.4rem;
            color: #58a6ff;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #21262d;
            padding: 15px;
            border-left: 4px solid #00ff9d;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            border: 2px solid #30363d;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        aside {
            background-color: #161b22;
            padding: 20px;
            border-radius: 12px;
            height: fit-content;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: #ff6b6b;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .sidebar-widget ul {
            list-style: none;
        }
        .sidebar-widget li {
            padding: 10px;
            border-bottom: 1px solid #30363d;
        }
        .sidebar-widget li:last-child {
            border-bottom: none;
        }
        .comment-section, .rating-section {
            background-color: #161b22;
            padding: 30px;
            border-radius: 12px;
            margin-top: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #c9d1d9;
            font-weight: 500;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            background-color: #21262d;
            border: 1px solid #30363d;
            border-radius: 6px;
            color: #c9d1d9;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #58a6ff;
        }
        textarea {
            resize: vertical;
            min-height: 150px;
        }
        button[type="submit"] {
            background-color: #238636;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        button[type="submit"]:hover {
            background-color: #2ea043;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #8b949e;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .web-link {
            background-color: #21262d;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #30363d;
        }
        footer {
            background-color: #161b22;
            padding: 40px 0 20px;
            border-top: 2px solid #30363d;
            margin-top: 30px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #00ff9d;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #30363d;
            color: #8b949e;
            font-size: 0.9rem;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-box input {
                width: 200px;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
                order: 1;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #161b22;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }
            nav {
                flex-direction: column;
                align-items: flex-start;
                padding: 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1rem;
            }
            .internal-links {
                grid-template-columns: 1fr;
            }
        }
