        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #0ef0f0;
            --secondary: #ff00ff;
            --dark-bg: #0a0a14;
            --darker-bg: #050510;
            --card-bg: #12121f;
            --text-primary: #e0e0ff;
            --text-secondary: #a0a0c0;
            --accent-glow: rgba(14, 240, 240, 0.3);
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(14, 240, 240, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 20%);
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--secondary);
            text-shadow: 0 0 8px var(--accent-glow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--darker-bg);
            border-bottom: 1px solid var(--primary);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(14, 240, 240, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: var(--darker-bg);
            border-left: 1px solid var(--primary);
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 1001;
            overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1.8rem;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .mobile-nav-links a {
            font-size: 1.2rem;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(14, 240, 240, 0.2);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(10, 10, 20, 0.8);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 0 15px var(--accent-glow);
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .article-meta span i {
            margin-right: 0.5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            color: var(--primary);
            border-left: 4px solid var(--secondary);
            padding-left: 1rem;
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 2.5rem 0 1rem;
            color: var(--secondary);
        }
        .article-content strong {
            color: var(--primary);
            font-weight: 700;
        }
        .article-content em {
            color: var(--text-secondary);
        }
        .highlight-box {
            background-color: var(--card-bg);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 3rem 0;
            border: 1px solid rgba(14, 240, 240, 0.3);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .image-container img {
            width: 100%;
        }
        .image-caption {
            padding: 1rem;
            background-color: rgba(18, 18, 31, 0.8);
            font-size: 0.95rem;
            color: var(--text-secondary);
            text-align: center;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .sidebar {
                margin-top: 3rem;
            }
        }
        .widget {
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: var(--primary);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(14, 240, 240, 0.3);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background-color: rgba(10, 10, 20, 0.8);
            border: 1px solid var(--primary);
            border-right: none;
            border-radius: 4px 0 0 4px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: var(--darker-bg);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: var(--secondary);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.5rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: gold;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-size: 0.95rem;
            color: var(--text-secondary);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            background-color: rgba(10, 10, 20, 0.8);
            border: 1px solid rgba(14, 240, 240, 0.4);
            border-radius: 4px;
            color: var(--text-primary);
            font-family: var(--font-main);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--darker-bg);
            border: none;
            padding: 1rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--accent-glow);
        }
        .footer-links-section {
            background-color: var(--card-bg);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(10, 10, 20, 0.6);
            padding: 1rem;
            border-radius: 4px;
            border-left: 3px solid var(--secondary);
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateX(5px);
            background-color: rgba(14, 240, 240, 0.1);
        }
        .site-footer {
            background-color: var(--darker-bg);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid rgba(14, 240, 240, 0.2);
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: var(--text-secondary);
            transition: color 0.3s, transform 0.3s;
        }
        .social-links a:hover {
            color: var(--primary);
            transform: scale(1.2);
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .glow-text {
            text-shadow: 0 0 10px var(--accent-glow);
        }
