        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0b1f;
            color: #e6e6fa;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #9d7afc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #c2a7ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a142d 0%, #0f0b1f 100%);
            padding: 1.2rem 0;
            border-bottom: 2px solid #2a2352;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b9d, #9d7afc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(157, 122, 252, 0.3);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: #2a2352;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #9d7afc;
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            background-color: #1a142d;
            padding: 4rem 2rem;
            transition: right 0.5s ease;
            z-index: 999;
            border-left: 2px solid #2a2352;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #2a2352;
        }
        .close-menu {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #b0a8d9;
        }
        .breadcrumb a {
            margin-right: 0.5rem;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .hero {
            background: radial-gradient(circle at 30% 20%, #2a2352 0%, transparent 50%), radial-gradient(circle at 80% 80%, #1a142d 0%, transparent 50%);
            padding: 4rem 0;
            text-align: center;
            border-bottom: 1px solid #2a2352;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #ff6b9d, #9d7afc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #d0c6f0;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            transition: all 0.3s ease;
        }
        .btn-primary {
            background: linear-gradient(90deg, #9d7afc, #6a4dcc);
            color: white;
            box-shadow: 0 5px 15px rgba(157, 122, 252, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(157, 122, 252, 0.6);
        }
        .btn-secondary {
            background-color: transparent;
            color: #9d7afc;
            border: 2px solid #9d7afc;
        }
        .btn-secondary:hover {
            background-color: rgba(157, 122, 252, 0.1);
        }
        .search-section {
            padding: 3rem 0;
            background-color: rgba(26, 20, 45, 0.7);
            border-radius: 15px;
            margin: 2rem auto;
            max-width: 900px;
        }
        .search-form {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1.2rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            background-color: #2a2352;
            color: #e6e6fa;
            font-size: 1.1rem;
        }
        .search-input::placeholder {
            color: #b0a8d9;
        }
        .search-btn {
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            background: linear-gradient(90deg, #ff6b9d, #9d7afc);
            color: white;
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: opacity 0.3s;
        }
        .search-btn:hover {
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(26, 20, 45, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid #2a2352;
        }
        article h2 {
            font-size: 2.5rem;
            margin: 2rem 0 1.5rem;
            color: #ffb6e6;
            border-bottom: 2px solid #3a2f6d;
            padding-bottom: 0.7rem;
        }
        article h3 {
            font-size: 1.8rem;
            margin: 1.8rem 0 1rem;
            color: #c2a7ff;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #d0c6f0;
        }
        article strong {
            color: #ffb6e6;
        }
        .highlight-box {
            background-color: #2a2352;
            border-left: 5px solid #9d7afc;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid #3a2f6d;
        }
        .img-caption {
            font-style: italic;
            color: #b0a8d9;
            margin-top: 0.8rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: rgba(26, 20, 45, 0.7);
            border-radius: 15px;
            padding: 1.8rem;
            border: 1px solid #2a2352;
        }
        .widget h3 {
            color: #ffb6e6;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            border-bottom: 1px solid #3a2f6d;
            padding-bottom: 0.5rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd166;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form input, .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #3a2f6d;
            background-color: #2a2352;
            color: #e6e6fa;
        }
        .rating-form button {
            width: 100%;
            padding: 0.9rem;
            border-radius: 8px;
            background: linear-gradient(90deg, #9d7afc, #6a4dcc);
            color: white;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .rating-form button:hover {
            opacity: 0.9;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            display: block;
            padding: 0.8rem 1rem;
            background-color: #2a2352;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        .quick-links a:hover {
            background-color: #3a2f6d;
        }
        .comments-section {
            margin-top: 4rem;
        }
        .comment {
            background-color: #2a2352;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: #b0a8d9;
        }
        .comment-author {
            font-weight: bold;
            color: #ffb6e6;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 3rem 0;
            border-top: 2px solid #2a2352;
            border-bottom: 2px solid #2a2352;
            margin-top: 3rem;
        }
        .web-link {
            background-color: rgba(26, 20, 45, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #2a2352;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #9d7afc;
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
        }
        footer {
            text-align: center;
            padding: 2.5rem 0;
            color: #b0a8d9;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2352;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            .main-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            article {
                padding: 1.5rem;
            }
            article h2 {
                font-size: 2rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                margin-bottom: 1rem;
            }
            .search-btn {
                border-radius: 50px;
                padding: 1rem;
            }
        }
