* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #f7b731;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 16px 0;
            border-bottom: 3px solid #f7b731;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(247, 183, 49, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(to right, #f7b731, #ff8a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 12px rgba(247, 183, 49, 0.25);
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.1);
        }
        .logo-sub {
            font-size: 0.75rem;
            color: #aaa;
            display: block;
            -webkit-text-fill-color: #aaa;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f7b731;
            cursor: pointer;
            padding: 4px 10px;
        }
        .nav-menu {
            display: flex;
            gap: 10px 22px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #ddd;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #f7b731;
            border-bottom-color: #f7b731;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a1a2e;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a3e;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0 20px;
            max-width: 1160px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb .active {
            color: #f7b731;
        }
        main {
            padding: 32px 0 48px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(to right, #f7b731, #ff8a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f7b731;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #2a2a3e;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #ffd966;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #e0b354;
            margin-top: 1.4rem;
            margin-bottom: 0.3rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0d0e0;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding: 12px 0;
            border-top: 1px solid #2a2a3e;
            border-bottom: 1px solid #2a2a3e;
        }
        .meta-info i {
            margin-right: 6px;
            color: #f7b731;
        }
        .hero-img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 16px;
            margin: 1.2rem 0 1.8rem;
            box-shadow: 0 12px 40px rgba(247, 183, 49, 0.12);
            border: 1px solid #2a2a3e;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 1.8rem 0;
        }
        .card {
            background: #1a1a2e;
            padding: 24px 20px;
            border-radius: 14px;
            border: 1px solid #2a2a3e;
            transition: 0.25s ease;
        }
        .card:hover {
            border-color: #f7b731;
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(247, 183, 49, 0.08);
        }
        .card h3 {
            margin-top: 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-left: 5px solid #f7b731;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 8px;
        }
        .search-section {
            background: #1a1a2e;
            padding: 28px 24px;
            border-radius: 16px;
            margin: 2.5rem 0;
            border: 1px solid #2a2a3e;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 600px;
            margin-top: 12px;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 14px 18px;
            border-radius: 40px;
            border: 1px solid #3a3a4e;
            background: #0f0f1a;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f7b731;
            box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(to right, #f7b731, #ff8a00);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(247, 183, 49, 0.3);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 2.8rem 0;
        }
        @media (max-width: 700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .rating-section {
            background: #1a1a2e;
            padding: 24px 22px;
            border-radius: 16px;
            border: 1px solid #2a2a3e;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1px solid #3a3a4e;
            background: #0f0f1a;
            color: #eee;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #f7b731;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 40px;
            border: 1px solid #3a3a4e;
            background: #0f0f1a;
            color: #eee;
            font-size: 0.95rem;
            margin: 10px 0;
            outline: none;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f7b731;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(to right, #f7b731, #ff8a00);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 6px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(247, 183, 49, 0.25);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7b731;
        }
        .site-footer {
            background: #0a0a14;
            border-top: 2px solid #1a1a2e;
            padding: 40px 0 24px;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #f7b731;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-col a {
            color: #aaa;
            display: block;
            padding: 3px 0;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #f7b731;
        }
        friend-link {
            display: block;
            margin-top: 8px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            color: #666;
            font-size: 0.85rem;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid #1a1a2e;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 0;
                border-bottom: 1px solid #2a2a3e;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .search-form input[type="text"],
            .search-form button {
                width: 100%;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a4e;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f7b731;
        }
