        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body { background: #0f1a2b; color: #e0e7ff; line-height: 1.8; overflow-x: hidden; }
        h1, h2, h3, h4 { color: #ffcc00; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; margin-top: 2rem; text-shadow: 0 0 15px rgba(255, 204, 0, 0.5); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); border-left: 5px solid #3a7bd5; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: #4fc3f7; }
        h4 { font-size: 1.4rem; color: #a5d6a7; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #4fc3f7; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ffcc00; text-shadow: 0 0 8px rgba(255, 204, 0, 0.7); }
        strong { color: #ffcc00; font-weight: 700; }
        em { color: #a5d6a7; font-style: italic; }
        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(135deg, #1a2b4c 0%, #0c1424 100%); padding: 1rem 0; border-bottom: 3px solid #ffcc00; position: sticky; top: 0; z-index: 1000; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-size: 2.2rem; font-weight: 900; background: linear-gradient(to right, #ffcc00, #ff6699); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .my-logo:hover { transform: scale(1.05); }
        .desktop-nav ul { display: flex; list-style: none; gap: 2rem; }
        .desktop-nav a { font-weight: 600; font-size: 1.1rem; padding: 0.5rem 1rem; border-radius: 5px; }
        .desktop-nav a:hover { background: rgba(255, 204, 0, 0.15); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ffcc00; }
        .mobile-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #1a2b4c; flex-direction: column; padding: 1rem; border-top: 2px solid #3a7bd5; }
        .mobile-nav.active { display: flex; }
        .mobile-nav a { padding: 0.8rem; border-bottom: 1px solid #2d3e5f; display: block; }
        .breadcrumb { padding: 1rem 0; font-size: 0.95rem; color: #b0bec5; }
        .breadcrumb a { color: #b0bec5; }
        .breadcrumb a:hover { color: #ffcc00; }
        main { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 2rem 0; }
        @media (max-width: 992px) { main { grid-template-columns: 1fr; } }
        .article-content { background: rgba(25, 40, 65, 0.7); padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        .intro { font-size: 1.3rem; color: #bbdefb; border-left: 4px solid #ffcc00; padding-left: 1rem; margin-bottom: 2.5rem; }
        .section { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 2px dashed #2d3e5f; }
        .highlight-box { background: linear-gradient(135deg, #2d3e5f, #1a2b4c); padding: 1.5rem; border-radius: 10px; margin: 2rem 0; border-left: 5px solid #ff6699; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
        .stat-card { background: rgba(255, 204, 0, 0.1); padding: 1.5rem; text-align: center; border-radius: 10px; border: 1px solid #ffcc00; }
        .stat-card h4 { color: #ffcc00; }
        .article-img { width: 100%; max-width: 800px; height: auto; border-radius: 12px; border: 3px solid #3a7bd5; margin: 2rem auto; display: block; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7); transition: transform 0.5s; }
        .article-img:hover { transform: scale(1.02); }
        aside { background: rgba(25, 40, 65, 0.7); padding: 2rem; border-radius: 15px; height: fit-content; position: sticky; top: 120px; }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 { border-bottom: 2px solid #4fc3f7; padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
        .search-form, .comment-form, .rating-form { display: flex; flex-direction: column; gap: 1rem; }
        .form-group { display: flex; flex-direction: column; }
        label { margin-bottom: 0.5rem; font-weight: 600; color: #a5d6a7; }
        input, textarea, select { padding: 0.8rem 1rem; background: #1a2b4c; border: 2px solid #3a7bd5; border-radius: 8px; color: #e0e7ff; font-size: 1rem; }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #ffcc00; box-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }
        button { background: linear-gradient(to right, #3a7bd5, #00d2ff); color: white; border: none; padding: 1rem 1.5rem; border-radius: 8px; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: all 0.3s; }
        button:hover { background: linear-gradient(to right, #ffcc00, #ff6699); transform: translateY(-3px); box-shadow: 0 7px 15px rgba(255, 204, 0, 0.4); }
        .star-rating { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .star-rating i { color: #555; cursor: pointer; font-size: 1.8rem; transition: color 0.3s; }
        .star-rating i:hover, .star-rating i.active { color: #ffcc00; }
        .links-list { list-style: none; }
        .links-list li { margin-bottom: 1rem; padding-left: 1.5rem; position: relative; }
        .links-list li:before { content: '🏁'; position: absolute; left: 0; }
        footer { background: #0c1424; padding: 3rem 0 1.5rem; margin-top: 3rem; border-top: 3px solid #3a7bd5; }
        .footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
        .footer-section { flex: 1; min-width: 250px; }
        friend-link { display: block; margin: 0.8rem 0; font-size: 1.1rem; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #2d3e5f; color: #b0bec5; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
            .article-content, aside { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
