        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0a1a;
            color: #e6e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #b19cd9;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff79c6;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        header {
            background: linear-gradient(135deg, #1a0f2e 0%, #0f0a1a 100%);
            border-bottom: 2px solid #332a54;
            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: 800;
            background: linear-gradient(to right, #ff79c6, #b19cd9);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(177, 156, 217, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #b19cd9;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a0f2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #332a54;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .breadcrumb {
            background-color: #1a0f2e;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #332a54;
        }
        .breadcrumb a {
            color: #b19cd9;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 8px;
        }
        .hero {
            background: radial-gradient(circle at 20% 50%, #2d1b4e 0%, transparent 50%), radial-gradient(circle at 80% 20%, #1a0f2e 0%, transparent 50%);
            text-align: center;
            padding: 80px 20px;
            border-bottom: 3px solid #ff79c6;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff79c6, #b19cd9);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #c9c1e0;
        }
        .content-section {
            background-color: rgba(26, 15, 46, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-left: 5px solid #ff79c6;
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: #b19cd9;
            border-bottom: 2px solid #332a54;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #ff79c6;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 121, 198, 0.1);
            border-left: 4px solid #ff79c6;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #1f1238, #2a1a4a);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #332a54;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 121, 198, 0.2);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ff79c6;
            margin-bottom: 15px;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid #b19cd9;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        .search-box {
            background-color: #1a0f2e;
            border: 2px solid #b19cd9;
            border-radius: 50px;
            padding: 15px 25px;
            display: flex;
            max-width: 500px;
            margin: 30px auto;
        }
        .search-box input {
            flex-grow: 1;
            background: transparent;
            border: none;
            color: #e6e0ff;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #b19cd9;
            color: #0f0a1a;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #ff79c6;
        }
        .user-interaction {
            background-color: #1a0f2e;
            border-radius: 15px;
            padding: 30px;
            margin-top: 50px;
            border: 1px solid #332a54;
        }
        .rating {
            margin-bottom: 30px;
        }
        .stars {
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            background-color: #0f0a1a;
            border: 1px solid #332a54;
            border-radius: 10px;
            padding: 15px;
            color: #e6e0ff;
            font-size: 1rem;
            min-height: 150px;
            margin-bottom: 15px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #ff79c6, #b19cd9);
            color: #0f0a1a;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 121, 198, 0.4);
        }
        .longtail-links {
            background-color: #1a0f2e;
            padding: 40px 20px;
            border-top: 2px solid #332a54;
            border-bottom: 2px solid #332a54;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #0f0a1a;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #b19cd9;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #1f1238;
        }
        footer {
            text-align: center;
            padding: 30px;
            color: #888;
            font-size: 0.9rem;
            background-color: #0a0515;
        }
        .footer-links {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h2 {
                font-size: 2rem;
            }
            .content-section {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
