        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1525;
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #5d9eff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffcc5d;
            text-shadow: 0 0 8px rgba(255, 204, 93, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0a0f1a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2a3a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 10, 30, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc5d, #ff7a5d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(255, 122, 93, 0.3);
        }
        .my-logo:hover {
            animation: glow 1.5s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 2px 10px rgba(255, 122, 93, 0.3); }
            to { text-shadow: 0 2px 20px rgba(255, 122, 93, 0.7), 0 0 30px rgba(255, 204, 93, 0.5); }
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #ffcc5d;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #e0e7ff;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8a9bb8;
            border-bottom: 1px solid #2a3a5a;
        }
        .breadcrumb a {
            color: #8a9bb8;
        }
        .breadcrumb a:hover {
            color: #ffcc5d;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 28, 46, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 5, 15, 0.5);
            border: 1px solid #2a3a5a;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #5d9eff, #b37eff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #ffcc5d;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3a4a6a;
        }
        h3 {
            font-size: 1.6rem;
            color: #5d9eff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b37eff;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 204, 93, 0.1);
            border-left: 4px solid #ffcc5d;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box {
            background: rgba(93, 158, 255, 0.1);
            border: 1px solid #5d9eff;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .article-img {
            margin: 2rem auto;
            max-width: 800px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            border: 2px solid #3a4a6a;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(93, 158, 255, 0.3);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #8a9bb8;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(20, 28, 46, 0.7);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid #2a3a5a;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #ffcc5d;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #3a4a6a;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: #1a2332;
            border: 1px solid #3a4a6a;
            border-radius: 8px 0 0 8px;
            color: #e0e7ff;
            outline: none;
        }
        .search-form button {
            background: linear-gradient(90deg, #5d9eff, #3a7bff);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #3a7bff, #1a5bff);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #3a4a6a;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc5d;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem 1rem;
            background: #1a2332;
            border: 1px solid #3a4a6a;
            border-radius: 8px;
            color: #e0e7ff;
            outline: none;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff7a5d, #ff5d8f);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ff5d8f, #ff7a5d);
            transform: translateY(-2px);
        }
        .link-list {
            list-style: none;
            margin-left: 0;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: rgba(58, 74, 106, 0.3);
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        .link-list li:hover {
            background: rgba(93, 158, 255, 0.2);
        }
        .link-list a {
            display: block;
            color: #e0e7ff;
        }
        .link-list a:hover {
            color: #ffcc5d;
        }
        .last-updated {
            text-align: center;
            font-size: 0.9rem;
            color: #8a9bb8;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #2a3a5a;
        }
        footer {
            background: #0a0f1a;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid #2a3a5a;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-section h4 {
            color: #ffcc5d;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem;
            background: rgba(58, 74, 106, 0.3);
            border-radius: 5px;
            text-align: center;
        }
        friend-link a {
            color: #e0e7ff;
        }
        friend-link a:hover {
            color: #ffcc5d;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3a5a;
            color: #8a9bb8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: #1a2332;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.5s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
                border-left: 2px solid #2a3a5a;
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            article {
                padding: 1.5rem;
            }
            .header-container {
                padding: 0 15px;
            }
        }
