* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0b1a;
            color: #e8e4e0;
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #ff8c42;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffaa66;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f2a 0%, #1a1a3e 100%);
            border-bottom: 2px solid #ff6b3555;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            padding: 12px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ff8c42, #ffc857);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #ff8c4240;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ff8c42;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.92;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #ff8c4266;
            color: #ff8c42;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #ff8c4220;
        }
        .nav-menu {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #cfcfdf;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #ffc857;
            border-bottom-color: #ff8c42;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 18px 0 6px;
            font-size: 0.85rem;
            color: #9a9ab0;
        }
        .breadcrumb a {
            color: #ff8c42aa;
        }
        .breadcrumb a:hover {
            color: #ffaa66;
        }
        .breadcrumb span {
            color: #c8c8d8;
        }
        .hero-image-wrap {
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px -8px #00000080;
            position: relative;
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .hero-image-wrap .img-credit {
            position: absolute;
            bottom: 8px;
            right: 14px;
            background: #00000077;
            color: #ddd;
            font-size: 0.7rem;
            padding: 2px 12px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
        }
        .content-wrap {
            padding: 20px 0 40px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #ffc857, #ff8c42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 10px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #ffc857;
            margin: 48px 0 16px;
            border-left: 5px solid #ff6b35;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: #f5d9a0;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #e8c88a;
            margin: 22px 0 8px;
        }
        p {
            margin: 0 0 18px;
            color: #d6d2e0;
        }
        .content-wrap ul,
        .content-wrap ol {
            margin: 0 0 22px 24px;
            color: #d6d2e0;
        }
        .content-wrap li {
            margin-bottom: 6px;
        }
        .highlight-box {
            background: #1a1a3a;
            border-left: 4px solid #ff8c42;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p {
            margin: 0;
        }
        .stat-badge {
            display: inline-block;
            background: #ff6b3522;
            border: 1px solid #ff6b3566;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #ffaa66;
            margin-right: 6px;
        }
        .search-section {
            background: #12122a;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0 32px;
            border: 1px solid #2a2a5a;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #3a3a6a;
            background: #1c1c3a;
            color: #f0f0f8;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #ff8c42;
            box-shadow: 0 0 0 3px #ff8c4222;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px #ff6b3544;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 32px;
        }
        .feedback-card {
            background: #12122a;
            border-radius: 16px;
            padding: 28px 30px;
            border: 1px solid #2a2a5a;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #3a3a6a;
            background: #1c1c3a;
            color: #f0f0f8;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #ff8c42;
            box-shadow: 0 0 0 3px #ff8c4222;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 24px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px #ff6b3544;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #4a4a7a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: 0.2s;
            color: #4a4a7a;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffc857;
            text-shadow: 0 0 16px #ffc85766;
        }
        .site-footer {
            background: #0a0a1e;
            border-top: 1px solid #2a2a5a;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            font-style: normal;
        }
        friend-link a {
            color: #b0b0cc;
            font-size: 0.9rem;
            border-bottom: 1px dotted #4a4a7a;
        }
        friend-link a:hover {
            color: #ffc857;
            border-bottom-color: #ff8c42;
            text-decoration: none;
        }
        .copyright {
            color: #7a7a9a;
            font-size: 0.85rem;
            border-top: 1px solid #1e1e3e;
            padding-top: 20px;
            text-align: center;
        }
        .copyright a {
            color: #ff8c42aa;
        }
        .last-update {
            font-size: 0.85rem;
            color: #8a8aaa;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-update i {
            color: #ff8c42;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #12122e;
                padding: 16px 20px;
                border-radius: 12px;
                border: 1px solid #2a2a5a;
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 8px 0;
                border-bottom: 1px solid #2a2a5a;
            }
            .nav-menu a:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .hero-image-wrap img {
                max-height: 240px;
            }
        }
        @media (min-width: 769px) {
            .nav-menu {
                display: flex !important;
            }
        }
        .text-muted {
            color: #8a8aaa;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-8 {
            gap: 8px;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .tag {
            display: inline-block;
            background: #2a2a5a;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #b8b8d0;
            margin: 2px 4px 2px 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #12122a;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a2a5a;
        }
        th {
            background: #1a1a3e;
            color: #ffc857;
            font-weight: 600;
        }
        td {
            color: #d6d2e0;
        }
        tr:last-child td {
            border-bottom: none;
        }
