        :root {
            --primary: #00ffff;
            --secondary: #ff00ff;
            --dark: #0a0a14;
            --darker: #050510;
            --light: #f0f0f5;
            --gray: #8888aa;
            --danger: #ff5555;
            --warning: #ffaa00;
            --success: #55ff55;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-tech: 'Courier New', monospace;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
            --shadow-heavy: 0 20px 50px rgba(255, 0, 255, 0.2);
            --border-radius: 8px;
            --container-max: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.8;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(0, 100, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 20%);
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 4px solid var(--secondary);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        em {
            color: var(--secondary);
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid var(--primary);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: rgba(0, 255, 255, 0.05);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-style: italic;
            position: relative;
        }
        blockquote:before {
            content: '"';
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.3;
            position: absolute;
            top: -1rem;
            left: 0.5rem;
        }
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 2rem;
        }
        header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: var(--font-tech);
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            border: none;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }
        .logo a:hover {
            text-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            border: 1px solid transparent;
        }
        nav a:hover {
            border-color: var(--primary);
            background: rgba(0, 255, 255, 0.1);
        }
        nav a i {
            margin-right: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(5, 5, 16, 0.8);
            border-bottom: 1px solid rgba(255, 0, 255, 0.1);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--secondary);
            margin: 0 0.5rem;
        }
        main {
            padding: 3rem 0;
            min-height: 100vh;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            align-items: start;
        }
        article {
            background: rgba(15, 15, 25, 0.7);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 255, 0.1);
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            padding-bottom: 2rem;
        }
        .article-header:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1.5rem 0;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-heavy);
        }
        .article-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 0, 255, 0.1);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border-left: 4px solid var(--warning);
        }
        .key-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .point-card {
            background: rgba(20, 20, 35, 0.8);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: var(--transition);
        }
        .point-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }
        .point-card h4 {
            color: var(--warning);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        aside {
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            background: rgba(15, 15, 25, 0.7);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 0, 255, 0.1);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            background: rgba(10, 10, 20, 0.8);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            color: var(--light);
            font-family: inherit;
        }
        .search-form button {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--darker);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.5rem;
        }
        .stars i {
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--warning);
            text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .related-links i {
            color: var(--secondary);
        }
        .comment-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 3px solid var(--primary);
        }
        .comment-form {
            background: rgba(20, 20, 35, 0.8);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-bottom: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary);
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            background: rgba(10, 10, 20, 0.8);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: var(--border-radius);
            color: var(--light);
            font-family: inherit;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--darker);
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
        }
        .comments-list {
            margin-top: 2rem;
        }
        .comment {
            background: rgba(15, 15, 25, 0.5);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--primary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .comment-author {
            color: var(--primary);
            font-weight: bold;
        }
        .footer-links {
            background: rgba(10, 10, 20, 0.9);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link {
            background: rgba(20, 20, 35, 0.6);
            padding: 1.2rem;
            margin-bottom: 1rem;
            border-radius: var(--border-radius);
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--secondary);
            background: rgba(30, 30, 50, 0.8);
            transform: translateX(5px);
        }
        .web-link a {
            display: block;
            font-size: 1.1rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        footer {
            background-color: var(--dark);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid rgba(0, 255, 255, 0.2);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: var(--gray);
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }
        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            nav {
                width: 100%;
                order: 3;
                display: none;
                margin-top: 1rem;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            article {
                padding: 1.5rem;
            }
            .featured-image {
                height: 300px;
            }
            .key-points {
                grid-template-columns: 1fr;
            }
        }
        @keyframes glow {
            0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
            50% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
        }
        .glow-text {
            animation: glow 3s infinite;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 0.7; }
            50% { opacity: 1; }
            100% { opacity: 0.7; }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary), var(--secondary));
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(var(--secondary), var(--primary));
        }
