        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0d1117;
            color: #e6edf3;
            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;
            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;
        }
        .my-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;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            font-size: 1rem;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: #238636;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #c9d1d9;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 15px;
            background-color: #161b22;
            padding: 20px;
            border-top: 1px solid #30363d;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #8b949e;
        }
        .breadcrumb a {
            color: #8b949e;
        }
        .breadcrumb a:hover {
            color: #58a6ff;
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: #161b22;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #f0f6fc;
            border-left: 5px solid #238636;
            padding-left: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin: 30px 0 15px;
            color: #c9d1d9;
        }
        h3 {
            font-size: 1.8rem;
            margin: 25px 0 10px;
            color: #b1bac4;
        }
        h4 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: #8b949e;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background-color: #1c2b3a;
            padding: 20px;
            border-left: 4px solid #58a6ff;
            margin: 20px 0;
            border-radius: 5px;
        }
        .highlight strong {
            color: #4ecdc4;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px auto;
            display: block;
            border: 2px solid #30363d;
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .search-form, .comment-form, .rating-form {
            background-color: #1c2b3a;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #c9d1d9;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #30363d;
            border-radius: 5px;
            background-color: #0d1117;
            color: #e6edf3;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #58a6ff;
        }
        button {
            background-color: #238636;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #2ea043;
        }
        footer {
            background-color: #161b22;
            border-top: 1px solid #30363d;
            padding: 30px 0;
            margin-top: 40px;
        }
        .friend-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 25px;
        }
        .friend-links a {
            display: block;
            padding: 10px;
            background-color: #1c2b3a;
            border-radius: 5px;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        .friend-links a:hover {
            background-color: #238636;
        }
        .copyright {
            text-align: center;
            color: #8b949e;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1rem;
            }
            .container {
                padding: 0 15px;
            }
        }
