:root {
            --primary-color: #1a1a2e;
            --accent-color: #c92c2c;
            --accent-light: #e63946;
            --text-primary: #f1faee;
            --text-secondary: #a8dadc;
            --background-dark: #0f0f1a;
            --background-card: #16213e;
            --border-color: #2d3047;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--background-dark);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(201, 44, 44, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(168, 218, 220, 0.03) 0%, transparent 20%);
            padding-bottom: 2rem;
        }
        a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: var(--accent-light);
            border-bottom-color: var(--accent-light);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            border-bottom: 2px solid var(--accent-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            background: linear-gradient(45deg, #c92c2c, #e63946);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding: 5px 0;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            background-color: rgba(22, 33, 62, 0.5);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .breadcrumb a:first-child {
            margin-left: 0;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--background-card);
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        h1, h2, h3, h4 {
            color: var(--text-secondary);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--accent-color);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 1rem;
            margin-top: 0;
            text-align: center;
        }
        h2 {
            font-size: 2.4rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-primary);
        }
        h4 {
            font-size: 1.4rem;
            color: #8ecae6;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-secondary);
            font-style: italic;
            border-left: 4px solid var(--accent-light);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(201, 44, 44, 0.15) 0%, transparent 100%);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            margin: 2rem 0;
        }
        .quote {
            font-family: 'Crimson Text', serif;
            font-size: 1.4rem;
            color: #a8dadc;
            text-align: center;
            padding: 2rem;
            margin: 3rem 0;
            border-top: 2px dashed var(--border-color);
            border-bottom: 2px dashed var(--border-color);
            position: relative;
        }
        .quote::before {
            content: "“";
            font-size: 5rem;
            color: var(--accent-color);
            position: absolute;
            top: -1rem;
            left: 1rem;
            opacity: 0.5;
        }
        .quote::after {
            content: "”";
            font-size: 5rem;
            color: var(--accent-color);
            position: absolute;
            bottom: -2.5rem;
            right: 1rem;
            opacity: 0.5;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--border-color);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .featured-img:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        }
        .img-caption {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.8rem;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        strong {
            color: var(--accent-light);
            font-weight: 700;
        }
        em {
            color: #8ecae6;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--border-color), transparent);
            margin: 3rem 0;
        }
        aside {
            background-color: var(--background-card);
            border-radius: 12px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-secondary);
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background-color: rgba(26, 26, 46, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-primary);
            font-family: inherit;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(201, 44, 44, 0.2);
        }
        button, .btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(201, 44, 44, 0.3);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .update-info {
            background-color: rgba(26, 26, 46, 0.7);
            padding: 1rem;
            border-radius: 8px;
            margin-top: 3rem;
            text-align: center;
            border: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        footer {
            margin-top: 5rem;
            background-color: var(--primary-color);
            border-top: 2px solid var(--accent-color);
            padding: 3rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent-light);
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
                border-bottom: 1px solid var(--border-color);
            }
            nav a {
                display: block;
                padding: 1rem;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 2rem 1.5rem;
            }
            aside {
                position: static;
            }
        }
