        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0b1a;
            color: #f0e6d6;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #c39be1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b8b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a102a 0%, #2d1b4e 100%);
            padding: 20px 0;
            border-bottom: 3px solid #ff6b8b;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(45deg, #ff6b8b, #c39be1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #3a275d;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #c39be1;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #b8a9d9;
        }
        .breadcrumb a {
            color: #d4c4f4;
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(42, 26, 74, 0.7);
            border-radius: 12px;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            font-size: 2rem;
            color: #c39be1;
            margin: 30px 0 15px;
            border-left: 5px solid #ff6b8b;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #e6b3ff;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #2a1a4a;
            padding: 20px;
            border-left: 5px solid #ffcc00;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border: 3px solid #3a275d;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .feature-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .box {
            background: #1e1435;
            padding: 25px;
            border-radius: 10px;
            border-top: 4px solid #ff6b8b;
        }
        .search-box {
            background: #2d1b4e;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
        }
        .search-box form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            background: #f0e6d6;
            color: #1a102a;
        }
        .search-box button {
            padding: 15px 25px;
            background: #ff6b8b;
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff4a6e;
        }
        .comment-section, .rating-section {
            background: rgba(42, 26, 74, 0.8);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
        }
        .comment-section h2, .rating-section h2 {
            border-left-color: #00cc99;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #c39be1;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #3a275d;
            border-radius: 8px;
            background: #f0e6d6;
            color: #1a102a;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(45deg, #00cc99, #00aaff);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover, .star.active {
            color: #ffcc00;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: #2a1a4a;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #3a275d;
        }
        footer {
            background: #1a102a;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 3px solid #ff6b8b;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .copyright {
            color: #b8a9d9;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .longtail-links {
                grid-template-columns: repeat(3, 1fr);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #2d1b4e;
                padding: 20px;
                border-top: 2px solid #ff6b8b;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box input, .search-box button {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .longtail-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            .feature-box {
                grid-template-columns: 1fr;
            }
        }
