* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 100%);
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffdd00;
            transform: translateY(-2px);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: rgba(10, 10, 40, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, #00a8ff, #ffdd00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 168, 255, 0.5);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 20px;
            border: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-color: #00a8ff;
            background: rgba(0, 168, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00a8ff;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 10, 40, 0.98);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            position: absolute;
            top: 100%;
            left: 20px;
            right: 20px;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #333;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffdd00;
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: rgba(20, 20, 60, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3rem;
            color: #ffdd00;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 2px 10px rgba(255, 221, 0, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #00a8ff;
            margin: 30px 0 15px;
            border-left: 5px solid #ffdd00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff6b8b;
            margin: 25px 0 12px;
        }
        h4 {
            font-size: 1.4rem;
            color: #9dff00;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 221, 0, 0.1);
            border-left: 4px solid #ffdd00;
            padding: 15px;
            margin: 20px 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #00a8ff;
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.5);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .link-list {
            list-style: none;
            padding: 20px;
            background: rgba(0, 168, 255, 0.1);
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list li {
            padding: 10px;
            border-bottom: 1px dashed #555;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .update-time {
            font-style: italic;
            color: #aaa;
            text-align: right;
            margin-top: 30px;
            font-size: 0.9rem;
        }
        .sidebar {
            background: rgba(20, 20, 60, 0.8);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            height: fit-content;
        }
        .search-box, .comment-box, .rating-box {
            margin-bottom: 30px;
        }
        .search-box h3, .comment-box h3, .rating-box h3 {
            color: #00a8ff;
            margin-bottom: 15px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 2px solid #555;
            border-radius: 8px;
            background: #1a1a4a;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #00a8ff;
            outline: none;
        }
        button {
            background: linear-gradient(90deg, #00a8ff, #0077b6);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #0077b6, #005a8c);
            transform: translateY(-3px);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover, .star.active {
            color: #ffdd00;
        }
        .footer {
            background: rgba(10, 10, 40, 0.95);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 3px solid #00a8ff;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
        }
        friend-link {
            display: inline-block;
            padding: 10px 20px;
            background: rgba(0, 168, 255, 0.2);
            border-radius: 20px;
            border: 1px solid #00a8ff;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(0, 168, 255, 0.4);
            transform: scale(1.05);
        }
        .copyright {
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            h4 {
                font-size: 1.2rem;
            }
            .article, .sidebar {
                padding: 20px;
            }
        }
