        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body { background: linear-gradient(135deg, #0a0f1e 0%, #1a2639 100%); color: #e0e0e0; line-height: 1.7; min-height: 100vh; display: flex; flex-direction: column; }
        h1, h2, h3, h4 { font-weight: 800; color: #4dabf7; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: 3.5rem; text-align: center; margin: 2rem 0; text-shadow: 0 2px 10px rgba(77, 171, 247, 0.4); }
        h2 { font-size: 2.5rem; border-left: 5px solid #ff6b6b; padding-left: 15px; margin-top: 3rem; }
        h3 { font-size: 1.8rem; color: #69db7c; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #ffd43b; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #ff6b6b; text-shadow: 0 0 8px rgba(255, 107, 107, 0.6); }
        strong { color: #ffa94d; }
        em { color: #da77f2; font-style: italic; }
        .lead { font-size: 1.3rem; color: #a5d8ff; font-weight: 300; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .main-content { flex: 1; padding: 2rem 0; }
        .site-header { background: rgba(10, 15, 30, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #1c3b5e; position: sticky; top: 0; z-index: 1000; padding: 1rem 0; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-size: 2.2rem; font-weight: 900; color: #ff6b6b; text-transform: uppercase; letter-spacing: 2px; background: linear-gradient(90deg, #ff6b6b, #4dabf7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; }
        .my-logo:hover { animation: logo-pulse 1s infinite; }
        @keyframes logo-pulse {
            0% { text-shadow: 0 0 5px #ff6b6b; }
            50% { text-shadow: 0 0 20px #4dabf7; }
            100% { text-shadow: 0 0 5px #ff6b6b; }
        }
        .main-nav ul { display: flex; list-style: none; gap: 2rem; }
        .main-nav a { color: #c0c0c0; font-weight: 600; padding: 0.5rem 1rem; border-radius: 5px; }
        .main-nav a:hover { background: rgba(77, 171, 247, 0.1); color: #4dabf7; }
        .hamburger { display: none; font-size: 1.8rem; color: #4dabf7; cursor: pointer; background: none; border: none; }
        .breadcrumb { margin: 1rem 0; font-size: 0.9rem; color: #888; }
        .breadcrumb a { color: #aaa; }
        .search-box { margin: 2rem 0; background: rgba(30, 40, 60, 0.8); padding: 1.5rem; border-radius: 10px; border: 1px solid #2d4563; }
        .search-form { display: flex; gap: 10px; }
        .search-input { flex: 1; padding: 12px 20px; border-radius: 50px; border: 2px solid #4dabf7; background: #0f172a; color: white; font-size: 1rem; }
        .search-button { padding: 12px 30px; border-radius: 50px; border: none; background: linear-gradient(90deg, #ff6b6b, #ffa94d); color: white; font-weight: bold; cursor: pointer; transition: transform 0.3s; }
        .search-button:hover { transform: scale(1.05); }
        .article-content { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        @media (max-width: 992px) {
            .article-content { grid-template-columns: 1fr; }
        }
        .article-main { background: rgba(20, 30, 48, 0.7); padding: 2.5rem; border-radius: 15px; border: 1px solid #2d4563; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        .article-sidebar { background: rgba(25, 35, 55, 0.7); padding: 1.5rem; border-radius: 15px; border: 1px solid #2d4563; }
        .featured-img { width: 100%; border-radius: 10px; margin: 2rem 0; border: 3px solid #4dabf7; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7); }
        .highlight-box { background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(77, 171, 247, 0.1)); border-left: 5px solid #ffd43b; padding: 1.5rem; margin: 2rem 0; border-radius: 0 10px 10px 0; }
        .rating-section, .comment-section { margin: 3rem 0; padding: 2rem; background: rgba(30, 40, 60, 0.8); border-radius: 15px; border: 1px solid #2d4563; }
        .rating-stars { display: flex; gap: 10px; margin: 1rem 0; font-size: 2rem; color: #ffd43b; }
        .rating-stars i { cursor: pointer; transition: transform 0.2s, color 0.2s; }
        .rating-stars i:hover { transform: scale(1.3); }
        .form-group { margin-bottom: 1.5rem; }
        .form-label { display: block; margin-bottom: 0.5rem; color: #a5d8ff; }
        .form-input, .form-textarea { width: 100%; padding: 12px; border-radius: 8px; border: 1px solid #4dabf7; background: #0f172a; color: white; font-size: 1rem; }
        .form-textarea { min-height: 120px; resize: vertical; }
        .submit-button { padding: 12px 30px; border-radius: 8px; border: none; background: linear-gradient(90deg, #69db7c, #4dabf7); color: white; font-weight: bold; cursor: pointer; transition: all 0.3s; }
        .submit-button:hover { background: linear-gradient(90deg, #4dabf7, #69db7c); box-shadow: 0 0 15px rgba(105, 219, 124, 0.5); }
        .site-footer { background: #0a0f1e; border-top: 2px solid #1c3b5e; padding: 3rem 0 1.5rem; margin-top: 3rem; }
        .footer-links { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
        .friend-links { background: rgba(255, 255, 255, 0.05); padding: 1.5rem; border-radius: 10px; }
        friend-link { display: block; margin: 0.5rem 0; }
        .copyright { text-align: center; color: #888; font-size: 0.9rem; padding-top: 1.5rem; border-top: 1px solid #2d4563; }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .header-inner { flex-wrap: wrap; }
            .hamburger { display: block; }
            .main-nav { display: none; width: 100%; margin-top: 1rem; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0.5rem; }
            .article-main { padding: 1.5rem; }
        }
