        * {
            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: #e6e6e6;
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dccbd;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #00fff7;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            background: rgba(10, 15, 30, 0.95);
            border-bottom: 3px solid #00adb5;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00fff7, #4dccbd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(0, 255, 247, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #4dccbd;
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu a {
            padding: 0.8rem 1.2rem;
            border-radius: 25px;
            background: rgba(0, 173, 181, 0.1);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-menu a:hover {
            background: rgba(0, 173, 181, 0.3);
            box-shadow: 0 0 15px #00adb5;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(30, 40, 70, 0.6);
            font-size: 0.9rem;
            margin-top: 0.5rem;
            border-radius: 8px;
        }
        .breadcrumb a {
            color: #88d3ce;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem;
            max-width: 1600px;
            margin: 0 auto;
            width: 100%;
            flex-grow: 1;
        }
        @media (max-width: 1100px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(25, 30, 50, 0.8);
            border-radius: 20px;
            padding: 3rem;
            border-left: 8px solid #00fff7;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        aside {
            background: rgba(20, 25, 45, 0.9);
            border-radius: 20px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 150px;
            border-top: 5px solid #4dccbd;
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #00fff7;
            text-align: center;
            text-shadow: 0 0 20px rgba(0, 255, 247, 0.5);
        }
        h2 {
            font-size: 2.5rem;
            margin: 2.5rem 0 1rem;
            color: #4dccbd;
            border-bottom: 3px dashed #00adb5;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 2rem;
            margin: 2rem 0 0.8rem;
            color: #88d3ce;
        }
        h4 {
            font-size: 1.6rem;
            margin: 1.5rem 0 0.6rem;
            color: #a8e6cf;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            text-align: justify;
            padding: 0 0.5rem;
        }
        .highlight {
            background: rgba(0, 255, 247, 0.1);
            border-left: 5px solid #00fff7;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .update-time {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #444;
        }
        .form-box {
            background: rgba(10, 15, 30, 0.7);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }
        .form-box h3 {
            color: #00fff7;
            margin-top: 0;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            margin: 0.8rem 0;
            border: 2px solid #00adb5;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #00adb5, #4dccbd);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 173, 181, 0.5);
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            margin: 1rem 0;
            color: #ffd700;
        }
        .rating-stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        footer {
            background: rgba(5, 10, 25, 0.95);
            padding: 3rem 2rem;
            margin-top: 4rem;
            text-align: center;
            border-top: 5px solid #00fff7;
        }
        friend-link {
            display: block;
            margin: 2rem 0;
            font-size: 1.1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.7rem 1.5rem;
            background: rgba(0, 173, 181, 0.2);
            border-radius: 20px;
        }
        .copyright {
            margin-top: 2rem;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            .nav-menu.active {
                display: flex;
            }
            .main-wrapper {
                padding: 1rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
        }
        .img-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin: 2rem auto;
            max-width: 800px;
        }
        .img-container img {
            transition: transform 0.5s ease;
        }
        .img-container:hover img {
            transform: scale(1.03);
        }
        .tooltip {
            position: relative;
            border-bottom: 1px dotted #00fff7;
            cursor: help;
        }
        .tooltip:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 0.5rem;
            border-radius: 5px;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            z-index: 10;
        }
