:root {
            --primary-purple: #6a11cb;
            --secondary-pink: #ff00cc;
            --accent-yellow: #f9c74f;
            --dark-bg: #0f0a1e;
            --light-bg: #1a152e;
            --text-light: #f0e6ff;
            --text-muted: #b8a9d6;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2d1b69 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(15, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-purple);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2rem;
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            font-weight: 900;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: var(--primary-purple);
            color: white;
            transform: translateY(-3px);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 15px;
            width: 0;
            height: 3px;
            background: var(--accent-yellow);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: calc(100% - 30px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--light-bg);
            border-top: 2px solid var(--primary-purple);
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-light);
            text-decoration: none;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            color: var(--accent-yellow);
            padding-left: 10px;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            background-color: rgba(26, 21, 46, 0.7);
            margin-top: 10px;
            border-radius: var(--border-radius);
        }
        .breadcrumb a {
            color: var(--accent-yellow);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 40px;
            border: 1px solid rgba(106, 17, 203, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        h1, h2, h3, h4 {
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            line-height: 1.3;
            margin-bottom: 1.2rem;
            color: #fff;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ff00cc, #6a11cb);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid var(--primary-purple);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: var(--accent-yellow);
            margin-top: 2.5rem;
            padding-left: 15px;
            border-left: 5px solid var(--secondary-pink);
        }
        h3 {
            font-size: 1.6rem;
            color: #b8a9ff;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--accent-yellow);
            background: rgba(249, 199, 79, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-yellow);
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(106, 17, 203, 0.2), transparent);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 25px 0;
            border: 1px dashed var(--primary-purple);
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        strong {
            color: var(--accent-yellow);
            font-weight: 700;
        }
        a.content-link {
            color: #80d0ff;
            text-decoration: none;
            border-bottom: 1px dotted #80d0ff;
            transition: var(--transition);
        }
        a.content-link:hover {
            color: #ff80bf;
            border-bottom: 1px solid #ff80bf;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 30px auto;
            display: block;
            border: 3px solid var(--primary-purple);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 35px rgba(106, 17, 203, 0.4);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 25px;
            border: 1px solid rgba(255, 0, 204, 0.2);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--secondary-pink);
            border-bottom: 2px solid;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--primary-purple);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-pink));
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, var(--secondary-pink), var(--primary-purple));
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ccc;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars span {
            transition: var(--transition);
            margin: 0 3px;
        }
        .stars span:hover,
        .stars span.active {
            color: var(--accent-yellow);
            text-shadow: 0 0 10px rgba(249, 199, 79, 0.7);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--primary-purple);
            border-radius: var(--border-radius);
            color: var(--text-light);
            font-size: 1rem;
            min-height: 120px;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, var(--primary-purple), #2575fc);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #2575fc, var(--primary-purple));
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: right;
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        footer {
            background-color: var(--dark-bg);
            border-top: 2px solid var(--primary-purple);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        friend-link a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
            padding: 5px 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: var(--accent-yellow);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 25px;
            }
            .header-content, .container {
                padding: 0 15px;
            }
        }
