        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd166;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2a3a57;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffd166;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ffd166, #ff9e6d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
        }
        .logo a i {
            margin-right: 10px;
            font-size: 2rem;
            -webkit-text-fill-color: #ff9e6d;
        }
        .logo a:hover {
            filter: brightness(1.2);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #b0bec5;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            position: relative;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #ffd166;
            background-color: rgba(42, 58, 87, 0.4);
        }
        .nav-desktop a:hover::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: #ffd166;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd166;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 280px;
            height: calc(100vh - 70px);
            background-color: #1a2332;
            transition: right 0.4s ease-in-out;
            padding: 2rem;
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.7);
            overflow-y: auto;
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            display: block;
            color: #b0bec5;
            padding: 1rem;
            margin-bottom: 0.5rem;
            border-radius: 6px;
            font-weight: 600;
            border-left: 4px solid transparent;
        }
        .nav-mobile a:hover,
        .nav-mobile a.active {
            color: #ffd166;
            background-color: rgba(42, 58, 87, 0.6);
            border-left-color: #ffd166;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #161e29;
            border-bottom: 1px solid #2a3a57;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #8fa3bf;
        }
        .breadcrumb a:hover {
            color: #ffd166;
        }
        .breadcrumb span {
            color: #b0bec5;
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: linear-gradient(145deg, #1a2332, #161e29);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a3a57;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd166;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            border-bottom: 3px solid #ff9e6d;
            padding-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid #4dabf7;
        }
        h3 {
            font-size: 1.6rem;
            color: #ff9e6d;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b0bec5;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #d0d7de;
            background-color: rgba(42, 58, 87, 0.3);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #ffd166;
            margin-bottom: 2rem;
        }
        em {
            color: #ffd166;
            font-style: italic;
        }
        strong {
            color: #ff9e6d;
            font-weight: 700;
        }
        .highlight {
            background-color: rgba(255, 209, 102, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        li strong {
            color: #4dabf7;
        }
        .featured-image {
            margin: 2.5rem auto;
            max-width: 900px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
            border: 2px solid #2a3a57;
            position: relative;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #8fa3bf;
            padding-top: 0.8rem;
            font-size: 0.95rem;
        }
        .interactive-module {
            background: linear-gradient(145deg, #161e29, #1a2332);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #2a3a57;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .module-title {
            color: #ffd166;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .module-title i {
            color: #4dabf7;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            color: #b0bec5;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 0.9rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a4a6b;
            background-color: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.3);
        }
        button {
            background: linear-gradient(90deg, #ff9e6d, #ffd166);
            color: #0f1419;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 209, 102, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            margin: 1rem 0;
            cursor: pointer;
        }
        .star-rating .star {
            color: #3a4a6b;
            transition: color 0.3s;
        }
        .star-rating .star.active,
        .star-rating .star:hover,
        .star-rating .star:hover ~ .star {
            color: #ffd166;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: linear-gradient(145deg, #1a2332, #161e29);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid #2a3a57;
        }
        .widget-title {
            color: #ff9e6d;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3a57;
        }
        .related-links ul {
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 0;
        }
        .related-links a {
            display: block;
            padding: 0.8rem 1rem;
            background-color: rgba(42, 58, 87, 0.4);
            border-radius: 6px;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background-color: rgba(77, 171, 247, 0.2);
            padding-left: 1.5rem;
            border-left: 4px solid #4dabf7;
        }
        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, #2a3a57, #1a2332);
            border-radius: 10px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #ffd166;
            line-height: 1;
        }
        .stat-label {
            color: #b0bec5;
            margin-top: 0.5rem;
        }
        .site-footer {
            background-color: #0a0e13;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid #2a3a57;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffd166;
            margin-bottom: 1rem;
            display: inline-block;
        }
        .footer-about p {
            color: #8fa3bf;
            font-size: 1rem;
        }
        .footer-links h4,
        .footer-social h4 {
            color: #ff9e6d;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #b0bec5;
        }
        .footer-links a:hover {
            color: #ffd166;
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #2a3a57;
            border-radius: 50%;
            color: #e0e0e0;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: #ffd166;
            color: #0f1419;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding: 1.5rem;
            background-color: rgba(42, 58, 87, 0.3);
            border-radius: 10px;
            border: 1px dashed #4dabf7;
        }
        .friend-link-title {
            color: #4dabf7;
            margin-bottom: 1rem;
        }
        .friend-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .friend-link-list a {
            background-color: #1a2332;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            border: 1px solid #3a4a6b;
        }
        .friend-link-list a:hover {
            background-color: #2a3a57;
        }
        .copyright {
            text-align: center;
            color: #8fa3bf;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3a57;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; }
