        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0f2b;
            color: #e6e6e6;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #f0b90b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 40px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1f4b 0%, #0a0f2b 100%);
            padding: 15px 0;
            border-bottom: 3px solid #f0b90b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #f0b90b, #ff8a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #c0c0c0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background-color: rgba(240, 185, 11, 0.15);
            color: #ffd700;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f0b90b;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: #12173a;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f0b90b;
        }
        .hero {
            background: radial-gradient(circle at 20% 50%, #1e2a5e, #0a0f2b);
            text-align: center;
            padding: 60px 20px;
            border-bottom: 2px solid #22295a;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(240, 185, 11, 0.3);
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            background: #1c2250;
            color: white;
        }
        .search-box button {
            padding: 15px 30px;
            background: linear-gradient(to right, #f0b90b, #e6a800);
            border: none;
            border-radius: 0 30px 30px 0;
            color: #0a0f2b;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #ffd700, #f0b90b);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: rgba(26, 31, 75, 0.7);
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .main-article h2, .main-article h3, .main-article h4 {
            color: #f0b90b;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #22295a;
        }
        .main-article h2 { font-size: 2.2rem; }
        .main-article h3 { font-size: 1.8rem; }
        .main-article h4 { font-size: 1.4rem; }
        .main-article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(240, 185, 11, 0.1);
            border-left: 4px solid #f0b90b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #888;
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px dashed #333;
        }
        .sidebar {
            background: rgba(26, 31, 75, 0.7);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 12px;
            border-radius: 8px;
            border: 1px solid #333;
            background-color: #1c2250;
            color: white;
        }
        .rating-stars {
            display: flex;
            justify-content: space-around;
            margin-bottom: 15px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f0b90b;
        }
        .btn-submit {
            width: 100%;
            padding: 12px;
            background: #f0b90b;
            color: #0a0f2b;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background: #ffd700;
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .related-links a {
            display: block;
            padding: 12px;
            background: #1c2250;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: #2a3170;
            transform: translateY(-3px);
        }
        .site-footer {
            background: #070a1c;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #f0b90b;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #f0b90b;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 0;
            border-bottom: 1px dotted #333;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #22295a;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1f4b;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .content-wrapper {
                gap: 20px;
            }
            .main-article, .sidebar {
                padding: 20px;
            }
        }
