        * { 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.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        h1, h2, h3, h4 { color: #ff9a3c; margin-bottom: 1rem; font-weight: 700; line-height: 1.3; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-top: 2rem; text-shadow: 0 2px 10px rgba(255, 154, 60, 0.3); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-left: 5px solid #4cc9f0; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 1.9rem); color: #4cc9f0; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #9d4edd; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        a { color: #4cc9f0; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ff9a3c; text-shadow: 0 0 8px rgba(255, 154, 60, 0.5); }
        strong { color: #ff9a3c; font-weight: 700; }
        em { color: #9d4edd; font-style: italic; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main { flex: 1; }
        header { background: rgba(10, 15, 35, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #ff9a3c; position: sticky; top: 0; z-index: 1000; }
        .header-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
        .my-logo { font-family: 'Arial Black', sans-serif; font-size: 2.2rem; background: linear-gradient(90deg, #ff9a3c, #4cc9f0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; }
        .my-logo:hover { transform: scale(1.05); }
        nav ul { display: flex; list-style: none; gap: 25px; }
        nav a { padding: 8px 12px; border-radius: 5px; font-weight: 600; }
        nav a:hover { background: rgba(76, 201, 240, 0.15); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ff9a3c; }
        .breadcrumb { padding: 15px 20px; background: rgba(26, 26, 46, 0.8); font-size: 0.9rem; margin-bottom: 2rem; }
        .breadcrumb a:not(:last-child)::after { content: "›"; margin: 0 10px; color: #9d4edd; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 40px;
        }
        article { background: rgba(22, 33, 62, 0.7); padding: 30px; border-radius: 15px; border: 1px solid #2a3b6b; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
        .intro { font-size: 1.2rem; border-left: 4px solid #ff9a3c; padding-left: 20px; margin-bottom: 2.5rem; background: rgba(255, 154, 60, 0.05); padding: 20px; border-radius: 0 10px 10px 0; }
        .section-divider { height: 2px; background: linear-gradient(90deg, transparent, #4cc9f0, #9d4edd, transparent); margin: 3rem 0; }
        aside .widget { background: rgba(15, 52, 96, 0.7); padding: 25px; border-radius: 10px; margin-bottom: 25px; border: 1px solid #3a5a8c; }
        .widget h3 { color: #ff9a3c; font-size: 1.4rem; margin-top: 0; border-bottom: 2px solid; padding-bottom: 10px; }
        .search-form, .comment-form, .rating-form { display: flex; flex-direction: column; gap: 15px; }
        input, textarea, select { padding: 12px 15px; border-radius: 8px; border: 1px solid #3a5a8c; background: rgba(26, 26, 46, 0.9); color: #e0e0e0; font-size: 1rem; width: 100%; }
        button, .btn { background: linear-gradient(90deg, #ff9a3c, #e85d04); color: white; border: none; padding: 14px 25px; border-radius: 8px; cursor: pointer; font-weight: bold; font-size: 1rem; transition: transform 0.3s, box-shadow 0.3s; }
        button:hover, .btn:hover { transform: translateY(-3px); box-shadow: 0 7px 15px rgba(232, 93, 4, 0.4); }
        .stars { display: flex; gap: 10px; font-size: 1.8rem; color: #ffd700; justify-content: center; cursor: pointer; }
        .star:hover { transform: scale(1.2); }
        .feature-img { width: 100%; border-radius: 10px; margin: 25px 0; border: 3px solid #4cc9f0; box-shadow: 0 10px 20px rgba(0,0,0,0.5); transition: transform 0.5s; }
        .feature-img:hover { transform: scale(1.02); }
        .emoji { font-size: 1.3em; vertical-align: middle; margin: 0 5px; }
        .link-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; margin: 2rem 0; }
        .link-list a { display: block; background: rgba(76, 201, 240, 0.1); padding: 15px; border-radius: 8px; border-left: 4px solid #9d4edd; }
        .link-list a:hover { background: rgba(76, 201, 240, 0.25); transform: translateX(5px); }
        footer { background: #0a0f23; padding: 40px 20px 20px; margin-top: 60px; border-top: 2px solid #ff9a3c; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 30px; }
        .footer-section { flex: 1; min-width: 250px; }
        friend-link { display: block; margin: 10px 0; }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #2a3b6b; color: #888; font-size: 0.9rem; }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 15, 35, 0.98);
                padding: 20px;
                border-top: 1px solid #4cc9f0;
            }
            nav ul.active { display: flex; }
            .header-container { flex-wrap: wrap; }
            .link-list { grid-template-columns: 1fr; }
            h1 { margin-top: 1rem; }
        }
