        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 50%, #2a0a1a 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { text-decoration: none; color: #4db8ff; transition: color 0.3s, transform 0.3s; }
        a:hover { color: #ffcc00; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff6600;
            box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6600, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(255, 102, 0, 0.1);
            border-color: #ff6600;
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(20, 25, 45, 0.8);
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ff6600; }
        .breadcrumb span { color: #ffcc00; }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        article { background: rgba(15, 20, 40, 0.85); padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border: 1px solid #333; }
        h1 { font-size: 2.8rem; color: #ffcc00; margin-bottom: 1.5rem; border-left: 5px solid #ff6600; padding-left: 1rem; line-height: 1.2; }
        h2 { font-size: 2.2rem; color: #4db8ff; margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px dashed #ff6600; }
        h3 { font-size: 1.8rem; color: #ff9966; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #ccff99; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        .lead { font-size: 1.3rem; color: #ffcc00; font-weight: 600; }
        .highlight { background: rgba(255, 204, 0, 0.15); padding: 1rem; border-left: 4px solid #ffcc00; border-radius: 5px; margin: 1.5rem 0; }
        .emoji { font-size: 1.2em; margin-right: 0.5rem; }
        .article-img {
            width: 80%;
            margin: 2rem auto;
            border-radius: 10px;
            border: 3px solid #ff6600;
            box-shadow: 0 0 25px rgba(255, 102, 0, 0.7);
            transition: transform 0.5s;
        }
        .article-img:hover { transform: scale(1.02); }
        aside { background: rgba(20, 25, 45, 0.9); padding: 2rem; border-radius: 15px; align-self: start; }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 { color: #ff9966; font-size: 1.5rem; margin-bottom: 1rem; }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #555;
            border-radius: 8px;
            background: rgba(30, 35, 60, 0.8);
            color: #fff;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(90deg, #ff6600, #ff3300);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        button:hover { background: linear-gradient(90deg, #ff8800, #ff5500); }
        .star-rating { font-size: 1.5rem; color: #ffcc00; margin: 1rem 0; }
        .site-footer {
            background: rgba(5, 10, 25, 0.95);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #ff6600;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-links h4 { color: #ffcc00; margin-bottom: 1.5rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(255, 102, 0, 0.1);
            border: 1px solid #ff6600;
            border-radius: 8px;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-container { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .main-nav ul { display: none; flex-direction: column; width: 100%; background: rgba(10, 15, 30, 0.98); position: absolute; top: 100%; left: 0; padding: 1rem; }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-img { width: 100%; }
            .site-header, .breadcrumb, .main-container { padding-left: 1rem; padding-right: 1rem; }
        }
