:root {
        --primary-dark: #2a0a3a;
        --primary-purple: #5d2d91;
        --accent-teal: #2a9d8f;
        --accent-pink: #e63976;
        --text-light: #f8f9fa;
        --text-muted: #adb5bd;
        --bg-card: #1a1423;
        --border-color: #3d2b52;
        --shadow: 0 8px 32px rgba(106, 13, 173, 0.2);
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    body {
        background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
        color: var(--text-light);
        line-height: 1.8;
        font-size: 1.1rem;
        overflow-x: hidden;
    }
    a {
        color: var(--accent-teal);
        text-decoration: none;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }
    a:hover {
        color: var(--accent-pink);
        text-shadow: 0 0 8px rgba(230, 57, 118, 0.5);
    }
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .site-header {
        background-color: rgba(26, 20, 35, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 1rem 0;
    }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .my-logo {
        font-family: 'Palatino Linotype', 'Book Antiqua', serif;
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(to right, #e63976, #a882dd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .my-logo:hover {
        transform: scale(1.03);
    }
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--accent-teal);
        border-radius: 2px;
        transition: 0.3s;
    }
    .nav-menu {
        display: flex;
        gap: 2rem;
        list-style: none;
    }
    .nav-menu a {
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        border: 1px solid transparent;
    }
    .nav-menu a:hover {
        border-color: var(--accent-pink);
        background: rgba(230, 57, 118, 0.1);
    }
    .breadcrumb {
        padding: 1rem 0;
        font-size: 0.9rem;
        color: var(--text-muted);
    }
    .breadcrumb a:not(:last-child)::after {
        content: '›';
        margin: 0 10px;
        color: var(--accent-teal);
    }
    .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: var(--bg-card);
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-color);
    }
    h1 {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(90deg, #e63976, #a882dd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
    }
    h2 {
        font-size: 2.2rem;
        color: var(--accent-teal);
        margin: 2.5rem 0 1.2rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px dashed var(--border-color);
    }
    h3 {
        font-size: 1.7rem;
        color: var(--accent-pink);
        margin: 2rem 0 1rem;
    }
    h4 {
        font-size: 1.3rem;
        color: var(--text-muted);
        margin: 1.5rem 0 0.8rem;
    }
    p {
        margin-bottom: 1.5rem;
        text-align: justify;
    }
    .lead {
        font-size: 1.4rem;
        color: #c8b6e2;
        font-weight: 300;
        margin-bottom: 2.5rem;
        padding-left: 1rem;
        border-left: 4px solid var(--accent-pink);
    }
    .highlight {
        background: rgba(42, 157, 143, 0.15);
        border-left: 5px solid var(--accent-teal);
        padding: 1.5rem;
        border-radius: 0 10px 10px 0;
        margin: 2rem 0;
    }
    .image-wrapper {
        margin: 2.5rem auto;
        text-align: center;
        max-width: 800px;
    }
    .article-img {
        width: 100%;
        border-radius: 15px;
        border: 2px solid var(--primary-purple);
        box-shadow: 0 12px 24px rgba(0,0,0,0.5);
        transition: transform 0.5s ease;
    }
    .article-img:hover {
        transform: scale(1.02);
    }
    .caption {
        font-size: 0.95rem;
        color: var(--text-muted);
        margin-top: 0.8rem;
        font-style: italic;
    }
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .widget {
        background: var(--bg-card);
        border-radius: 15px;
        padding: 1.8rem;
        border: 1px solid var(--border-color);
    }
    .widget h3 {
        font-size: 1.5rem;
        margin-top: 0;
        color: var(--accent-teal);
    }
    .search-form, .comment-form, .rating-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    input, textarea, select {
        padding: 0.9rem;
        background: rgba(255,255,255,0.07);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        color: var(--text-light);
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: var(--accent-pink);
        box-shadow: 0 0 0 3px rgba(230, 57, 118, 0.2);
    }
    button {
        background: linear-gradient(90deg, var(--accent-pink), var(--primary-purple));
        color: white;
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(230, 57, 118, 0.3);
    }
    .stars {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        font-size: 2rem;
        margin: 1rem 0;
    }
    .stars i {
        cursor: pointer;
        color: #444;
        transition: color 0.2s;
    }
    .stars i:hover,
    .stars i.active {
        color: gold;
    }
    .link-list {
        list-style: none;
    }
    .link-list li {
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px dotted var(--border-color);
    }
    .link-list a::before {
        content: '➤';
        margin-right: 10px;
        color: var(--accent-pink);
    }
    .update-time {
        font-size: 0.9rem;
        color: var(--accent-teal);
        text-align: right;
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    .site-footer {
        background-color: var(--primary-dark);
        border-top: 1px solid var(--border-color);
        padding: 3rem 0 2rem;
        margin-top: 3rem;
    }
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    friend-link {
        display: block;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .copyright {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid var(--border-color);
        color: var(--text-muted);
        font-size: 0.9rem;
    }
    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }
        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--bg-card);
            padding: 1rem;
            border-top: 1px solid var(--border-color);
        }
        .nav-menu.active {
            display: flex;
        }
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 1.9rem;
        }
        article {
            padding: 1.5rem;
        }
    }
