* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e14;
            color: #e8eaf0;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .site-header {
            padding: 20px 0 10px;
            border-bottom: 2px solid #2a2f3a;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #e6a800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(245, 197, 66, 0.2);
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: #f5c542;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #8a8f9a;
            letter-spacing: 0.5px;
            font-weight: 400;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-toggle:hover {
            background: #f5c542;
            color: #0b0e14;
        }
        .main-nav {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            list-style: none;
        }
        .main-nav a {
            color: #c8ccd6;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .main-nav a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.85rem;
            color: #8a8f9a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #8a8f9a;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #c8ccd6;
        }
        .search-section {
            background: #161b24;
            padding: 24px 20px;
            border-radius: 16px;
            margin: 24px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            justify-content: center;
            border: 1px solid #2a2f3a;
        }
        .search-section input[type="text"] {
            flex: 1 1 260px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #3a3f4a;
            background: #0b0e14;
            color: #e8eaf0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        .search-section input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-section button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5c542, #d4941a);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .search-section button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(245, 197, 66, 0.4);
        }
        .content-wrapper {
            display: grid;
            gap: 40px;
            padding: 20px 0 40px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5c542;
            margin: 40px 0 16px;
            border-left: 6px solid #f5c542;
            padding-left: 20px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8eaf0;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c8ccd6;
            margin: 24px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d4de;
        }
        .featured-img {
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
        }
        .featured-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .highlight {
            background: #1e2530;
            padding: 20px 24px;
            border-radius: 14px;
            border-left: 6px solid #f5c542;
            margin: 24px 0;
        }
        .highlight strong {
            color: #f5c542;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 12px;
            margin: 20px 0 30px;
            padding: 0;
            list-style: none;
        }
        .link-list li {
            background: #161b24;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #2a2f3a;
            transition: border 0.3s ease;
        }
        .link-list li:hover {
            border-color: #f5c542;
        }
        .link-list i {
            color: #f5c542;
            margin-right: 10px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        .feedback-card {
            background: #161b24;
            padding: 24px 20px;
            border-radius: 16px;
            border: 1px solid #2a2f3a;
        }
        .feedback-card h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: #f5c542;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #3a3f4a;
            background: #0b0e14;
            color: #e8eaf0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s ease;
            margin-bottom: 14px;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f5c542;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5c542, #d4941a);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feedback-card button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3a3f4a;
            cursor: pointer;
            margin-bottom: 14px;
            transition: color 0.2s ease;
        }
        .rating-stars i {
            transition: color 0.2s ease;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5c542;
        }
        .site-footer {
            border-top: 2px solid #2a2f3a;
            padding: 32px 0 24px;
            margin-top: 40px;
        }
        .site-footer friend-link {
            display: block;
            margin-bottom: 20px;
            font-weight: 600;
            color: #f5c542;
        }
        .site-footer friend-link a {
            color: #c8ccd6;
            font-weight: 400;
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .site-footer friend-link a:hover {
            color: #f5c542;
        }
        .copyright {
            color: #6a6f7a;
            font-size: 0.85rem;
            text-align: center;
            padding-top: 16px;
            border-top: 1px solid #1e2530;
        }
        .last-updated {
            display: inline-block;
            background: #1e2530;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #8a8f9a;
            margin-bottom: 16px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f5c542;
        }
        @media (max-width: 768px) {
            .site-header {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }
            .nav-wrapper {
                justify-content: space-between;
            }
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                gap: 8px;
                padding: 12px 0 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 0;
                border-bottom: 1px solid #2a2f3a;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
            .search-section {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #f5c542;
            color: #0b0e14;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
            transition: transform 0.3s ease;
            cursor: pointer;
            border: none;
            z-index: 100;
        }
        .scroll-top:hover {
            transform: scale(1.1);
        }
        .tag {
            display: inline-block;
            background: #2a2f3a;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.75rem;
            color: #f5c542;
            margin-right: 6px;
        }
        .emoji-lg {
            font-size: 1.4rem;
            vertical-align: middle;
        }
