        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #00d9ff;
            --secondary-color: #ff009d;
            --dark-bg: #0a0a14;
            --darker-bg: #05050c;
            --card-bg: #121225;
            --text-color: #e0e0ff;
            --text-muted: #a0a0c0;
            --accent-glow: rgba(0, 217, 255, 0.3);
            --spacing-unit: 1rem;
            --border-radius: 8px;
            --transition-speed: 0.3s;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(0, 217, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 157, 0.05) 0%, transparent 20%);
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color var(--transition-speed), text-shadow var(--transition-speed);
        }
        a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 8px var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 3rem 0;
        }
        h1, h2, h3, h4 {
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--primary-color);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        strong {
            color: #fff;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 3px solid var(--primary-color);
            margin: 2rem 0;
        }
        header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 217, 255, 0.2);
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .desktop-nav a:hover {
            background: rgba(0, 217, 255, 0.1);
        }
        .mobile-nav-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--darker-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid rgba(0, 217, 255, 0.2);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .hero {
            text-align: center;
            padding: 4rem 0;
            background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
        }
        .search-box {
            max-width: 600px;
            margin: 3rem auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid var(--primary-color);
            background: rgba(0, 0, 0, 0.7);
        }
        .search-box input {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            background: transparent;
            color: white;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: var(--primary-color);
            color: var(--darker-bg);
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background var(--transition-speed);
        }
        .search-box button:hover {
            background: var(--secondary-color);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article p {
            text-align: justify;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(0, 217, 255, 0.1);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .mod-list {
            list-style: none;
        }
        .mod-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .article-image {
            margin: 2.5rem 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 30px var(--accent-glow);
        }
        .article-image figcaption {
            padding: 1rem;
            background: rgba(0,0,0,0.5);
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
        }
        .rating-section, .comment-section {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid rgba(0, 217, 255, 0.2);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2rem;
            color: #333;
            cursor: pointer;
            transition: color var(--transition-speed), transform var(--transition-speed);
        }
        .star:hover,
        .star.active {
            color: gold;
            transform: scale(1.1);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 217, 255, 0.3);
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border-color var(--transition-speed);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 10px var(--accent-glow);
        }
        .submit-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1.2rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
            align-self: flex-start;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 1px solid rgba(0, 217, 255, 0.2);
            border-bottom: 1px solid rgba(0, 217, 255, 0.2);
        }
        .web-link {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
            transition: transform var(--transition-speed), background var(--transition-speed);
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(0, 217, 255, 0.05);
        }
        .web-link a {
            display: block;
            font-weight: 600;
            font-size: 1.1rem;
        }
        footer {
            background-color: var(--darker-bg);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(0, 217, 255, 0.2);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            section {
                padding: 2rem 0;
            }
            .search-box {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-box input,
            .search-box button {
                width: 100%;
                border-radius: 0;
                padding: 1rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
