        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0d0f;
            color: #e2e6ea;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b48c5c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #e8c87a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f5e6d3;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #e8d5b0;
            border-bottom: 2px solid #3a2e22;
            padding-bottom: 0.4rem;
            margin: 2.5rem 0 1.2rem 0;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #d4bf9a;
            margin: 2rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c4ae88;
            margin: 1.5rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d5d9de;
        }
        .lead {
            font-size: 1.2rem;
            color: #f0e6d8;
            font-weight: 400;
            line-height: 1.8;
        }
        strong,
        b {
            color: #f5e6d3;
            font-weight: 600;
        }
        em {
            color: #c4ae88;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2f35;
            margin: 2rem 0;
        }
        .site-header {
            background: #14181c;
            border-bottom: 2px solid #2a2f35;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            background: rgba(12, 14, 16, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #e8d5b0;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #b48c5c, #e8c87a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo i {
            -webkit-text-fill-color: #b48c5c;
            font-size: 1.6rem;
        }
        .nav-list {
            display: flex;
            gap: 1.8rem;
            list-style: none;
            align-items: center;
        }
        .nav-list a {
            color: #c4c9cf;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-list a:hover {
            color: #e8d5b0;
            border-bottom-color: #b48c5c;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e2e6ea;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
        }
        .hamburger:hover {
            background: #2a2f35;
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~.nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            padding: 1rem 0 0.5rem 0;
            gap: 0.8rem;
        }
        .breadcrumb {
            background: #1a1e22;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            color: #9aa3ad;
            border-bottom: 1px solid #2a2f35;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin-right: 0.6rem;
            color: #5a636e;
        }
        .breadcrumb a {
            color: #b48c5c;
        }
        .breadcrumb .current {
            color: #c4c9cf;
        }
        .search-block {
            background: #1a1e22;
            border-radius: 10px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a2f35;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border-radius: 6px;
            border: 1px solid #3a3f45;
            background: #0b0d0f;
            color: #e2e6ea;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b48c5c;
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            background: #b48c5c;
            border: none;
            border-radius: 6px;
            color: #0b0d0f;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #e8c87a;
            transform: scale(1.02);
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .card {
            background: #1a1e22;
            border-radius: 12px;
            padding: 1.6rem 1.5rem;
            border: 1px solid #2a2f35;
            transition: border-color 0.3s, transform 0.2s;
        }
        .card:hover {
            border-color: #b48c5c;
            transform: translateY(-3px);
        }
        .card h3 {
            margin-top: 0;
        }
        .card i {
            color: #b48c5c;
            margin-right: 0.4rem;
        }
        .feature-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2f35;
            background: #1a1e22;
        }
        .feature-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #9aa3ad;
            font-style: italic;
        }
        .interactive-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        @media (max-width:720px) {
            .interactive-area {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #1a1e22;
            border-radius: 12px;
            padding: 1.8rem 1.8rem 2.2rem;
            border: 1px solid #2a2f35;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 6px;
            border: 1px solid #3a3f45;
            background: #0b0d0f;
            color: #e2e6ea;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            outline: none;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            border-color: #b48c5c;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 6px;
            border: 1px solid #3a3f45;
            background: #0b0d0f;
            color: #e2e6ea;
            font-size: 1rem;
            margin: 0.5rem 0 0.8rem 0;
            outline: none;
        }
        .comment-box input[type="text"]:focus {
            border-color: #b48c5c;
        }
        .btn {
            padding: 0.7rem 1.8rem;
            background: #b48c5c;
            border: none;
            border-radius: 6px;
            color: #0b0d0f;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #e8c87a;
            transform: scale(1.02);
        }
        .star-group {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #3a3f45;
            cursor: pointer;
            margin: 0.8rem 0 1rem 0;
            flex-wrap: wrap;
        }
        .star-group i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-group i:hover,
        .star-group i.active {
            color: #e8c87a;
            transform: scale(1.15);
        }
        .star-group i.selected {
            color: #e8c87a;
        }
        .site-footer {
            background: #14181c;
            border-top: 2px solid #2a2f35;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin-bottom: 1.8rem;
        }
        .site-footer h4 {
            color: #e8d5b0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .site-footer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .site-footer a {
            color: #9aa3ad;
            font-size: 0.95rem;
        }
        .site-footer a:hover {
            color: #e8c87a;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #2a2f35;
            font-size: 0.95rem;
            color: #9aa3ad;
        }
        friend-link a {
            color: #b48c5c;
            margin: 0 0.3rem;
        }
        .copyright {
            text-align: center;
            color: #6a737d;
            font-size: 0.85rem;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #22272b;
        }
        @media (max-width:768px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.8rem;
                padding: 0.5rem 0 0 0;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .feature-image img {
                max-height: 260px;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-block {
                padding: 1.2rem;
            }
        }
        .text-gold {
            color: #e8c87a;
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .mb-2 {
            margin-bottom: 1.2rem;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .badge {
            display: inline-block;
            background: #2a2f35;
            color: #c4ae88;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1e22;
            border-radius: 8px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th {
            background: #2a2f35;
            color: #e8d5b0;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #2a2f35;
            color: #d5d9de;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .highlight-box {
            background: #1e2328;
            border-left: 4px solid #b48c5c;
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
