        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1a26;
            color: #e0e7ff;
            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;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2b3c 0%, #0f1a26 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ff9e00;
            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 a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff9e00, #ffd166);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: -1px;
        }
        .logo a span {
            color: #4dabf7;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover {
            background-color: rgba(255, 215, 102, 0.1);
            color: #ffd166;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffd166;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #1a2b3c;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #4dabf7;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1a2b3c;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #ffd166;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #ff9e00;
            padding-left: 1rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #2c3e50;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #ff9e00;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #ffd166;
            font-weight: 700;
        }
        .article-content em {
            color: #a5d8ff;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #2c3e50, #1a2b3c);
            border-left: 5px solid #ff9e00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
        }
        .hero-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid #ff9e00;
            box-shadow: 0 10px 20px rgba(0,0,0,0.6);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #1a2b3c;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .widget h3 {
            color: #ff9e00;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2c3e50;
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px 0 0 5px;
            background-color: #2c3e50;
            color: #e0e7ff;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #ff9e00;
            color: #0f1a26;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #ffd166;
        }
        .rating-widget .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #ffd166;
            cursor: pointer;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #2c3e50;
            border-radius: 5px;
            background-color: #2c3e50;
            color: #e0e7ff;
            font-size: 1rem;
        }
        .comment-form button {
            background-color: #4dabf7;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #339af0;
        }
        .footer-links {
            background-color: #1a2b3c;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #2c3e50;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            background-color: #3b4f63;
            transform: translateY(-5px);
        }
        .web-link a {
            font-weight: 600;
            color: #a5d8ff;
        }
        .site-footer {
            background-color: #0f1a26;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #2c3e50;
            font-size: 0.95rem;
            color: #a5d8ff;
        }
        .site-footer a {
            color: #ffd166;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a2b3c;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #2c3e50;
                z-index: 999;
            }
            .main-nav.active ul {
                display: flex;
            }
            .logo a {
                font-size: 1.8rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
