* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.7;
            padding: 0 20px;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd57;
            text-decoration: underline;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            background: #1a1a2e;
            padding: 0 30px 40px;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0 16px;
            border-bottom: 2px solid #f5c518;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c518, #ff7b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c518;
            color: #f5c518;
            font-size: 1.8rem;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c51822;
        }
        nav {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 6px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            background: #2a2a40;
            color: #ddd;
            transition: all 0.2s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #f5c518;
            color: #0f0f1a;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.9rem;
            color: #aaa;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #f5c518;
        }
        .breadcrumb span {
            color: #888;
        }
        h1 {
            font-size: 3rem;
            font-weight: 800;
            margin: 32px 0 16px;
            background: linear-gradient(135deg, #f5c518, #ff7b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #f5c518;
            border-left: 6px solid #ff7b00;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #ffdd57;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #f0c040;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d5d5e0;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #999;
            border-top: 1px solid #333;
            padding-top: 12px;
            margin-top: 40px;
        }
        .hero-img {
            margin: 28px 0 32px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(245, 197, 24, 0.15);
            background: #222;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-img img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }
        .hero-img img:hover {
            transform: scale(1.01);
        }
        .search-section {
            background: #252540;
            padding: 28px 32px;
            border-radius: 18px;
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            color: #f5c518;
        }
        .search-section input {
            flex: 1 1 260px;
            padding: 14px 20px;
            border-radius: 40px;
            border: none;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
            border: 2px solid #3a3a5a;
            transition: border 0.2s;
        }
        .search-section input:focus {
            outline: none;
            border-color: #f5c518;
        }
        .search-section button {
            padding: 14px 34px;
            border-radius: 40px;
            border: none;
            background: #f5c518;
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-section button:hover {
            background: #ffdd57;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        .comment-section,
        .score-section {
            background: #252540;
            padding: 28px 32px;
            border-radius: 18px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        .comment-section h3,
        .score-section h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 2px solid #3a3a5a;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            transition: border 0.2s;
        }
        .comment-section textarea:focus {
            outline: none;
            border-color: #f5c518;
        }
        .comment-section input,
        .score-section input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 40px;
            border: 2px solid #3a3a5a;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
            margin: 8px 0 14px;
            transition: border 0.2s;
        }
        .comment-section input:focus,
        .score-section input:focus {
            outline: none;
            border-color: #f5c518;
        }
        .comment-section button,
        .score-section button {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: #f5c518;
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-section button:hover,
        .score-section button:hover {
            background: #ffdd57;
            transform: scale(1.02);
        }
        .score-section select {
            padding: 12px 16px;
            border-radius: 40px;
            border: 2px solid #3a3a5a;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
            width: 100%;
            margin: 8px 0 14px;
        }
        friend-link {
            display: block;
            margin: 48px 0 20px;
            padding: 24px 28px;
            background: #1e1e34;
            border-radius: 18px;
            border: 1px solid #333;
        }
        friend-link h4 {
            color: #f5c518;
            margin-bottom: 14px;
            font-size: 1.2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 16px;
            background: #2a2a44;
            border-radius: 40px;
            font-size: 0.95rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #f5c518;
            color: #0f0f1a;
            text-decoration: none;
        }
        footer {
            text-align: center;
            padding: 28px 0 16px;
            border-top: 1px solid #333;
            margin-top: 32px;
            color: #999;
            font-size: 0.9rem;
        }
        footer a {
            color: #f5c518;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            .container {
                padding: 0 16px 30px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            header {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 8px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                text-align: center;
                padding: 12px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
            }
            .search-section input {
                flex: 1 1 auto;
            }
            .hero-img img {
                max-height: 260px;
            }
            .comment-section,
            .score-section {
                padding: 20px;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        .highlight {
            color: #f5c518;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #f5c518;
            color: #0f0f1a;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-right: 6px;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 8px;
        }
        .inline-links a {
            font-weight: 600;
            border-bottom: 1px dotted #f5c51855;
        }
        .inline-links a:hover {
            border-bottom-color: #f5c518;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 28px 0;
        }
        .stat-card {
            background: #252540;
            padding: 20px 16px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #3a3a5a;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f5c518;
        }
        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f5c518;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 4px;
        }
