* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #0d0b0f;
            color: #e8e3df;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }
        a:hover {
            color: #f5a623;
            opacity: 0.85;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a141c 0%, #0d0b0f 100%);
            border-bottom: 2px solid #f5a62330;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #f5a62320;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            background: none;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .main-nav a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 0;
            position: relative;
            color: #d4cfd9;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: #f5a623;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .main-nav a.active {
            color: #f5a623;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: #f5a623;
            background: none;
            border: none;
            padding: 4px 8px;
            transition: transform 0.2s ease;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            padding: 14px 0 6px 0;
            font-size: 0.85rem;
            color: #a09aa8;
        }
        .breadcrumb a {
            color: #c0b7cb;
        }
        .breadcrumb a:hover {
            color: #f5a623;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #5f5568;
        }
        .hero-figure {
            margin: 28px 0 36px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(245, 166, 35, 0.10);
            background: #1f1925;
            position: relative;
        }
        .hero-figure img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
            border-bottom: 3px solid #f5a62340;
        }
        .hero-figure figcaption {
            padding: 14px 22px;
            font-size: 0.9rem;
            color: #c5bcd0;
            background: #1a141c;
            font-style: italic;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            margin: 0.5em 0 0.3em 0;
            background: linear-gradient(135deg, #f5a623, #f7d06a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 700;
            margin: 1.8em 0 0.6em 0;
            color: #f5c542;
            border-left: 5px solid #f5a623;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.4em 0 0.5em 0;
            color: #e8d5b0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1em 0 0.4em 0;
            color: #d4bf9a;
        }
        p {
            margin: 0.9em 0;
            color: #ddd8e2;
        }
        strong,
        b {
            color: #f7e1b5;
            font-weight: 700;
        }
        em {
            color: #e6cba0;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #a09aa8;
            background: #1f1925;
            padding: 4px 16px;
            border-radius: 30px;
            margin-bottom: 12px;
            border: 1px solid #2f2735;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f5a623;
        }
        .content-section {
            padding: 18px 0 30px 0;
            border-bottom: 1px solid #2a2230;
        }
        .content-section:last-of-type {
            border-bottom: none;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1f1925, #2a1f2e);
            border-left: 4px solid #f5a623;
            padding: 20px 26px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p {
            margin: 0.4em 0;
        }
        .link-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 12px 0;
        }
        .link-group a {
            color: #f5c542;
            border-bottom: 1px dotted #f5a62360;
            font-weight: 500;
        }
        .link-group a:hover {
            border-bottom-color: #f5a623;
        }
        .search-block {
            background: #1a141c;
            border-radius: 12px;
            padding: 28px 30px;
            margin: 36px 0 20px 0;
            border: 1px solid #2f2735;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }
        .search-block label {
            font-weight: 600;
            color: #f5c542;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-block input[type="text"] {
            flex: 1 1 220px;
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid #3f3548;
            background: #0d0b0f;
            color: #e8e3df;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s ease;
        }
        .search-block input[type="text"]:focus {
            border-color: #f5a623;
        }
        .search-block button {
            padding: 12px 30px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #d98f1a);
            color: #0d0b0f;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }
        .search-block button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px #f5a62340;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 36px 0 20px 0;
        }
        .feedback-card {
            background: #1a141c;
            border-radius: 14px;
            padding: 28px 30px;
            border: 1px solid #2f2735;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #f5c542;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #3f3548;
            background: #0d0b0f;
            color: #e8e3df;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s ease;
            margin: 8px 0 14px 0;
            resize: vertical;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f5a623;
        }
        .feedback-card textarea {
            min-height: 90px;
        }
        .feedback-card button {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #d98f1a);
            color: #0d0b0f;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }
        .feedback-card button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px #f5a62330;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            margin: 8px 0 14px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3f3548;
            transition: color 0.2s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .star-rating label i {
            font-size: 1.8rem;
        }
        .comments-display {
            margin-top: 20px;
            border-top: 1px solid #2f2735;
            padding-top: 18px;
        }
        .comment-item {
            background: #0d0b0f;
            border-radius: 10px;
            padding: 14px 18px;
            margin-bottom: 12px;
            border-left: 3px solid #f5a62350;
        }
        .comment-item .c-author {
            font-weight: 600;
            color: #f5c542;
        }
        .comment-item .c-text {
            color: #ccc6d4;
            margin-top: 4px;
        }
        .comment-item .c-time {
            font-size: 0.75rem;
            color: #7a7285;
        }
        friend-link {
            display: block;
            padding: 24px 0 16px 0;
            border-top: 1px solid #2a2230;
            margin-top: 30px;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #f5c542;
            margin-bottom: 12px;
            display: block;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
        }
        friend-link .fl-list a {
            color: #c0b7cb;
            border-bottom: 1px dotted #3f3548;
            padding-bottom: 2px;
        }
        friend-link .fl-list a:hover {
            color: #f5a623;
            border-bottom-color: #f5a623;
        }
        .site-footer {
            background: #0a080c;
            border-top: 2px solid #1f1925;
            padding: 36px 0 28px 0;
            margin-top: 40px;
            text-align: center;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            color: #7a7285;
        }
        .site-footer .copyright strong {
            color: #c0b7cb;
        }
        .site-footer .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin-bottom: 16px;
        }
        .site-footer .footer-links a {
            color: #a09aa8;
            font-size: 0.9rem;
        }
        .site-footer .footer-links a:hover {
            color: #f5a623;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a141c;
                padding: 18px 20px;
                border-radius: 0 0 14px 14px;
                border: 1px solid #2f2735;
                border-top: none;
                gap: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.05rem;
                padding: 8px 0;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 2.0rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-block {
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
            }
            .search-block input[type="text"] {
                flex: 1 1 auto;
            }
            .hero-figure img {
                max-height: 260px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .feedback-card {
                padding: 18px 16px;
            }
            .search-block {
                padding: 16px;
            }
        }
        .fade-in {
            animation: fadeUp 0.6s ease forwards;
            opacity: 0;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(18px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .tag {
            display: inline-block;
            background: #2a1f2e;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #c5bcd0;
            border: 1px solid #3f3548;
            margin: 2px 4px;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2230;
            margin: 30px 0;
        }
