        * { 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, #0a0f1a 0%, #1a2332 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #74c0fc; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: rgba(10, 15, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a3a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff9900, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(255, 153, 0, 0.3);
        }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a { font-weight: 600; padding: 0.5rem 1rem; border-radius: 5px; }
        .nav-desktop a:hover { background: rgba(42, 58, 90, 0.5); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ffcc00; }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 28, 44, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2a3a5a;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { padding: 1rem; border-bottom: 1px solid #2a3a5a; }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #fff; }
        main { flex: 1; padding: 2rem 0; }
        article { background: rgba(20, 28, 44, 0.7); border-radius: 15px; padding: 3rem; margin-bottom: 2rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        h1 {
            font-size: 3.2rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 3px 10px rgba(255, 204, 0, 0.2);
            border-bottom: 3px solid #ff9900;
            padding-bottom: 0.5rem;
        }
        h2 { font-size: 2.4rem; color: #4dabf7; margin: 2.5rem 0 1.2rem; border-left: 5px solid #4dabf7; padding-left: 15px; }
        h3 { font-size: 1.8rem; color: #74c0fc; margin: 2rem 0 1rem; }
        h4 { font-size: 1.4rem; color: #a5d8ff; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
        .intro { font-size: 1.3rem; color: #ccc; font-weight: 300; background: rgba(42, 58, 90, 0.3); padding: 1.5rem; border-radius: 10px; margin-bottom: 2rem; }
        .highlight { background: rgba(255, 204, 0, 0.1); border-left: 4px solid #ffcc00; padding: 1rem; margin: 1.5rem 0; font-weight: 600; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .featured-image {
            width: 80%;
            margin: 2.5rem auto;
            border: 3px solid #2a3a5a;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #888;
            font-size: 0.95rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
        }
        .interactive-module {
            background: rgba(30, 40, 60, 0.8);
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #3a4a6a;
        }
        .module-title { color: #ff9900; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }
        .search-form, .comment-form, .rating-form {
            display: grid;
            gap: 1rem;
            max-width: 600px;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border-radius: 5px;
            border: 1px solid #3a4a6a;
            background: #1a2332;
            color: #e0e0e0;
            font-size: 1rem;
            width: 100%;
        }
        button {
            padding: 0.9rem 2rem;
            background: linear-gradient(90deg, #ff9900, #ffcc00);
            color: #0a0f1a;
            border: none;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
        }
        .stars { display: flex; gap: 5px; margin: 1rem 0; }
        .star { font-size: 1.8rem; color: #555; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #ffcc00; }
        footer {
            background: rgba(10, 15, 26, 0.98);
            border-top: 1px solid #2a3a5a;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 { color: #ffcc00; margin-bottom: 1rem; }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: rgba(42, 58, 90, 0.3);
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(42, 58, 90, 0.7); }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3a5a;
        }
        @media (max-width: 992px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            article { padding: 2rem; }
            .featured-image { width: 90%; }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 1.5rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .intro { font-size: 1.1rem; }
            .interactive-module { padding: 1.5rem; }
        }
