        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, #1e40af, #3b82f6);
            padding: 3px 8px;
            border-radius: 4px;
            color: white;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover { opacity: 0.9; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f59e0b;
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f59e0b;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: #cbd5e1;
            font-weight: 600;
            display: block;
            padding: 0.8rem;
            border-radius: 6px;
        }
        .mobile-nav a:hover {
            background: #334155;
        }
        .breadcrumb {
            background: #1e293b;
            padding: 0.8rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #f59e0b;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: #1e293b;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #94a3b8;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #334155;
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #60a5fa;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #334155;
        }
        h3 {
            font-size: 1.6rem;
            color: #38bdf8;
            margin: 2rem 0 1rem 0;
        }
        h4 {
            font-size: 1.3rem;
            color: #7dd3fc;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #cbd5e1;
            background: #0f172a;
            padding: 1.5rem;
            border-left: 5px solid #f59e0b;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .featured-image {
            margin: 2rem auto;
            max-width: 800px;
            position: relative;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .insider-note {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #fbbf24;
        }
        .insider-note h4 {
            color: #fbbf24;
            margin-top: 0;
        }
        .sidebar {
            background: #1e293b;
            padding: 1.5rem;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: #f59e0b;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #334155;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background: #0f172a;
            border: 1px solid #475569;
            border-radius: 6px 0 0 6px;
            color: #e2e8f0;
        }
        .search-form button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #2563eb;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: #0f172a;
            border-radius: 6px;
            transition: transform 0.3s, background 0.3s;
        }
        .related-links li:hover {
            transform: translateX(5px);
            background: #1e40af;
        }
        .comment-rating-section {
            background: #1e293b;
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: #475569;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #fbbf24;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background: #0f172a;
            border: 1px solid #475569;
            border-radius: 8px;
            color: #e2e8f0;
            min-height: 150px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .form-row input {
            flex: 1;
            padding: 0.8rem;
            background: #0f172a;
            border: 1px solid #475569;
            border-radius: 6px;
            color: #e2e8f0;
        }
        .submit-btn {
            background: linear-gradient(90deg, #059669, #10b981);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            opacity: 0.9;
        }
        .site-footer {
            background: #0f172a;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #334155;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-link {
            background: #1e293b;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .friend-link:hover {
            background: #3b82f6;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            color: #94a3b8;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-body { padding: 1.5rem; }
            .form-row { flex-direction: column; }
        }
