        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0d0d;
            color: #f0e6d0;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffb300;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ff8f00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fff4e0;
            letter-spacing: 0.01em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a1a 0%, #2a1f0f 100%);
            border-bottom: 3px solid #ff6d00;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(255, 109, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ff6d00;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #ff6d00, #ffb300);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 109, 0, 0.3);
            transition: transform 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #e0d5c0;
            transition: all 0.25s;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 109, 0, 0.2);
            color: #ffb300;
            text-decoration: none;
        }
        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: #ff6d00;
            border-radius: 4px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e6d0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #ff6d00;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.04);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            font-size: 0.85rem;
            color: #aaa;
        }
        .breadcrumb ol li+li::before {
            content: '›';
            margin-right: 10px;
            color: #ff6d00;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #d4c5a0;
        }
        .breadcrumb a:hover {
            color: #ffb300;
        }
        .breadcrumb .current {
            color: #ffb300;
            font-weight: 600;
        }
        .main-content {
            flex: 1;
            padding: 30px 0 50px;
        }
        .hero-image {
            margin: 20px 0 30px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(255, 109, 0, 0.2);
            background: #1e1a14;
        }
        .hero-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #bbb;
            background: #1a1510;
            text-align: center;
        }
        h1 {
            font-size: 2.8rem;
            margin: 0 0 10px;
            background: linear-gradient(135deg, #ff6d00, #ffb300);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            margin: 48px 0 16px;
            border-left: 6px solid #ff6d00;
            padding-left: 18px;
            color: #ffd699;
        }
        h3 {
            font-size: 1.5rem;
            margin: 32px 0 12px;
            color: #ffc266;
        }
        h4 {
            font-size: 1.2rem;
            margin: 24px 0 10px;
            color: #e6b380;
        }
        p {
            margin: 0 0 18px;
            color: #e0d5c0;
        }
        .lead {
            font-size: 1.2rem;
            color: #f5e6d0;
            font-weight: 400;
            border-left: 4px solid #ff6d00;
            padding-left: 20px;
            background: rgba(255, 109, 0, 0.06);
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
        }
        .content-list {
            margin: 12px 0 20px;
        }
        .content-list li {
            margin-bottom: 8px;
        }
        .content-list li strong {
            color: #ffb300;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e1a14, #2a1f10);
            border: 1px solid #ff6d0033;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .highlight-box h4 {
            margin-top: 0;
            color: #ffb300;
        }
        .info-badge {
            display: inline-block;
            background: #ff6d00;
            color: #0d0d0d;
            padding: 2px 14px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .search-section {
            background: #1a1510;
            border-radius: 20px;
            padding: 30px 28px;
            margin: 40px 0;
            border: 1px solid #2a1f0f;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
            margin-top: 12px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #3a2a1a;
            background: #0d0d0d;
            color: #f0e6d0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #ff6d00;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #ff6d00, #ff8f00);
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 24px rgba(255, 109, 0, 0.4);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        .feedback-card {
            background: #1a1510;
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid #2a1f0f;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-form textarea,
        .feedback-form input[type="number"],
        .feedback-form input[type="text"] {
            padding: 12px 16px;
            border-radius: 12px;
            border: 2px solid #3a2a1a;
            background: #0d0d0d;
            color: #f0e6d0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .feedback-form textarea:focus,
        .feedback-form input:focus {
            border-color: #ff6d00;
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form .star-group {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #555;
            cursor: pointer;
        }
        .feedback-form .star-group .fa-star.active {
            color: #ffb300;
        }
        .feedback-form .star-group .fa-star:hover,
        .feedback-form .star-group .fa-star:hover~.fa-star {
            color: #ffb300;
        }
        .feedback-form button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #ff6d00, #ff8f00);
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feedback-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 24px rgba(255, 109, 0, 0.3);
        }
        .rating-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffb300;
        }
        friend-link {
            display: block;
            background: #1a1510;
            border-radius: 20px;
            padding: 28px 24px;
            margin: 40px 0 20px;
            border: 1px solid #2a1f0f;
        }
        friend-link h3 {
            margin-top: 0;
            color: #ffd699;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        friend-link ul li a {
            padding: 6px 14px;
            background: rgba(255, 109, 0, 0.08);
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.25s;
        }
        friend-link ul li a:hover {
            background: rgba(255, 109, 0, 0.2);
            text-decoration: none;
        }
        .site-footer {
            background: #0a0806;
            border-top: 2px solid #1a1510;
            padding: 28px 0 20px;
            margin-top: 30px;
        }
        .site-footer .container {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: center;
            text-align: center;
        }
        .site-footer p {
            font-size: 0.85rem;
            color: #888;
            margin: 0;
        }
        .site-footer .copyright {
            color: #666;
            font-size: 0.8rem;
        }
        .site-footer .copyright strong {
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1510;
                border-radius: 16px;
                padding: 16px;
                margin-top: 10px;
                border: 1px solid #2a1f0f;
            }
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .header-inner {
                position: relative;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .container {
                padding: 0 14px;
            }
            .highlight-box {
                padding: 18px 16px;
            }
            .feedback-card {
                padding: 20px 16px;
            }
            .hero-image {
                margin: 12px 0 20px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .lead {
                font-size: 1rem;
                padding: 12px 16px;
            }
            .feedback-form .star-group {
                font-size: 1.3rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0d0d0d;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff6d00;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff8f00;
        }
        ::selection {
            background: #ff6d00;
            color: #0d0d0d;
        }
