* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #00b4d8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #90e0ef;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            padding: 20px 0;
            border-bottom: 3px solid #ffd500;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffd500;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px #ffd500;
        }
        .my-logo:hover {
            color: #ffaa00;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: #333;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd500;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.95);
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #444;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3rem;
            color: #ffd500;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 0 15px #ffd500;
        }
        h2 {
            font-size: 2.2rem;
            color: #00b4d8;
            margin: 40px 0 20px;
            border-left: 5px solid #00b4d8;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #90e0ef;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #caf0f8;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 213, 0, 0.1);
            border-left: 4px solid #ffd500;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #00b4d8;
            margin: 20px auto;
            display: block;
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .feature {
            background: rgba(0, 180, 216, 0.1);
            padding: 25px;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 180, 216, 0.3);
        }
        .feature i {
            font-size: 2.5rem;
            color: #ffd500;
            margin-bottom: 15px;
        }
        .search-form, .comment-form, .rating-form {
            background: rgba(255, 255, 255, 0.08);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .search-form h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        input, textarea, select, button {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: 2px solid #00b4d8;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #0077b6, #00b4d8);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover, .star.active {
            color: #ffd500;
        }
        footer {
            background: rgba(0, 0, 0, 0.95);
            padding: 40px 0 20px;
            border-top: 3px solid #ffd500;
            margin-top: auto;
        }
        friend-link {
            display: block;
            margin: 15px 0;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .update-time {
            color: #ffd500;
            font-weight: bold;
        }
        @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;
            }
            .feature-box {
                grid-template-columns: 1fr;
            }
        }
