        * { 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: #f0f0f0;
            background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #6ab0ff; 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); }
        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 { font-size: 1.2em; margin-right: 5px; }
        .last-updated { font-size: 0.9em; color: #aaa; font-style: italic; margin-top: 10px; }
        .site-header {
            background: rgba(10, 10, 18, 0.95);
            border-bottom: 2px solid #333355;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #ffcc00, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover { transform: scale(1.03); }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #ddd;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: rgba(106, 176, 255, 0.2);
            color: #6ab0ff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(26, 26, 46, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #444;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #ddd;
            padding: 15px;
            border-bottom: 1px solid #333;
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 30, 50, 0.7);
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ffcc00; }
        .breadcrumb span { color: #ffcc00; margin: 0 8px; }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .article-body {
            background: rgba(20, 20, 35, 0.8);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
            border: 1px solid #444466;
        }
        h1 {
            font-size: 3.2rem;
            color: #ffcc00;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
            border-bottom: 3px solid #444466;
            padding-bottom: 20px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
        }
        h2 {
            font-size: 2.4rem;
            color: #6ab0ff;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #333355;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff9966;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #99cc66;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
            color: #e0e0e0;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccc;
            font-style: italic;
            border-left: 4px solid #ffcc00;
            padding-left: 20px;
            margin-bottom: 30px;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(30, 40, 70, 0.9), rgba(50, 30, 60, 0.9));
            border-left: 5px solid #ff9966;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .image-wrapper {
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
        }
        .image-wrapper img {
            border-radius: 10px;
            border: 3px solid #555577;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            transition: transform 0.5s;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-size: 0.95rem;
            color: #aaa;
            margin-top: 10px;
            font-style: italic;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
            padding: 20px;
            background: rgba(40, 40, 60, 0.5);
            border-radius: 8px;
        }
        .link-list a {
            display: block;
            padding: 12px;
            background: rgba(60, 60, 90, 0.7);
            border-radius: 6px;
            border: 1px solid #555;
        }
        .link-list a:hover {
            background: rgba(80, 100, 150, 0.8);
            border-color: #6ab0ff;
        }
        .interactive-module {
            background: rgba(25, 25, 40, 0.9);
            border: 1px solid #444466;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
        }
        .module-title {
            color: #ffcc00;
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .module-title i { font-size: 1.5rem; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        .form-group {
            flex: 1;
            min-width: 200px;
        }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            background: rgba(10, 15, 30, 0.8);
            border: 1px solid #555577;
            border-radius: 6px;
            color: #f0f0f0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6ab0ff;
            box-shadow: 0 0 8px rgba(106, 176, 255, 0.5);
        }
        button, .btn {
            padding: 14px 28px;
            background: linear-gradient(to right, #ff9966, #ff5e62);
            color: #000;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #ffcc00, #ff9966);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 153, 102, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin: 15px 0;
        }
        .star-rating label { cursor: pointer; }
        .star-rating input { display: none; }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label { color: #ffcc00; }
        .site-footer {
            background: rgba(10, 10, 18, 0.98);
            border-top: 2px solid #333355;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #6ab0ff;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 10px;
            background: rgba(40, 40, 60, 0.5);
            border-radius: 5px;
            border-left: 3px solid #ff9966;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333355;
            color: #888;
            font-size: 0.9rem;
        }
