        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: #0a0a14;
            background-image: radial-gradient(circle at 20% 30%, rgba(30, 10, 60, 0.4) 0%, transparent 20%),
                              radial-gradient(circle at 80% 80%, rgba(10, 30, 60, 0.3) 0%, transparent 20%);
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4, .logo { font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; color: #f8d347; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1.5rem; line-height: 1.2; text-shadow: 0 0 10px rgba(248, 211, 71, 0.3); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #2a2a4a; }
        h3 { font-size: 1.5rem; margin: 2rem 0 1rem; color: #4fc3f7; }
        h4 { font-size: 1.2rem; margin: 1.5rem 0 0.8rem; color: #a5d6a7; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #4fc3f7; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #f8d347; text-shadow: 0 0 8px rgba(248, 211, 71, 0.5); }
        .highlight { color: #f8d347; font-weight: bold; }
        .lead { font-size: 1.3rem; color: #b3e5fc; font-style: italic; margin-bottom: 2rem; }
        .last-updated { font-size: 0.9rem; color: #888; text-align: right; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #333; }
        .container {
            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: rgba(10, 10, 25, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #222244;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #f8d347;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #4fc3f7; }
        .logo:hover { color: #fff; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #ccc;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active { color: #f8d347; }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f8d347;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f8d347;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 25, 0.98);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .hamburger { display: block; }
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(20, 20, 40, 0.5);
            border-bottom: 1px solid #2a2a4a;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #f8d347; }
        .breadcrumb span { color: #f8d347; }
        .sidebar {
            background: rgba(20, 20, 35, 0.7);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #2a2a4a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #a5d6a7;
            padding-bottom: 8px;
            border-bottom: 1px solid #2a2a4a;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background: rgba(255,255,255,0.08);
            border: 1px solid #444;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: #fff;
        }
        .search-form button {
            background: #2a2a4a;
            color: #f8d347;
            border: 1px solid #444;
            border-left: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #3a3a6a; }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .rating-widget .stars i {
            color: #555;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active { color: #f8d347; }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255,255,255,0.08);
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            margin-bottom: 10px;
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button {
            background: linear-gradient(to right, #2a2a4a, #1a3a5f);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
            transition: transform 0.2s;
        }
        .comment-form button:hover { transform: translateY(-2px); }
        .article-content {
            background: rgba(15, 15, 30, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #2a2a4a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            border: 2px solid #3a3a6a;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-block {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed #333355;
        }
        .quote {
            border-left: 4px solid #f8d347;
            padding-left: 25px;
            margin: 2rem 0;
            font-style: italic;
            color: #b3e5fc;
            background: rgba(248, 211, 71, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .link-list {
            background: rgba(30, 30, 60, 0.5);
            padding: 20px;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list h4 { margin-top: 0; }
        .link-list ul { list-style: none; padding-left: 0; }
        .link-list li { margin-bottom: 10px; padding-left: 25px; position: relative; }
        .link-list li::before {
            content: '⇝';
            position: absolute;
            left: 0;
            color: #f8d347;
        }
        .site-footer {
            background: rgba(5, 5, 15, 0.95);
            border-top: 1px solid #222244;
            margin-top: 60px;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-widget h4 {
            color: #f8d347;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.03);
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            border-left: 3px solid #4fc3f7;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(79, 195, 247, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #2a2a4a 0%, #1a3a5f 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            border: 1px solid #444;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn:hover {
            background: linear-gradient(135deg, #3a3a6a 0%, #2a4a7f 100%);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
