:root {
            --primary-dark: #0d0d15;
            --primary-accent: #8a2be2;
            --secondary-accent: #ff4500;
            --text-light: #f0f0f0;
            --text-dim: #b0b0c0;
            --card-bg: #1a1a2e;
            --border-color: #333344;
            --gradient: linear-gradient(135deg, var(--primary-accent) 0%, #4b0082 50%, var(--primary-dark) 100%);
            --shadow: 0 8px 32px rgba(138, 43, 226, 0.2);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--secondary-accent);
            text-shadow: 0 0 8px rgba(255, 69, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--gradient);
            padding: 1.5rem 0;
            border-bottom: 3px solid var(--secondary-accent);
            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-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(to right, #fff, var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            animation: glow 1s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--secondary-accent); }
            to { text-shadow: 0 0 20px #fff, 0 0 30px var(--secondary-accent), 0 0 40px var(--secondary-accent); }
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--card-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-dim);
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.2;
            border-left: 5px solid var(--secondary-accent);
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--primary-accent);
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--border-color);
        }
        h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--text-dim);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.3rem;
            color: var(--text-dim);
            font-style: italic;
            border-left: 3px solid var(--primary-accent);
            padding-left: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 4px solid var(--secondary-accent);
        }
        .highlight p {
            margin-bottom: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            border: 2px solid var(--border-color);
            transition: transform 0.5s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-dim);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            margin: 2.5rem 0;
            padding: 2rem;
            background: var(--gradient);
            border-radius: 15px;
            font-size: 1.3rem;
            font-style: italic;
            position: relative;
            box-shadow: var(--shadow);
        }
        blockquote::before {
            content: "\f10d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: -15px;
            left: 20px;
            font-size: 3rem;
            color: rgba(255,255,255,0.2);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 1.8rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--secondary-accent);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 0.8rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background-color: rgba(255,255,255,0.1);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: white;
        }
        .search-button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: var(--secondary-accent);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: gold;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .form-input, .form-textarea {
            padding: 0.8rem;
            background-color: rgba(255,255,255,0.1);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .form-submit:hover {
            transform: translateY(-3px);
        }
        .links-list {
            list-style: none;
            margin-left: 0;
        }
        .links-list li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted var(--border-color);
        }
        .links-list li:last-child {
            border-bottom: none;
        }
        .links-list a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .links-list i {
            color: var(--primary-accent);
        }
        .site-footer {
            background: var(--gradient);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--secondary-accent);
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        friend-link:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: var(--text-dim);
            font-size: 0.9rem;
            width: 100%;
        }
        .update-time {
            background-color: rgba(255, 69, 0, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: inline-block;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: var(--secondary-accent);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .my-logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: var(--secondary-accent);
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
