        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a1f2e;
            --secondary: #2d3748;
            --accent: #c53030;
            --accent-light: #e53e3e;
            --text: #e2e8f0;
            --text-light: #a0aec0;
            --bg: #0f1419;
            --card-bg: #1e2530;
            --border: #4a5568;
            --success: #38a169;
            --warning: #d69e2e;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 1rem;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary);
            border-bottom: 2px solid var(--accent);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #c53030, #ecc94b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: var(--text);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--accent-light);
            text-decoration: none;
            border-bottom: 2px solid var(--accent-light);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--text);
            background: none;
            border: none;
        }
        .breadcrumb {
            background-color: var(--secondary);
            padding: 12px 0;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--text-light);
        }
        .search-section {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid var(--border);
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            background: var(--primary);
            color: var(--text);
            font-size: 1.1rem;
        }
        .search-input::placeholder {
            color: var(--text-light);
        }
        .search-button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: var(--accent-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fff;
            line-height: 1.2;
            border-left: 5px solid var(--accent);
            padding-left: 20px;
        }
        h2 {
            font-size: 2.2rem;
            margin: 45px 0 20px;
            color: #fff;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }
        h3 {
            font-size: 1.8rem;
            margin: 35px 0 15px;
            color: #f7fafc;
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: #e2e8f0;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-light);
            font-weight: 300;
            margin-bottom: 30px;
        }
        .highlight {
            background: rgba(197, 48, 48, 0.1);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-image {
            margin: 35px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid var(--border);
            max-width: 800px;
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background: var(--secondary);
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .sidebar {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--border);
        }
        .link-list a {
            display: block;
            padding: 8px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .link-list a:hover {
            background: var(--primary);
            text-decoration: none;
            transform: translateX(5px);
        }
        .rating-section,
        .comments-section {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-input,
        .form-textarea,
        .form-select {
            padding: 12px 15px;
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: var(--text-light);
            cursor: pointer;
        }
        .star:hover,
        .star.active {
            color: #f6e05e;
        }
        .submit-button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .submit-button:hover {
            background: var(--accent-light);
        }
        .site-footer {
            background-color: var(--primary);
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 2px solid var(--accent);
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #fff;
        }
        friend-link {
            display: block;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid var(--border);
            color: var(--text-light);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                gap: 30px;
                transition: left 0.5s ease;
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-body {
                padding: 25px;
            }
            .main-content {
                gap: 25px;
            }
        }
        .text-center {
            text-align: center;
        }
        .text-bold {
            font-weight: 700;
            color: #fff;
        }
        .last-updated {
            font-style: italic;
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 30px;
            display: block;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
