:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-red: #e94560;
            --accent-cyan: #0fccce;
            --text-light: #f1f1f1;
            --text-gray: #b8b8b8;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            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.7;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 15% 50%, rgba(46, 49, 146, 0.1) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(233, 69, 96, 0.05) 0%, transparent 20%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-red);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-cyan), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }
        .logo a:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        .logo span {
            color: var(--text-light);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: var(--border-radius);
        }
        .nav-links a:hover {
            background-color: rgba(233, 69, 96, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: var(--text-gray);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-cyan);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(22, 33, 62, 0.7);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(233, 69, 96, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-cyan);
            line-height: 1.2;
            border-left: 5px solid var(--accent-red);
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--text-light);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(233, 69, 96, 0.4);
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: var(--accent-cyan);
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--text-gray);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-gray);
            margin-bottom: 2rem;
            padding: 1.5rem;
            background-color: rgba(15, 204, 206, 0.05);
            border-left: 4px solid var(--accent-cyan);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight {
            background-color: rgba(233, 69, 96, 0.1);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border-left: 4px solid var(--accent-red);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat {
            background-color: rgba(15, 204, 206, 0.08);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid rgba(15, 204, 206, 0.3);
        }
        .stat h4 {
            color: var(--accent-cyan);
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: var(--border-radius);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border: 2px solid var(--accent-red);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: var(--text-gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .content-link {
            font-weight: bold;
            color: var(--accent-red);
        }
        blockquote {
            font-style: italic;
            padding: 2rem;
            margin: 2.5rem 0;
            background-color: rgba(255, 255, 255, 0.03);
            border-left: 5px solid var(--accent-cyan);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        blockquote p:last-child {
            margin-bottom: 0;
            text-align: right;
            color: var(--accent-cyan);
            font-weight: 600;
        }
        aside {
            background-color: rgba(22, 33, 62, 0.7);
            padding: 2rem;
            border-radius: var(--border-radius);
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid rgba(233, 69, 96, 0.2);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(233, 69, 96, 0.4);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
        }
        .search-form input {
            padding: 0.9rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(0, 0, 0, 0.3);
            color: var(--text-light);
            margin-bottom: 0.8rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            padding: 0.9rem;
            background: linear-gradient(to right, var(--accent-cyan), var(--secondary-dark));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(to right, var(--accent-red), var(--accent-cyan));
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: var(--text-gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: gold;
        }
        .comment-form textarea {
            padding: 0.9rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(0, 0, 0, 0.3);
            color: var(--text-light);
            margin-bottom: 0.8rem;
            min-height: 120px;
            resize: vertical;
        }
        footer {
            background-color: var(--secondary-dark);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid var(--accent-red);
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--accent-cyan), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        friend-link {
            display: block;
            margin-bottom: 1.5rem;
        }
        friend-link a {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: rgba(15, 204, 206, 0.1);
            border-radius: var(--border-radius);
            border: 1px solid rgba(15, 204, 206, 0.3);
        }
        friend-link a:hover {
            background-color: rgba(233, 69, 96, 0.2);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 1rem;
            }
            nav {
                width: 100%;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0.5rem 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 1.5rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .bold {
            font-weight: 800;
            color: var(--accent-cyan);
        }
        .text-center {
            text-align: center;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
