        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Titillium Web', Arial, sans-serif; color: #0a0a2c; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.2; margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-left: 5px solid #e10600; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-top: 2rem; color: #1e3a8a; }
        h4 { font-size: 1.3rem; margin-top: 1.5rem; color: #374151; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #e10600; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #9c0400; text-decoration: underline; }
        strong { color: #0a0a2c; }
        em { font-style: italic; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a2c 0%, #1e3a8a 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo span { color: #e10600; }
        .my-logo:hover { text-decoration: none; }
        .nav-desktop { display: flex; gap: 25px; }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #e10600;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e3a8a;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #e10600; }
        .breadcrumb span { color: #888; }
        .article-body {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        .update-time { font-style: italic; }
        .featured-img {
            width: 100%;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-img:hover { transform: scale(1.005); }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-block {
            margin-bottom: 2.5rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #f0f9ff, #e1f5fe);
            border-left: 6px solid #0284c7;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-size: 1.3rem;
            color: #1e3a8a;
            font-style: italic;
            text-align: center;
            padding: 30px;
            background-color: #f8fafc;
            border-radius: 10px;
            margin: 40px 0;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 4rem;
            color: #e10600;
            opacity: 0.3;
            position: absolute;
        }
        .quote::before { top: 10px; left: 20px; }
        .quote::after { bottom: -20px; right: 20px; }
        .insider-tip {
            background-color: #fff7ed;
            border: 2px dashed #f59e0b;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .insider-tip h4 { color: #d97706; margin-top: 0; }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #e10600;
            margin-bottom: 20px;
        }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #ccc;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #e10600;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background-color: #b30500; }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .rating-form label { display: block; margin: 10px 0 5px; font-weight: 600; }
        .rating-form select, .rating-form textarea {
            width: 100%;
            padding: 10px;
            border: 2px solid #ddd;
            border-radius: 6px;
            margin-bottom: 15px;
            font-family: inherit;
        }
        .rating-form textarea { min-height: 100px; resize: vertical; }
        .rating-form button {
            background-color: #0a0a2c;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            width: 100%;
        }
        .rating-form button:hover { background-color: #1e3a8a; }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #eee;
        }
        .related-links li:last-child { border-bottom: none; }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #374151;
        }
        .related-links a:hover { color: #e10600; }
        .related-links i { color: #e10600; width: 20px; }
        .site-footer {
            background: #0a0a2c;
            color: #ccc;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e10600;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 10px;
            transition: background 0.3s;
        }
        friend-link:hover { background-color: rgba(225, 6, 0, 0.2); }
        friend-link a { color: #90cdf4; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e3a8a;
            font-size: 0.9rem;
            color: #888;
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 1rem; }
        .mt-4 { margin-top: 2rem; }
        .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
        .badge {
            display: inline-block;
            background-color: #e10600;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-right: 10px;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-body, .sidebar-widget {
            animation: fadeIn 0.8s ease-out;
        }
