:root {
            --primary: #9d4edd;
            --secondary: #560bad;
            --accent: #f72585;
            --dark: #10002b;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0a1d 0%, #1a0938 100%);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
            padding-top: 80px;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff66a8;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(16, 0, 43, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary);
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: -0.5px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 30px;
            position: relative;
        }
        .nav-desktop a:hover {
            background: rgba(157, 78, 221, 0.15);
            text-decoration: none;
        }
        .nav-desktop a i {
            margin-right: 8px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light);
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: var(--shadow);
            border-top: 1px solid var(--primary);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb i {
            margin: 0 10px;
        }
        .article-header {
            text-align: center;
            padding: 40px 0 30px;
            border-bottom: 2px dashed var(--primary);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(to right, #ff6ec7, #9d4edd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .lead {
            font-size: 1.4rem;
            color: #b19cd9;
            max-width: 800px;
            margin: 0 auto 25px;
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .meta span i {
            margin-right: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 9, 56, 0.7);
            border-radius: var(--border-radius);
            padding: 35px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(157, 78, 221, 0.2);
        }
        h2 {
            font-size: 2.5rem;
            color: #c77dff;
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            font-size: 1.8rem;
            color: #e0aaff;
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #b388eb;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(247, 37, 133, 0.1);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .img-container {
            margin: 30px auto;
            text-align: center;
        }
        .feature-img {
            max-width: 100%;
            border-radius: var(--border-radius);
            border: 3px solid var(--primary);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.7);
        }
        .caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(26, 9, 56, 0.7);
            border-radius: var(--border-radius);
            padding: 25px;
            border: 1px solid rgba(157, 78, 221, 0.2);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
            color: var(--accent);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid var(--primary);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background: rgba(255,255,255,0.05);
            color: var(--light);
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--secondary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: gold;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            transition: var(--transition);
        }
        .rating-form button:hover {
            opacity: 0.9;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            padding: 12px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            display: block;
            padding: 8px 10px;
            border-radius: 8px;
        }
        .link-list a:hover {
            background: rgba(157, 78, 221, 0.15);
            text-decoration: none;
        }
        .comment-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid var(--secondary);
        }
        .comment-form {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #e0aaff;
        }
        .form-group input,
        .form-group textarea {
            padding: 15px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(157, 78, 221, 0.5);
            background: rgba(255,255,255,0.05);
            color: var(--light);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 16px 30px;
            background: linear-gradient(to right, var(--accent), #ff3d8b);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(247, 37, 133, 0.3);
        }
        .site-footer {
            background: rgba(10, 5, 25, 0.95);
            margin-top: 80px;
            padding: 50px 0 30px;
            border-top: 3px solid var(--primary);
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            padding: 25px;
            background: rgba(157, 78, 221, 0.05);
            border-radius: var(--border-radius);
        }
        .friend-links a {
            padding: 10px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 30px;
            border: 1px solid rgba(157, 78, 221, 0.3);
            font-weight: 600;
        }
        .friend-links a:hover {
            background: rgba(157, 78, 221, 0.2);
            text-decoration: none;
            transform: translateY(-3px);
        }
        .footer-bottom {
            text-align: center;
            color: var(--gray);
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.95rem;
        }
        .footer-bottom a {
            color: var(--gray);
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            article, .widget {
                padding: 25px 20px;
            }
        }
