        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f0f0f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffed4e;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            padding: 1rem 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.2rem;
            font-weight: 800;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 15px #ffd700;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background: rgba(255, 215, 0, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd700;
        }
        .breadcrumb {
            background: rgba(30, 30, 60, 0.8);
            padding: 0.8rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #aaa;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: #ffd700;
            text-align: center;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.4rem;
            margin: 2.5rem 0 1rem;
            color: #4fc3f7;
            border-left: 5px solid #4fc3f7;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 1.8rem 0 0.8rem;
            color: #a5d6a7;
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.6rem;
            color: #ffab91;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            border: 2px solid #ffd700;
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #555;
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(to right, #ffd700, #ff9800);
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd700;
        }
        .stars input:checked ~ label {
            color: #ffd700;
        }
        footer {
            background: rgba(0, 0, 0, 0.95);
            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;
        }
        friend-link {
            display: block;
            background: rgba(255, 215, 0, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #444;
        }
        friend-link h3 {
            color: #ffd700;
            margin-bottom: 1rem;
        }
        friend-link ul {
            list-style: none;
        }
        friend-link li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transition: left 0.5s ease;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        @media print {
            body {
                background: #fff;
                color: #000;
            }
            header, aside, footer {
                display: none;
            }
        }
