        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a1a2d;
            color: #e6f2ff;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #80ccff;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #001233 0%, #003366 100%);
            padding: 20px 0;
            box-shadow: 0 5px 20px rgba(0, 40, 100, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo a {
            color: inherit;
            background: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: #b3d9ff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(77, 166, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #99ccff;
            background-color: rgba(10, 26, 45, 0.8);
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        main {
            padding: 30px 0;
            background-color: #0a1a2d;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 40, 70, 0.7);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 20, 60, 0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 5px #000;
        }
        h2 {
            font-size: 2rem;
            color: #4da6ff;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #334d66;
        }
        h3 {
            font-size: 1.6rem;
            color: #80ccff;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #b3d9ff;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 15px 20px;
            margin: 25px 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .update-time {
            font-style: italic;
            color: #99ccff;
            text-align: right;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px dashed #334d66;
        }
        aside {
            background: rgba(20, 40, 70, 0.7);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0, 20, 60, 0.3);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: #ffcc00;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #334d66;
            background-color: #0a1a2d;
            color: #e6f2ff;
            font-size: 1rem;
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(to right, #ff9900, #ffcc00);
            color: #001a33;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
        }
        .comments-section, .ratings-summary {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 2px solid #334d66;
        }
        .comment {
            background: rgba(30, 60, 90, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .stars {
            color: #ffcc00;
            margin-bottom: 10px;
        }
        footer {
            background: linear-gradient(135deg, #001233, #00264d);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 10px;
            background: rgba(77, 166, 255, 0.1);
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(77, 166, 255, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #334d66;
            color: #99ccff;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #001233;
                width: 80%;
                height: calc(100vh - 80px);
                padding: 40px 20px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
