        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d1117;
            color: #c9d1d9;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #58a6ff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #79c0ff;
            text-shadow: 0 0 8px rgba(88, 166, 255, 0.4);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .py-1 { padding-block: 1rem; }
        .py-2 { padding-block: 2rem; }
        .py-3 { padding-block: 3rem; }
        .my-2 { margin-block: 2rem; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, rgba(88, 166, 255, 0.15) 50%, transparent 100%);
            padding: 0.2rem 0.5rem;
            border-left: 3px solid #58a6ff;
        }
        .site-header {
            background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
            border-bottom: 1px solid #30363d;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, #f0b232, #d93a3a, #8a2be2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            animation: logo-glow 1.5s ease infinite alternate;
        }
        @keyframes logo-glow {
            from { text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
            to { text-shadow: 0 2px 20px rgba(240, 178, 50, 0.6), 0 0 30px rgba(217, 58, 58, 0.4); }
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f0b232, #d93a3a);
            transition: width 0.4s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #c9d1d9;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #161b22;
            border-top: 1px solid #30363d;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            border-bottom: 1px solid #30363d;
        }
        .mobile-nav a {
            display: block;
            padding: 1rem;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8b949e;
            border-bottom: 1px solid #21262d;
        }
        .breadcrumb a {
            color: #8b949e;
        }
        .breadcrumb a:hover {
            color: #58a6ff;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .hero {
            background: radial-gradient(ellipse at center, #1a2332 0%, #0d1117 70%);
            padding: 4rem 0;
            border-bottom: 1px solid #30363d;
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #f0b232, #d93a3a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: #8b949e;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .last-updated {
            font-style: italic;
            color: #58a6ff;
            font-size: 0.95rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.1rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #f0b232;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #30363d;
        }
        h3 {
            font-size: 1.8rem;
            color: #d93a3a;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #58a6ff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            border: 2px solid #30363d;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin: 2rem auto;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .featured-img:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 40px rgba(240, 178, 50, 0.2);
        }
        blockquote {
            border-left: 4px solid #f0b232;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #8b949e;
            background-color: rgba(240, 178, 50, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        aside {
            background-color: #161b22;
            border-radius: 10px;
            padding: 2rem;
            border: 1px solid #30363d;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #f0b232;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem;
            background-color: #0d1117;
            border: 1px solid #30363d;
            border-radius: 5px 0 0 5px;
            color: #c9d1d9;
        }
        .search-box button {
            background: linear-gradient(45deg, #f0b232, #d93a3a);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-box button:hover {
            opacity: 0.9;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input, .rating-widget textarea {
            padding: 0.8rem;
            background-color: #0d1117;
            border: 1px solid #30363d;
            border-radius: 5px;
            color: #c9d1d9;
        }
        .rating-widget button {
            background: linear-gradient(45deg, #58a6ff, #8a2be2);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .rating-widget button:hover {
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #30363d;
            margin: 1rem 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #f0b232;
            transform: scale(1.2);
        }
        .comments-section {
            background-color: #161b22;
            border-radius: 10px;
            padding: 2.5rem;
            border: 1px solid #30363d;
            margin-top: 3rem;
        }
        .comments-section h2 {
            border-bottom: none;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 1rem;
            background-color: #0d1117;
            border: 1px solid #30363d;
            border-radius: 5px;
            color: #c9d1d9;
        }
        .comment-form button {
            background: linear-gradient(45deg, #2ea043, #58a6ff);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            justify-self: start;
            transition: opacity 0.3s;
        }
        .comment-form button:hover {
            opacity: 0.9;
        }
        .comment-list .comment {
            border-bottom: 1px solid #30363d;
            padding: 1.5rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: #8b949e;
        }
        .site-footer {
            background-color: #161b22;
            border-top: 1px solid #30363d;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-links {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: #f0b232;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background-color: rgba(88, 166, 255, 0.1);
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
            border-left: 4px solid #58a6ff;
        }
        .copyright {
            text-align: center;
            color: #8b949e;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #30363d;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .hero { padding: 2.5rem 0; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .footer-links { flex-direction: column; }
        }
