        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: #f5f5f5;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4a9eff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffdd59;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        header {
            background: rgba(12, 36, 97, 0.95);
            padding: 1.5rem 5%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffdd59, #4a9eff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .my-logo:hover {
            transform: scale(1.03);
            transition: transform 0.3s ease;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .nav-links a {
            font-size: 1.2rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background: #4a9eff;
            color: #0c2461;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #ffdd59;
        }
        .breadcrumb {
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            font-size: 1rem;
        }
        .breadcrumb a {
            color: #ffdd59;
        }
        main {
            flex: 1;
            padding: 3rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        h1 {
            font-size: 3.5rem;
            color: #ffdd59;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            color: #4a9eff;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffdd59;
        }
        h3 {
            font-size: 2rem;
            color: #ffdd59;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.6rem;
            color: #4a9eff;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.3rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 221, 89, 0.15);
            border-left: 5px solid #ffdd59;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .image-container {
            margin: 3rem auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            margin-top: 1rem;
            color: #aaa;
            font-size: 1.1rem;
        }
        .update-time {
            text-align: right;
            font-size: 1rem;
            color: #aaa;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #4a9eff;
        }
        aside {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-section {
            margin-bottom: 3rem;
        }
        .sidebar-section h3 {
            font-size: 1.8rem;
            color: #ffdd59;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 10px 0 0 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.1rem;
        }
        .search-box button {
            background: #4a9eff;
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #ffdd59;
            color: #0c2461;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .rating-form label, .comment-form label {
            font-weight: 600;
            color: #ffdd59;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            background: #ffdd59;
            color: #0c2461;
            border: none;
            padding: 1rem;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #4a9eff;
            color: white;
            transform: translateY(-3px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ffdd59;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.3s ease;
        }
        footer {
            background: rgba(12, 36, 97, 0.98);
            padding: 4rem 5% 2rem;
            margin-top: 4rem;
            border-top: 5px solid #ffdd59;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h4 {
            color: #ffdd59;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: background 0.3s ease;
            color: #4a9eff;
            font-weight: 600;
        }
        friend-link:hover {
            background: rgba(74, 158, 255, 0.2);
            color: #ffdd59;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: #aaa;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(12, 36, 97, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 2rem 5%;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            p {
                font-size: 1.2rem;
            }
            article, aside {
                padding: 2rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        @media print {
            body {
                background: white;
                color: black;
            }
            header, aside, footer, .search-box, .rating-form, .comment-form {
                display: none;
            }
            article {
                box-shadow: none;
                border: none;
                padding: 0;
            }
        }
