        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1a20;
            color: #e0d9c9;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: #f2b824; }
        .emoji { margin-right: 5px; }
        .section-padding { padding: 60px 0; }
        .highlight-box {
            background: linear-gradient(135deg, #1a2b3a 0%, #2d4a5e 100%);
            border-left: 5px solid #f2b824;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .site-header {
            background: linear-gradient(to bottom, #16222d 0%, #0f1a20 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area a {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.4rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f2b824, #d99224);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo-tagline {
            font-size: 0.85rem;
            color: #8a9ba8;
            font-style: italic;
        }
        .breadcrumb {
            padding: 12px 0;
            background-color: #1a2b3a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb a {
            color: #8a9ba8;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #f2b824;
        }
        .breadcrumb li+li::before {
            content: ">";
            margin-right: 10px;
            color: #5a6f7a;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #c0c8d0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s;
        }
        .nav-desktop a:hover {
            color: #f2b824;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f2b824;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f2b824;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: #16222d;
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile a {
            display: block;
            color: #c0c8d0;
            text-decoration: none;
            padding: 15px 0;
            border-bottom: 1px solid #2a3b4a;
            font-size: 1.1rem;
            transition: color 0.3s, padding-left 0.3s;
        }
        .nav-mobile a:hover {
            color: #f2b824;
            padding-left: 10px;
        }
        .hero {
            background: radial-gradient(ellipse at center, #1c2e3d 0%, #0f1a20 70%);
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 3px solid #f2b824;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #f2b824, #d97c24);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #b0bcc8;
        }
        .search-container {
            max-width: 700px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            box-shadow: 0 8px 25px rgba(242, 184, 36, 0.15);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: #1a2b3a;
            color: #e0d9c9;
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #8a9ba8;
        }
        .search-btn {
            background: linear-gradient(90deg, #f2b824, #d97c24);
            border: none;
            color: #0f1a20;
            padding: 0 35px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #ffcc33, #e68a2e);
            letter-spacing: 1px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #f2b824;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d4a5e;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: #d9b36c;
            margin: 40px 0 20px;
        }
        .article-content h4 {
            font-size: 1.5rem;
            color: #b0bcc8;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .article-content a {
            color: #4fa3d1;
            text-decoration: none;
            border-bottom: 1px dotted #4fa3d1;
            transition: color 0.3s, border-bottom 0.3s;
        }
        .article-content a:hover {
            color: #f2b824;
            border-bottom: 1px solid #f2b824;
        }
        .figure-container {
            margin: 35px 0;
            text-align: center;
        }
        .figure-container img {
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border: 2px solid #2d4a5e;
        }
        .figcaption {
            font-style: italic;
            color: #8a9ba8;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar-widget {
            background-color: #1a2b3a;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #2d4a5e;
        }
        .sidebar-title {
            color: #f2b824;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2d4a5e;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            color: #c0c8d0;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: color 0.3s, transform 0.2s;
        }
        .quick-links a:hover {
            color: #f2b824;
            transform: translateX(5px);
        }
        .quick-links i {
            margin-right: 10px;
            color: #f2b824;
            width: 20px;
        }
        .interactive-section {
            background-color: #16222d;
            border-radius: 10px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid #f2b824;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #d9b36c;
        }
        .form-control {
            padding: 15px;
            background-color: #0f1a20;
            border: 1px solid #2d4a5e;
            border-radius: 5px;
            color: #e0d9c9;
            font-size: 1rem;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star {
            color: #5a6f7a;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #f2b824;
        }
        .submit-btn {
            background: linear-gradient(90deg, #f2b824, #d97c24);
            color: #0f1a20;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 5px;
            cursor: pointer;
            align-self: flex-start;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ffcc33, #e68a2e);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(242, 184, 36, 0.3);
        }
        .site-footer {
            background-color: #0a1219;
            padding: 60px 0 30px;
            margin-top: 60px;
            border-top: 3px solid #f2b824;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo .my-logo {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .footer-links h4 {
            color: #f2b824;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #8a9ba8;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #f2b824;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2d4a5e;
        }
        friend-link a {
            color: #4fa3d1;
            margin-right: 15px;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d4a5e;
            color: #8a9ba8;
            font-size: 0.9rem;
        }
