        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0b1f;
            color: #f0e6ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #9d7aff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff77cc;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #7a5af5, #ff6b9d);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(122, 90, 245, 0.4);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(122, 90, 245, 0.6);
        }
        .site-header {
            background: rgba(15, 11, 31, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a1f4d;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff77cc, #9d7aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(157, 122, 255, 0.3);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff77cc;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #9d7aff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #b8a9e6;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .breadcrumb a:first-child {
            margin-left: 0;
        }
        .search-section {
            background: linear-gradient(90deg, #1a1535, #2a1f4d);
            padding: 40px 0;
            text-align: center;
            border-radius: 12px;
            margin: 30px 0;
        }
        .search-form {
            max-width: 600px;
            margin: 20px auto 0;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #7a5af5;
            border-radius: 50px 0 0 50px;
            background: #0f0b1f;
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #7a5af5, #ff6b9d);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #6a4ae5, #ff5b8d);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        .article-content {
            background: rgba(26, 21, 53, 0.7);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            background: rgba(26, 21, 53, 0.7);
            border-radius: 16px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ff77cc, #9d7aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #c8b4ff;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a2c6d;
        }
        h3 {
            font-size: 1.7rem;
            margin: 30px 0 15px;
            color: #d9c9ff;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: #e6dcff;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #ffaaff;
            font-weight: 800;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(122, 90, 245, 0.15), rgba(255, 107, 157, 0.15));
            border-left: 5px solid #ff77cc;
            padding: 25px;
            border-radius: 0 12px 12px 0;
            margin: 30px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #b8a9e6;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-section {
            background: rgba(42, 31, 77, 0.8);
            border-radius: 16px;
            padding: 35px;
            margin-top: 50px;
        }
        .rating-form, .comment-form {
            margin-top: 25px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 2rem;
            color: #444;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star.active,
        .star-rating .star:hover {
            color: #ffcc00;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 15px;
            margin: 10px 0 20px;
            background: #0f0b1f;
            border: 2px solid #3a2c6d;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .site-footer {
            background: #090614;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 2px solid #2a1f4d;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #ff77cc;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        friend-link a {
            display: inline-block;
            background: rgba(122, 90, 245, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid #7a5af5;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a1f4d;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 11, 31, 0.98);
                padding: 20px;
                border-top: 2px solid #2a1f4d;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .article-content {
                padding: 25px;
            }
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mt-40 { margin-top: 40px; }
        .emoji { font-size: 1.2em; }
