        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0b1d;
            color: #e6e6fa;
            line-height: 1.8;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 15% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(255, 119, 230, 0.05) 0%, transparent 20%);
        }
        a {
            color: #b19cd9;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff77e6;
            text-shadow: 0 0 8px rgba(255, 119, 230, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #d4b3ff;
            margin-bottom: 1.2rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            background: linear-gradient(90deg, #ff77e6, #b19cd9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            border-left: 5px solid #ff77e6;
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            color: #c9a8ff;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #ffccff;
            font-weight: 700;
        }
        em {
            color: #a3d9ff;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #b19cd9;
            padding-left: 25px;
            margin: 2rem 0;
            font-style: italic;
            color: #c9c9ff;
            background: rgba(177, 156, 217, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        header {
            background-color: rgba(15, 11, 29, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 119, 230, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff77e6, #9370db);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(255, 119, 230, 0.7);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff77e6, transparent);
            transition: width 0.4s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff77e6;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a152e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid rgba(255, 119, 230, 0.2);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 1.2rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid rgba(255, 119, 230, 0.1);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #b19cd9;
        }
        .search-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 25px;
            background: rgba(26, 21, 46, 0.7);
            border-radius: 15px;
            border: 1px solid rgba(255, 119, 230, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .search-container h3 {
            text-align: center;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #3a2c5e;
            border-radius: 50px;
            background: #0f0b1d;
            color: #e6e6fa;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .search-form input:focus {
            outline: none;
            border-color: #ff77e6;
            box-shadow: 0 0 15px rgba(255, 119, 230, 0.3);
        }
        .search-form button {
            padding: 15px 30px;
            border-radius: 50px;
            background: linear-gradient(90deg, #ff77e6, #9370db);
            color: white;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .search-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 119, 230, 0.4);
        }
        .article-content {
            background: rgba(26, 21, 46, 0.6);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 119, 230, 0.1);
        }
        .article-intro {
            font-size: 1.3rem;
            line-height: 1.9;
            text-align: center;
            margin-bottom: 50px;
            color: #d4c2ff;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 119, 230, 0.1), rgba(147, 112, 219, 0.1));
            border-left: 5px solid #ff77e6;
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }
        .img-container {
            margin: 40px auto;
            max-width: 900px;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        .img-container img {
            transition: transform 0.7s ease;
            width: 100%;
        }
        .img-container:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: rgba(42, 35, 70, 0.8);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255, 119, 230, 0.2);
            transition: transform 0.4s ease, border-color 0.4s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            border-color: #ff77e6;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ff77e6;
            margin-bottom: 15px;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #ffccff;
        }
        .user-interaction {
            margin-top: 80px;
            padding: 40px;
            background: rgba(15, 11, 29, 0.8);
            border-radius: 20px;
            border: 1px solid rgba(255, 119, 230, 0.2);
        }
        .rating-section, .comment-section {
            margin-bottom: 50px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 25px 0;
            direction: ltr;
        }
        .star {
            font-size: 2.5rem;
            color: #3a2c5e;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 20px;
            border-radius: 12px;
            background: #1a152e;
            border: 2px solid #3a2c5e;
            color: #e6e6fa;
            font-size: 1rem;
            min-height: 150px;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #ff77e6;
        }
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        .form-row input {
            flex: 1;
            padding: 15px;
            border-radius: 8px;
            background: #1a152e;
            border: 2px solid #3a2c5e;
            color: #e6e6fa;
        }
        .submit-btn {
            padding: 15px 40px;
            background: linear-gradient(90deg, #9370db, #ff77e6);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: block;
            margin: 20px auto 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 119, 230, 0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 60px 0 40px;
        }
        .web-link {
            background: rgba(42, 35, 70, 0.6);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 119, 230, 0.1);
        }
        footer {
            background-color: #0a0818;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 119, 230, 0.2);
            text-align: center;
            margin-top: 80px;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content, .user-interaction {
                padding: 30px 20px;
            }
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
