        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-neon: #00f0ff;
            --secondary-neon: #ff00d6;
            --dark-bg: #0a0a14;
            --darker-bg: #05050c;
            --panel-bg: rgba(20, 20, 40, 0.85);
            --text-primary: #e0e0ff;
            --text-secondary: #a0a0c0;
            --accent-warning: #ffaa00;
            --border-glow: rgba(0, 240, 255, 0.3);
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: 'Orbitron', 'Arial Black', sans-serif;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--dark-bg);
            background-image: radial-gradient(circle at 20% 30%, rgba(40, 10, 60, 0.5) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(10, 30, 60, 0.4) 0%, transparent 50%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            color: var(--primary-neon);
            text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
        }
        h1 { font-size: 2.8rem; line-height: 1.2; }
        h2 { font-size: 2.2rem; border-left: 4px solid var(--secondary-neon); padding-left: 1rem; margin-top: 3rem; }
        h3 { font-size: 1.8rem; color: var(--accent-warning); margin-top: 2rem; }
        h4 { font-size: 1.4rem; }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--primary-neon);
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: var(--secondary-neon);
            text-shadow: 0 0 6px rgba(255, 0, 214, 0.7);
            border-bottom-color: var(--secondary-neon);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .panel {
            background: var(--panel-bg);
            border: 1px solid var(--border-glow);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }
        .site-header {
            background-color: var(--darker-bg);
            border-bottom: 2px solid var(--primary-neon);
            box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            border: none;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(255, 0, 214, 0.8);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--primary-neon);
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-neon);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .article-hero {
            text-align: center;
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        .article-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 240, 255, 0.05), rgba(255, 0, 214, 0.05));
            z-index: -1;
        }
        .article-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            line-height: 1.1;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .main-article {
            grid-column: 1;
        }
        .article-image {
            margin: 2.5rem auto;
            text-align: center;
            position: relative;
        }
        .article-image img {
            border: 2px solid var(--border-glow);
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .article-image img:hover {
            transform: scale(1.01);
            box-shadow: 0 0 40px rgba(255, 0, 214, 0.4);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        .highlight-box {
            border-left: 5px solid var(--accent-warning);
            padding: 1.5rem;
            background: rgba(255, 170, 0, 0.05);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box h4 {
            color: var(--accent-warning);
            margin-top: 0;
        }
        .content-link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2.5rem 0;
        }
        .content-link-list a {
            display: block;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        .content-link-list a:hover {
            background: rgba(0, 240, 255, 0.1);
            border-color: var(--primary-neon);
            transform: translateY(-3px);
        }
        .sidebar {
            grid-column: 2;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.3rem;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid var(--secondary-neon);
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.9rem;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-glow);
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: white;
            font-family: inherit;
        }
        .search-box button {
            background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
            color: var(--darker-bg);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }
        .search-box button:hover {
            opacity: 0.9;
        }
        .rating-widget .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #555;
            justify-content: center;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-widget .stars i.active,
        .rating-widget .stars i:hover {
            color: gold;
            transform: scale(1.2);
        }
        .rating-widget .rating-form {
            display: none;
            margin-top: 1rem;
        }
        .rating-widget .rating-form.active {
            display: block;
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 2px solid var(--panel-bg);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-glow);
            border-radius: 6px;
            color: white;
            font-family: inherit;
        }
        .comment-form button {
            background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
            color: var(--darker-bg);
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: opacity 0.3s;
        }
        .comment-form button:hover {
            opacity: 0.9;
        }
        .comment-list {
            margin-top: 3rem;
        }
        .comment {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--primary-neon);
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary-neon);
            margin-bottom: 0.5rem;
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
        }
        .link-cloud-section {
            background: var(--darker-bg);
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 1px solid var(--border-glow);
            border-bottom: 1px solid var(--border-glow);
        }
        .link-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
        .web-link {
            padding: 0.8rem 1.5rem;
            background: rgba(0, 240, 255, 0.07);
            border-radius: 30px;
            border: 1px solid rgba(0, 240, 255, 0.2);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(0, 240, 255, 0.15);
            border-color: var(--primary-neon);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2);
        }
        .site-footer {
            text-align: center;
            padding: 2.5rem 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .site-footer a {
            color: var(--text-secondary);
        }
        .site-footer a:hover {
            color: var(--primary-neon);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                grid-column: 1;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--darker-bg);
                padding: 1rem;
                border-top: 1px solid var(--border-glow);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero-meta {
                flex-direction: column;
                gap: 1rem;
            }
            .article-hero h1 {
                font-size: 2.2rem;
            }
            .content-link-list {
                grid-template-columns: 1fr;
            }
        }
