        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a12;
            color: #c0c0e0;
            line-height: 1.8;
            overflow-x: hidden;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(10, 10, 30, 0.9), rgba(30, 5, 60, 0.8)), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMxMDEwMjAiIGZpbGwtb3BhY2l0eT0iMC4wNCI+PHBhdGggZD0iTTM2IDM0LjUxMmMwLTEuMzM4IDEuMDg1LTIuNDI0IDIuNDI0LTIuNDI0IDEuMzM4IDAgMi40MjQgMS4wODYgMi40MjQgMi40MjQgMCAxLjMzOS0xLjA4NiAyLjQyNC0yLjQyNCAyLjQyNC0xLjMzOSAwLTIuNDI0LTEuMDg1LTIuNDI0LTIuNDI0em0tMjQgMGMwLTEuMzM4IDEuMDg2LTIuNDI0IDIuNDI0LTIuNDI0IDEuMzM4IDAgMi40MjQgMS4wODYgMi40MjQgMi40MjQgMCAxLjMzOS0xLjA4NiAyLjQyNC0yLjQyNCAyLjQyNC0xLjMzOCAwLTIuNDI0LTEuMDg1LTIuNDI0LTIuNDI0eiIvPjwvZz48L2c+PC9zdmc+');
            z-index: -1;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-highlight {
            color: #00eeff;
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #6a11cb, #2575fc);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.4);
        }
        header {
            background-color: rgba(10, 5, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #222244;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #00eeff, #ff00cc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 2px;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: #b0b0ff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
            transition: color 0.3s;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #00eeff;
            transition: width 0.3s;
        }
        .desktop-nav a:hover {
            color: #00eeff;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #00eeff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 80%;
            height: calc(100vh - 70px);
            background-color: rgba(10, 5, 25, 0.98);
            backdrop-filter: blur(15px);
            flex-direction: column;
            padding: 30px;
            transition: right 0.5s ease;
            z-index: 999;
            border-left: 1px solid #222244;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            color: #b0b0ff;
            text-decoration: none;
            padding: 15px 0;
            border-bottom: 1px solid #222244;
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        .mobile-nav a:hover {
            color: #00eeff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8888cc;
        }
        .breadcrumb a {
            color: #8888cc;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #00eeff;
        }
        .hero {
            padding: 60px 0;
            text-align: center;
            border-bottom: 1px solid #222244;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00eeff, #ff00cc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #b0b0ff;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background-color: rgba(15, 10, 30, 0.7);
            border-radius: 10px;
            padding: 40px;
            border: 1px solid #222244;
        }
        article h2 {
            font-size: 2.2rem;
            margin-top: 40px;
            margin-bottom: 20px;
            color: #00eeff;
            border-left: 5px solid #ff00cc;
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: #b0b0ff;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        article em {
            color: #ffcc00;
            font-style: italic;
        }
        article strong {
            color: #ff6699;
            font-weight: bold;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            display: block;
            border-radius: 8px;
            border: 2px solid #333366;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .internal-link {
            color: #00eeff;
            text-decoration: none;
            border-bottom: 1px dotted #00eeff;
            transition: all 0.3s;
        }
        .internal-link:hover {
            color: #ff00cc;
            border-bottom: 1px solid #ff00cc;
        }
        .sidebar {
            background-color: rgba(15, 10, 30, 0.7);
            border-radius: 10px;
            padding: 30px;
            border: 1px solid #222244;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: #00eeff;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-box, .comment-box, .rating-box {
            margin-bottom: 40px;
        }
        .search-box form, .comment-box form, .rating-box form {
            display: flex;
            flex-direction: column;
        }
        .search-box input, .comment-box textarea, .comment-box input, .rating-box select {
            padding: 12px;
            margin-bottom: 15px;
            background-color: rgba(30, 25, 50, 0.8);
            border: 1px solid #333366;
            border-radius: 4px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-box textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 1.8rem;
            color: #444;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        .footer-links {
            background-color: rgba(10, 5, 20, 0.9);
            padding: 40px 0;
            border-top: 1px solid #222244;
            border-bottom: 1px solid #222244;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(30, 25, 50, 0.5);
            padding: 15px;
            border-radius: 6px;
            border-left: 4px solid #6a11cb;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateX(5px);
            background: rgba(50, 45, 80, 0.7);
        }
        .web-link a {
            color: #b0b0ff;
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #00eeff;
        }
        footer {
            padding: 30px 0;
            text-align: center;
            color: #8888cc;
            font-size: 0.9rem;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #222244;
        }
