* {
            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: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #30363d;
            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: 2px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links li a {
            font-weight: 500;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-links li a:hover {
            background-color: #30363d;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #c9d1d9;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8b949e;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        main {
            padding: 2rem 0;
            min-height: 100vh;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        article {
            background-color: #161b22;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #f0f6fc;
            border-left: 5px solid #58a6ff;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            margin: 2rem 0 1rem;
            color: #c9d1d9;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #30363d;
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
            color: #8b949e;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #1f6feb;
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 2px solid #30363d;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
        }
        .interactive-section {
            background-color: #21262d;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #30363d;
            border-radius: 5px;
            background-color: #0d1117;
            color: #c9d1d9;
            font-size: 1rem;
            width: 100%;
        }
        button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #238636, #2ea043);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #2ea043, #3fb950);
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ffd700;
        }
        .rating-stars i {
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-stars i:hover {
            color: #ffed4e;
        }
        footer {
            background-color: #161b22;
            border-top: 2px solid #30363d;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: #21262d;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: scale(1.05);
            background-color: #30363d;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #30363d;
            color: #8b949e;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #161b22;
                padding: 1rem;
                border-top: 1px solid #30363d;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            article {
                padding: 1.5rem;
            }
        }
