:root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff3e80;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #80d0ff;
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff3e80, #6a11cb);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .my-logo a {
            background: none;
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(106, 17, 203, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            flex-direction: column;
            padding: 20px;
            gap: 15px;
            display: none;
            z-index: 999;
            border-top: 1px solid var(--primary);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #333;
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(37, 117, 252, 0.05);
            margin-bottom: 30px;
            border-radius: 0 0 10px 10px;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 10px;
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--gray);
        }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(90deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
            border-radius: 15px;
            border-left: 5px solid var(--accent);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ff7e5f, #6a11cb);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .article-body {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-body {
                grid-template-columns: 1fr;
            }
        }
        .article-text {
            background-color: rgba(26, 26, 46, 0.7);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        h2 {
            font-size: 2.2rem;
            color: #80d0ff;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(128, 208, 255, 0.3);
        }
        h3 {
            font-size: 1.8rem;
            color: #a78bfa;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #f0abfc;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            font-weight: 500;
            color: #cbd5e1;
            background-color: rgba(37, 117, 252, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 35px;
            border-left: 4px solid var(--secondary);
        }
        .highlight {
            background-color: rgba(255, 62, 128, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid var(--accent);
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--primary);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -20px;
            margin-bottom: 30px;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.8em;
        }
        strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #a5b4fc;
            border-left: 4px solid #6a11cb;
            padding-left: 25px;
            margin: 30px 0;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--accent);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
            color: #80d0ff;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--primary);
            border-radius: 8px 0 0 8px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffcc00;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 15px;
        }
        .rating-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 10px rgba(0, 0, 0, 0.2);
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #444;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: flex;
            align-items: center;
        }
        .related-links i {
            margin-right: 10px;
            color: var(--accent);
        }
        .comments-section {
            margin-top: 50px;
            background-color: rgba(26, 26, 46, 0.7);
            padding: 40px;
            border-radius: 15px;
        }
        .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: #a5b4fc;
        }
        .form-group input,
        .form-group textarea {
            padding: 15px;
            border-radius: 8px;
            border: 2px solid #444;
            background-color: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            padding: 18px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
            min-width: 200px;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(106, 17, 203, 0.4);
        }
        .site-footer {
            background-color: rgba(10, 10, 20, 0.98);
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff3e80, #6a11cb);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .friend-links a {
            background-color: rgba(37, 117, 252, 0.2);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
        }
        .friend-links a:hover {
            background-color: rgba(37, 117, 252, 0.4);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #333;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .last-updated {
            color: var(--accent);
            font-weight: bold;
            margin: 20px 0;
            padding: 10px;
            background-color: rgba(255, 62, 128, 0.1);
            border-radius: 5px;
            display: inline-block;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border-radius: 30px;
            font-weight: bold;
            text-align: center;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            color: white;
        }
        @media (max-width: 768px) {
            .article-text, .widget, .comments-section {
                padding: 25px;
            }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            h4 { font-size: 1.3rem; }
            p { font-size: 1rem; }
        }
