        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1a2a;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd43b;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2b4a 0%, #0c1625 100%);
            padding: 20px 0;
            border-bottom: 3px solid #ff6b35;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b35, #ffd43b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .nav-links a:hover {
            background-color: rgba(255, 107, 53, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd43b;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.95rem;
            color: #a0a0a0;
        }
        .breadcrumb a {
            color: #a0a0a0;
        }
        .breadcrumb a:hover {
            color: #ffd43b;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
            margin-bottom: 50px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1a2b4a;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 6px solid #ff6b35;
            padding-left: 20px;
        }
        h2 {
            font-size: 2.2rem;
            color: #4dabf7;
            margin-top: 40px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 3px dashed #ff6b35;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffa94d;
            margin-top: 30px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: #69db7c;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 214, 59, 0.1);
            border-left: 4px solid #ffd43b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
        }
        .feature-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 30px 0;
            border: 3px solid #ff6b35;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
        }
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            padding: 20px;
            background-color: #0c1625;
            border-radius: 10px;
        }
        .internal-links a {
            background-color: #2d3e5c;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: bold;
        }
        .internal-links a:hover {
            background-color: #ff6b35;
            color: white;
        }
        .sidebar {
            background-color: #1a2b4a;
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        }
        .sidebar h3 {
            color: #ffd43b;
            margin-top: 0;
            margin-bottom: 20px;
            text-align: center;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 2px solid #4dabf7;
            border-radius: 8px;
            background-color: #0c1625;
            color: white;
            font-size: 1rem;
        }
        .search-box button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #ff6b35, #ff922b);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-box button:hover, .comment-form button:hover, .rating-form button:hover {
            transform: translateY(-3px);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #ffd43b;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .stars i:hover {
            color: #ff922b;
        }
        footer {
            background-color: #0c1625;
            padding: 40px 0 20px;
            border-top: 3px solid #ff6b35;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffd43b;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 10px;
            background-color: #1a2b4a;
            border-radius: 6px;
            transition: background-color 0.3s ease;
        }
        friend-link:hover {
            background-color: #2d3e5c;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d3e5c;
            color: #a0a0a0;
            font-size: 0.9rem;
        }
        .update-time {
            font-style: italic;
            color: #69db7c;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 30px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .article-content, .sidebar {
                padding: 25px;
            }
            .internal-links {
                flex-direction: column;
            }
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 900;
            color: #ffd43b;
        }
        .separator {
            height: 2px;
            background: linear-gradient(90deg, #ff6b35, #4dabf7);
            margin: 30px 0;
            border-radius: 2px;
        }
