        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #5a9bd5;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd166;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #118ab2, #06d6a0);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            text-decoration: none;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        .highlight {
            color: #ffd166;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .site-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 a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd166, #ef476f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e0e1dd;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #14213d;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #8d99ae;
        }
        .breadcrumb a {
            color: #8d99ae;
        }
        .breadcrumb a:hover {
            color: #ffd166;
        }
        .search-section {
            background-color: #1b3a4b;
            padding: 25px 0;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #118ab2;
            border-radius: 50px 0 0 50px;
            background-color: #0d1b2a;
            color: #e0e1dd;
            font-size: 1rem;
        }
        .search-btn {
            padding: 0 30px;
            background: linear-gradient(90deg, #118ab2, #06d6a0);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
        }
        .main-content {
            background-color: #0d1b2a;
            padding: 40px 0;
        }
        article {
            background-color: #1b263b;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #ffd166;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            margin: 50px 0 25px;
            color: #06d6a0;
            border-bottom: 2px solid #118ab2;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 35px 0 18px;
            color: #5a9bd5;
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: #ef476f;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #8d99ae;
            margin-bottom: 35px;
        }
        .article-meta {
            color: #8d99ae;
            font-size: 0.95rem;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .featured-image {
            margin: 40px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
            max-width: 800px;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: #14213d;
            color: #adb5bd;
        }
        blockquote {
            border-left: 5px solid #ffd166;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #8d99ae;
            background-color: rgba(255, 209, 102, 0.05);
            padding: 25px;
            border-radius: 0 10px 10px 0;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        .content-link {
            background-color: rgba(90, 155, 213, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .stats-box {
            background: linear-gradient(135deg, #1b3a4b, #2a4c6d);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid #06d6a0;
        }
        .tip-box {
            background-color: rgba(255, 209, 102, 0.1);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid #ffd166;
        }
        .user-interaction {
            background-color: #14213d;
            border-radius: 15px;
            padding: 40px;
            margin-top: 50px;
        }
        .rating-section, .comment-section {
            margin-bottom: 40px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.5rem;
            color: #8d99ae;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd166;
        }
        .comment-form .form-group {
            margin-bottom: 25px;
        }
        .comment-form label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background-color: #0d1b2a;
            border: 2px solid #118ab2;
            border-radius: 10px;
            color: #e0e1dd;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
        }
        .site-footer {
            background-color: #1b263b;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd166, #ef476f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #06d6a0;
            margin-bottom: 25px;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a4c6d;
            color: #8d99ae;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .container { padding: 0 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #1b263b;
                width: 80%;
                max-width: 300px;
                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; }
            .nav-links li {
                margin: 0 0 25px 0;
            }
            .header-container { padding: 0 15px; }
            .article-meta { flex-direction: column; gap: 10px; }
            .form-actions { flex-direction: column; }
            .form-actions .btn { width: 100%; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 25px; }
            .user-interaction { padding: 25px; }
            .star-rating label { font-size: 2rem; }
        }
