        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-purple: #7b2cbf;
            --secondary-pink: #ff3cac;
            --dark-bg: #0f0f23;
            --content-bg: #1a1a2e;
            --text-light: #f0f0f0;
            --text-muted: #aaa;
            --accent-cyan: #00d4ff;
            --border-color: #333366;
            --shadow: 0 4px 20px rgba(123, 44, 191, 0.3);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', Gadget, sans-serif;
            color: var(--accent-cyan);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            background: linear-gradient(90deg, var(--secondary-pink), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            border-left: 5px solid var(--secondary-pink);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            color: var(--secondary-pink);
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #ff9aee;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-pink);
            text-decoration: underline;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        em {
            color: #9dffad;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0b2e 100%);
            padding: 1rem 0;
            border-bottom: 2px solid var(--primary-purple);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff0080, #7b2cbf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        .my-logo i {
            margin-right: 10px;
            color: var(--secondary-pink);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover {
            background-color: rgba(123, 44, 191, 0.2);
            text-decoration: none;
            transform: translateY(-2px);
        }
        .main-nav a.active {
            background-color: var(--primary-purple);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 15px 0;
            margin-top: 5px;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-cyan);
        }
        main {
            padding: 30px 0 60px;
            background-color: var(--dark-bg);
        }
        .article-content {
            background-color: var(--content-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .intro {
            font-size: 1.3rem;
            border-left: 4px solid var(--accent-cyan);
            padding-left: 20px;
            margin-bottom: 2.5rem;
            background: rgba(0, 212, 255, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid var(--primary-purple);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .info-box {
            background: linear-gradient(145deg, #1a1a3a, #0f0f28);
            border-left: 5px solid var(--secondary-pink);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: var(--shadow);
        }
        .info-box h3 {
            margin-top: 0;
            color: #ff9aee;
        }
        .search-widget, .comments-widget, .rating-widget {
            background-color: var(--content-bg);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
        }
        .search-widget h3, .comments-widget h3, .rating-widget h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid var(--primary-purple);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(45deg, var(--primary-purple), var(--secondary-pink));
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(45deg, var(--secondary-pink), var(--primary-purple));
            transform: scale(1.05);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: gold;
        }
        .rating-stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: orange;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
            margin: 15px 0;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            background-color: var(--primary-purple);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form button:hover {
            background-color: var(--secondary-pink);
            transform: translateY(-3px);
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-section {
            background-color: var(--content-bg);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--border-color);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px;
            border-radius: 5px;
        }
        .related-links a:hover {
            background-color: rgba(123, 44, 191, 0.2);
            text-decoration: none;
        }
        footer {
            background: linear-gradient(180deg, #0a0a1a 0%, #000000 100%);
            padding: 50px 0 30px;
            border-top: 3px solid var(--primary-purple);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent-cyan);
            font-size: 1.5rem;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--secondary-pink);
            padding-bottom: 10px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(123, 44, 191, 0.2);
            padding: 8px 15px;
            border-radius: 5px;
            border: 1px solid var(--primary-purple);
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(123, 44, 191, 0.4);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .update-time {
            background-color: rgba(0, 212, 255, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin: 25px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 500px;
                margin-top: 20px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .main-nav a {
                padding: 12px 15px;
                justify-content: center;
            }
            .article-content, .sidebar-section, .search-widget, .comments-widget, .rating-widget {
                padding: 20px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .content-wrapper {
                gap: 25px;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(123, 44, 191, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(123, 44, 191, 0); }
            100% { box-shadow: 0 0 0 0 rgba(123, 44, 191, 0); }
        }
        .pulse-effect {
            animation: pulse 2s infinite;
        }
        .highlight {
            background-color: rgba(255, 60, 172, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            border-left: 3px solid var(--secondary-pink);
        }
