:root {
            --primary-purple: #6a0dad;
            --secondary-pink: #ff00ff;
            --dark-bg: #0f0a1a;
            --light-text: #f0e6ff;
            --accent-cyan: #00ffff;
            --card-bg: rgba(42, 21, 74, 0.85);
            --spacing-unit: 1rem;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.7;
            background-image: radial-gradient(circle at 15% 50%, rgba(106, 13, 173, 0.15) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--secondary-pink);
            text-shadow: 0 0 8px currentColor;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background-color: rgba(15, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-purple);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .my-logo a {
            background: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light-text);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 15px;
            border-left: 5px solid var(--secondary-pink);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--secondary-pink), var(--accent-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
            font-size: 0.95rem;
            color: #bbb;
        }
        .meta-info i {
            margin-right: 0.5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            font-size: 2.5rem;
            color: var(--secondary-pink);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--primary-purple);
        }
        .article-content h3 {
            font-size: 1.9rem;
            color: var(--accent-cyan);
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            font-size: 1.5rem;
            color: #d4a3ff;
            margin: 1.5rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content b, strong {
            color: var(--accent-cyan);
            font-weight: 700;
        }
        .article-content em {
            color: #ffb3ff;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.3), rgba(255, 0, 255, 0.2));
            border-left: 4px solid var(--accent-cyan);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-wrapper {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--primary-purple);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            margin-top: 0.8rem;
            font-size: 0.95rem;
            color: #aaa;
            font-style: italic;
        }
        .sidebar {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: var(--secondary-pink);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid var(--primary-purple);
            background: rgba(15, 10, 26, 0.8);
            color: var(--light-text);
            border-radius: 5px 0 0 5px;
            outline: none;
        }
        .search-form button {
            background: linear-gradient(45deg, var(--primary-purple), var(--secondary-pink));
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input, .comment-widget input, .comment-widget textarea {
            padding: 0.8rem;
            border: 1px solid var(--primary-purple);
            background: rgba(15, 10, 26, 0.8);
            color: var(--light-text);
            border-radius: 5px;
            outline: none;
        }
        .comment-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #555;
            margin: 0.5rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: gold;
        }
        .btn-submit {
            background: linear-gradient(45deg, var(--primary-purple), var(--accent-cyan));
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
        }
        .site-footer {
            background-color: rgba(10, 5, 20, 0.98);
            border-top: 2px solid var(--primary-purple);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(42, 21, 74, 0.5);
            border-radius: 10px;
            width: 100%;
        }
        .friend-links a {
            padding: 0.5rem 1rem;
            background: rgba(106, 13, 173, 0.3);
            border-radius: 5px;
        }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid #333;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            .hamburger {
                display: block;
            }
            .content-grid {
                gap: 2rem;
            }
            .article-content h2 {
                font-size: 2rem;
            }
            .article-content h3 {
                font-size: 1.6rem;
            }
        }
