        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #ffb703;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd166;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 40px 0;
            border-bottom: 1px solid #1b263b;
        }
        header {
            background-color: #1b263b;
            padding: 15px 0;
            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;
            color: #ffb703;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo:hover {
            color: #ffd166;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: #e0e1dd;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover, .nav-links a.active {
            background-color: #415a77;
            color: #ffb703;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffb703;
            background: none;
            border: none;
        }
        .breadcrumb {
            background-color: #1b263b;
            padding: 12px 0;
            font-size: 0.9rem;
            color: #8d99ae;
        }
        .breadcrumb a {
            color: #8d99ae;
        }
        .breadcrumb a:hover {
            color: #ffb703;
        }
        .hero {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(27, 38, 59, 0.9)), url('https://images.unsplash.com/photo-1586978474393-268b8b8d85ed?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            text-align: center;
            padding: 80px 20px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #ffb703;
            text-shadow: 2px 2px 8px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e0e1dd;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1.1rem;
            background-color: #fff;
            color: #1b263b;
        }
        .search-box button {
            background-color: #ffb703;
            color: #1b263b;
            border: none;
            padding: 0 30px;
            border-radius: 0 30px 30px 0;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #ffd166;
        }
        .content-area {
            flex: 1;
            background-color: #0d1b2a;
        }
        .article-body {
            background-color: #1b263b;
            border-radius: 10px;
            padding: 40px;
            margin-top: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffb703;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #ffb703;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #415a77;
        }
        h3 {
            font-size: 1.8rem;
            color: #ffd166;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #8d99ae;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2a3c5a;
            border-left: 5px solid #ffb703;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        .image-wrapper {
            margin: 30px auto;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            border: 3px solid #415a77;
        }
        .image-caption {
            font-style: italic;
            color: #8d99ae;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #8d99ae;
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px dashed #415a77;
        }
        .comment-section, .rating-section {
            background-color: #1b263b;
            border-radius: 10px;
            padding: 30px;
            margin-top: 40px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #8d99ae;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffb703;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        form input, form textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #415a77;
            background-color: #0d1b2a;
            color: #e0e1dd;
            font-size: 1rem;
        }
        form textarea {
            min-height: 150px;
            resize: vertical;
        }
        form button {
            background-color: #ffb703;
            color: #1b263b;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            align-self: flex-start;
            min-width: 150px;
        }
        form button:hover {
            background-color: #ffd166;
        }
        footer {
            background-color: #1b263b;
            color: #8d99ae;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #ffb703;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            margin-bottom: 12px;
            color: #8d99ae;
            font-style: italic;
        }
        friend-link a {
            color: #8d99ae;
        }
        friend-link a:hover {
            color: #ffb703;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #415a77;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero h1 { font-size: 2.8rem; }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #1b263b;
                width: 250px;
                height: calc(100vh - 80px);
                padding: 40px 20px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            .article-body { padding: 25px; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.5rem; }
            .search-box { flex-direction: column; }
            .search-box input { border-radius: 30px; margin-bottom: 10px; }
            .search-box button { border-radius: 30px; padding: 15px; }
        }
        @media (max-width: 480px) {
            .hero { padding: 50px 15px; }
            .my-logo { font-size: 1.8rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
