        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a16;
            --primary-accent: #00d0ff;
            --secondary-accent: #ff6b00;
            --text-primary: #e0e0ff;
            --text-secondary: #b0b0d0;
            --card-bg: #16162a;
            --border-color: #2a2a4a;
            --hover-glow: 0 0 15px rgba(0, 208, 255, 0.5);
            --section-spacing: 4rem;
            --transition-fast: 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--secondary-accent);
            text-shadow: var(--hover-glow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(10, 10, 22, 0.95), rgba(10, 10, 22, 0.8));
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: var(--hover-glow);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-accent);
            transition: width var(--transition-fast);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: var(--card-bg);
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 1001;
            overflow-y: auto;
            border-left: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav ul {
            list-style: none;
            margin-top: 2rem;
        }
        .mobile-nav li {
            margin-bottom: 1.5rem;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .close-menu {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 2rem;
            position: absolute;
            top: 1rem;
            right: 1rem;
            cursor: pointer;
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s;
        }
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(22, 22, 42, 0.5);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .hero {
            text-align: center;
            padding: var(--section-spacing) 0;
            background: radial-gradient(ellipse at center, #1a1a33 0%, var(--primary-dark) 70%);
            border-bottom: 1px solid var(--border-color);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #00d0ff, #ff6b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-secondary);
        }
        .pub-date {
            color: #888;
            font-style: italic;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: var(--section-spacing) 0;
        }
        .article-content {
            max-width: 900px;
        }
        .article-content h2 {
            font-size: 2.5rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
            color: var(--primary-accent);
        }
        .article-content h3 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            color: var(--secondary-accent);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--secondary-accent);
            font-weight: 700;
        }
        .article-content em {
            color: #b0b0d0;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 208, 255, 0.1), rgba(255, 107, 0, 0.05));
            border-left: 4px solid var(--primary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .widget {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            color: var(--primary-accent);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            background-color: #0e0e1c;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: var(--text-primary);
        }
        .search-form button {
            background-color: var(--primary-accent);
            color: var(--primary-dark);
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color var(--transition-fast);
        }
        .search-form button:hover {
            background-color: #00b8e6;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: gold;
        }
        .rating-widget input,
        .rating-widget textarea {
            padding: 0.8rem;
            background-color: #0e0e1c;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-primary);
        }
        .rating-widget button {
            background: linear-gradient(90deg, var(--primary-accent), #0088cc);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform var(--transition-fast);
        }
        .rating-widget button:hover {
            transform: translateY(-3px);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comments-section {
            margin-top: var(--section-spacing);
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid var(--border-color);
        }
        .comments-section h2 {
            color: var(--primary-accent);
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.8rem;
            background-color: #0e0e1c;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-primary);
        }
        .comment-form button {
            justify-self: start;
            padding: 0.8rem 2rem;
            background: linear-gradient(90deg, var(--secondary-accent), #ff4500);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform var(--transition-fast);
        }
        .comment-form button:hover {
            transform: translateY(-3px);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .comment {
            background-color: #0e0e1c;
            border-radius: 8px;
            padding: 1.5rem;
            border-left: 3px solid var(--border-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .internal-links {
            margin: var(--section-spacing) 0;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(0, 208, 255, 0.05), rgba(255, 107, 0, 0.05));
            border-radius: 12px;
        }
        .internal-links h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary-accent);
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: var(--card-bg);
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-glow);
        }
        .site-footer {
            background-color: #090914;
            padding: 3rem 0 1.5rem;
            border-top: 1px solid var(--border-color);
            margin-top: var(--section-spacing);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--primary-accent);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 2rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .widget {
                padding: 1rem;
            }
            .comments-section,
            .internal-links {
                padding: 1.5rem;
            }
        }
