:root {
            --primary-color: #0f1923;
            --accent-color: #d13639;
            --secondary-color: #1a242d;
            --light-color: #ece8e1;
            --text-color: #b8bbb3;
            --spacing-unit: 1rem;
            --border-radius: 8px;
            --transition-speed: 0.3s;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--primary-color);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: var(--light-color);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background-color: var(--secondary-color);
            padding: 1rem 0;
            border-bottom: 2px solid var(--accent-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2rem;
            color: var(--light-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo span {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-color);
            font-weight: 600;
        }
        .hamburger-menu {
            display: none;
            font-size: 1.8rem;
            color: var(--light-color);
            background: none;
            border: none;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-color);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            border-top: 1px solid #333;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem 0;
            border-bottom: 1px solid #2a3a48;
            color: var(--text-color);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .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-body {
            background-color: rgba(26, 36, 45, 0.7);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3, h4 {
            color: var(--light-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #d13639;
        }
        h3 {
            font-size: 1.6rem;
        }
        h4 {
            font-size: 1.3rem;
            font-style: italic;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        strong {
            color: var(--light-color);
            font-weight: 700;
        }
        em {
            color: #ffcc00;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--secondary-color), #252f3a);
            border-left: 5px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .inline-img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 1.5rem auto;
            display: block;
            border: 2px solid #333;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #888;
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--secondary-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 0.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;
            color: var(--light-color);
            font-weight: 600;
        }
        input, textarea, select {
            padding: 0.8rem;
            background-color: #2a3a48;
            border: 1px solid #3a4a58;
            border-radius: var(--border-radius);
            color: var(--light-color);
            font-size: 1rem;
        }
        button, .btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color var(--transition-speed);
            text-align: center;
        }
        button:hover, .btn:hover {
            background-color: #a82c2e;
            text-decoration: none;
        }
        .stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .stars input {
            display: none;
        }
        .stars label {
            color: #555;
            transition: color var(--transition-speed);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ffcc00;
        }
        .site-footer {
            background-color: var(--secondary-color);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid var(--accent-color);
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #3a4a58;
            color: #888;
            font-size: 0.9rem;
            width: 100%;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; }
