        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: #0a0a12;
            background-image: radial-gradient(circle at 15% 50%, rgba(30, 15, 60, 0.7) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(60, 10, 30, 0.5) 0%, transparent 20%);
            min-height: 100vh;
        }
        a { color: #6ee7ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ff4d8f; text-shadow: 0 0 8px #ff4d8f; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: rgba(10, 5, 25, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a1b5e;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #6ee7ff, #ff4d8f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(110, 231, 255, 0.3);
            letter-spacing: 1px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #6ee7ff;
            transition: width 0.4s ease;
        }
        .main-nav a:hover::after { width: 100%; }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(20, 15, 40, 0.6);
            border-bottom: 1px solid #333355;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #6ee7ff; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #6ee7ff;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 80px);
                background: rgba(15, 10, 30, 0.98);
                backdrop-filter: blur(15px);
                flex-direction: column;
                padding: 40px 20px;
                transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
                border-left: 1px solid #2a1b5e;
                overflow-y: auto;
            }
            .main-nav.active { right: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 25px;
            }
            .main-nav a {
                display: block;
                font-size: 1.2rem;
                padding: 10px;
                border-bottom: 1px solid #333355;
            }
            .main-nav a::after { display: none; }
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: linear-gradient(to bottom, rgba(30, 20, 60, 0.7), transparent);
            border-bottom: 1px solid #2a1b5e;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #6ee7ff, #b967ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccccdd;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 18px 25px;
            padding-right: 70px;
            border-radius: 50px;
            border: 2px solid #4a3b8a;
            background: rgba(20, 15, 35, 0.8);
            color: #fff;
            font-size: 1.1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-box input:focus {
            border-color: #6ee7ff;
            box-shadow: 0 0 20px rgba(110, 231, 255, 0.5);
        }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(90deg, #4a3b8a, #6a4bcc);
            border: none;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #6a4bcc, #8a6bec);
            transform: translateY(-50%) scale(1.05);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 60px;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(20, 15, 35, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #333355;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-content h2 {
            font-size: 2.5rem;
            margin: 40px 0 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #4a3b8a;
            color: #6ee7ff;
        }
        .article-content h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #b967ff;
        }
        .article-content h4 { font-size: 1.4rem; margin: 25px 0 10px; color: #ff8c42; }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .article-content strong { color: #ffcc00; font-weight: 700; }
        .article-content em { color: #aaffaa; font-style: italic; }
        .article-content ul, .article-content ol {
            margin-bottom: 25px;
            padding-left: 30px;
        }
        .article-content li { margin-bottom: 10px; }
        .highlight-box {
            background: rgba(30, 25, 60, 0.8);
            border-left: 5px solid #6ee7ff;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .inline-link {
            background: rgba(110, 231, 255, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .featured-image {
            margin: 40px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            border: 2px solid #4a3b8a;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s, box-shadow 0.5s;
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .featured-image img:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 35px rgba(110, 231, 255, 0.3);
        }
        .img-caption {
            margin-top: 15px;
            font-style: italic;
            color: #aaa;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(20, 15, 35, 0.7);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #333355;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #ff4d8f;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444466;
            font-size: 1.5rem;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #444466;
        }
        .sidebar a {
            display: block;
            padding: 8px 0;
            font-weight: 500;
        }
        .sidebar i { margin-right: 10px; width: 20px; }
        .interaction-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #4a3b8a;
        }
        .rating-widget, .comment-widget {
            background: rgba(25, 20, 45, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            border: 1px solid #333355;
        }
        .rating-title, .comment-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            color: #ffcc00;
            font-size: 1.8rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #444466;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active { color: #ffcc00; transform: scale(1.1); }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ccccdd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #4a3b8a;
            background: rgba(15, 10, 30, 0.8);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #6ee7ff;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff4d8f, #b967ff);
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            justify-self: start;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(185, 103, 255, 0.4);
        }
        .web-links-section {
            margin: 50px 0;
            padding: 40px 0;
            border-top: 1px solid #2a1b5e;
            border-bottom: 1px solid #2a1b5e;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(30, 25, 60, 0.6);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #6ee7ff;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(40, 35, 80, 0.8);
        }
        .web-link a {
            font-weight: 600;
            font-size: 1.05rem;
            color: #ccccdd;
            display: block;
        }
        .web-link a:hover { color: #6ee7ff; }
        .web-link p {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 8px;
        }
        .site-footer {
            background: rgba(10, 5, 20, 0.95);
            padding: 50px 0 30px;
            border-top: 1px solid #2a1b5e;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #6ee7ff, #ff4d8f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: #ffcc00;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #ccccdd; }
        .footer-links a:hover { color: #6ee7ff; }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333355;
            color: #888;
            font-size: 0.9rem;
        }
        .copyright a { color: #aaa; }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mt-40 { margin-top: 40px; }
        .icon { margin-right: 10px; }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(110, 231, 255, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(110, 231, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(110, 231, 255, 0); }
        }
        .pulse { animation: pulse 2s infinite; }
