        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0f1520 0%, #1a1f2e 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: #ffcc00; }
        .emoji { margin-right: 8px; }
        .section-padding { padding: 60px 0; }
        .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        h1, h2, h3, h4 { font-family: 'Teko', Impact, Arial, sans-serif; color: #ffffff; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: clamp(2.8rem, 8vw, 4.5rem); text-transform: uppercase; text-shadow: 0 0 15px rgba(0, 150, 255, 0.7); margin-top: 0.5rem; }
        h2 { font-size: clamp(2rem, 5vw, 2.8rem); border-left: 5px solid #ff3366; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.5rem, 4vw, 2rem); color: #66ccff; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #99ff99; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #66ccff; 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.5); }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        blockquote { border-left: 4px solid #ff3366; padding-left: 20px; margin: 2rem 0; font-style: italic; color: #b0b0b0; }
        hr { border: none; height: 2px; background: linear-gradient(90deg, transparent, #3366ff, transparent); margin: 3rem 0; }
        .site-header { background: rgba(10, 15, 26, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #3366ff; position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-family: 'Teko', Impact; font-size: 2.5rem; font-weight: 700; color: #ffcc00; text-decoration: none; display: flex; align-items: center; }
        .my-logo span:first-child { color: #ff3366; }
        .my-logo span:last-child { color: #66ccff; margin-left: 5px; }
        .my-logo:hover { text-shadow: 0 0 20px rgba(255, 204, 0, 0.7); }
        .breadcrumb { background: rgba(255,255,255,0.05); padding: 10px 20px; border-radius: 5px; margin-top: 10px; font-size: 0.9rem; }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:last-of-type { color: #ffcc00; }
        .main-nav ul { display: flex; list-style: none; gap: 25px; }
        .main-nav a { color: #ccc; font-weight: 500; padding: 8px 0; position: relative; }
        .main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #ff3366; transition: width 0.3s; }
        .main-nav a:hover::after { width: 100%; }
        .hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
        .hero { padding: 80px 0; text-align: center; background: radial-gradient(circle at center, rgba(51, 102, 255, 0.15) 0%, transparent 70%); }
        .last-updated { color: #88ff88; font-size: 0.9rem; margin-top: 20px; }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 40px; margin: 40px 0; }
        .article-content { background: rgba(30, 35, 50, 0.7); padding: 40px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
        .featured-img { width: 100%; border-radius: 10px; margin: 30px 0; border: 3px solid #3366ff; box-shadow: 0 5px 20px rgba(0,0,0,0.5); }
        .sidebar { background: rgba(25, 30, 45, 0.8); padding: 30px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); align-self: start; position: sticky; top: 120px; }
        .widget { margin-bottom: 35px; }
        .widget-title { font-size: 1.5rem; color: #ffcc00; border-bottom: 2px solid #ff3366; padding-bottom: 10px; margin-bottom: 20px; }
        .search-form, .comment-form, .rating-form { display: flex; flex-direction: column; gap: 15px; }
        .form-input, .form-textarea, .form-select { width: 100%; padding: 12px 15px; background: rgba(255,255,255,0.1); border: 1px solid #444; border-radius: 8px; color: #fff; font-size: 1rem; }
        .form-input:focus, .form-textarea:focus { outline: none; border-color: #66ccff; box-shadow: 0 0 10px rgba(102, 204, 255, 0.5); }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-submit { background: linear-gradient(90deg, #ff3366, #ff9966); color: white; border: none; padding: 14px; border-radius: 8px; font-weight: bold; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
        .form-submit:hover { transform: translateY(-3px); box-shadow: 0 7px 15px rgba(255, 51, 102, 0.4); }
        .star-rating { display: flex; justify-content: center; gap: 10px; font-size: 2rem; direction: rtl; }
        .star-rating input { display: none; }
        .star-rating label { color: #555; cursor: pointer; transition: color 0.2s; }
        .star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label { color: #ffcc00; }
        .link-list { list-style: none; margin-left: 0; }
        .link-list li { margin-bottom: 12px; padding-left: 20px; position: relative; }
        .link-list li::before { content: '▸'; position: absolute; left: 0; color: #ff3366; }
        .site-footer { background: rgba(5, 10, 20, 0.95); padding: 50px 0 30px; margin-top: 60px; border-top: 2px solid #3366ff; }
        .footer-container { display: flex; flex-direction: column; align-items: center; }
        friend-link { display: block; text-align: center; margin: 20px 0; }
        friend-link a { background: rgba(255,255,255,0.05); padding: 10px 25px; border-radius: 30px; margin: 0 10px; display: inline-block; }
        .copyright { margin-top: 30px; color: #888; font-size: 0.9rem; text-align: center; border-top: 1px solid #333; padding-top: 20px; width: 100%; }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .hamburger { display: block; }
            .main-nav { width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
            .main-nav.active { max-height: 300px; margin-top: 20px; }
            .main-nav ul { flex-direction: column; gap: 0; }
            .main-nav li { width: 100%; border-bottom: 1px solid #333; }
            .main-nav a { display: block; padding: 15px; }
            .article-content, .sidebar { padding: 25px; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
