* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #141a24;
            border-radius: 24px;
            padding: 20px 28px 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0 12px;
            border-bottom: 2px solid #2c3a4a;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c842, #f9e076);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 8px rgba(245, 200, 66, 0.3);
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #8a9bb5;
            color: #8a9bb5;
            letter-spacing: 2px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-bar {
            display: flex;
            gap: 12px 24px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-bar a {
            color: #cbd5e1;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-bar a:hover {
            color: #f5c842;
            border-bottom-color: #f5c842;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #f5c842;
            padding: 4px 8px;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: #8a9bb5;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #8a9bb5;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #cbd5e1;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 900;
            margin: 24px 0 16px;
            background: linear-gradient(135deg, #f5c842, #f9e076);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #f5c842;
            border-left: 6px solid #f5c842;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 36px 0 14px;
            color: #e8edf5;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 26px 0 10px;
            color: #cbd5e1;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #dce3ef;
        }
        .highlight {
            background: #1f2a38;
            padding: 4px 12px;
            border-radius: 6px;
            font-weight: 600;
            color: #f5c842;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .feature-img {
            margin: 28px 0 32px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            background: #1f2a38;
            padding: 18px 22px;
            border-radius: 16px;
            margin: 28px 0;
            align-items: center;
        }
        .search-box label {
            font-weight: 600;
            color: #f5c842;
            font-size: 1.05rem;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: none;
            border-radius: 30px;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: 0.2s;
        }
        .search-box input[type="text"]:focus {
            outline-color: #f5c842;
        }
        .search-box button {
            padding: 12px 28px;
            background: #f5c842;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            color: #0b0e14;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 36px 0 28px;
        }
        .comment-box,
        .score-box {
            background: #1f2a38;
            padding: 22px 24px;
            border-radius: 18px;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            font-size: 1.4rem;
            color: #f5c842;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 14px;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            min-height: 100px;
            resize: vertical;
            outline: 2px solid transparent;
            transition: 0.2s;
        }
        .comment-box textarea:focus {
            outline-color: #f5c842;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 14px;
            border: none;
            border-radius: 30px;
            background: #0b0e14;
            color: #e8edf5;
            margin: 8px 0 12px;
            outline: 2px solid transparent;
        }
        .comment-box input[type="text"]:focus {
            outline-color: #f5c842;
        }
        .comment-box button,
        .score-box button {
            padding: 10px 24px;
            background: #f5c842;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #ffdd77;
        }
        .score-box .stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #4a5a6e;
            cursor: pointer;
            margin: 10px 0 14px;
            flex-wrap: wrap;
        }
        .score-box .stars i {
            transition: 0.2s;
        }
        .score-box .stars i:hover,
        .score-box .stars i.active {
            color: #f5c842;
            transform: scale(1.1);
        }
        .score-box input[type="hidden"] {
            display: none;
        }
        friend-link {
            display: block;
            padding: 20px 0 12px;
            border-top: 2px solid #2c3a4a;
            margin-top: 32px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #8a9bb5;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        footer {
            padding: 24px 0 12px;
            border-top: 2px solid #2c3a4a;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #6a7a8e;
            text-align: center;
        }
        footer small {
            display: block;
            margin-top: 6px;
        }
        .last-update {
            display: inline-block;
            background: #1f2a38;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #8a9bb5;
            margin: 12px 0;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 20px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1f2a38;
                padding: 16px 20px;
                border-radius: 16px;
                margin-top: 12px;
                gap: 12px;
            }
            .nav-bar a {
                font-size: 1.05rem;
                padding: 8px 0;
                border-bottom: 1px solid #2c3a4a;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
            header {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-box {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box input[type="text"] {
                min-width: auto;
            }
            .score-box .stars {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none;
            }
            .nav-bar {
                display: flex;
            }
        }
        .btn-icon {
            background: none;
            border: none;
            color: #f5c842;
            font-size: 1.2rem;
            cursor: default;
        }
        .inline-link {
            font-weight: 600;
            color: #f5c842;
        }
        .blockquote-like {
            background: #1a2330;
            padding: 18px 22px;
            border-radius: 14px;
            border-left: 6px solid #f5c842;
            margin: 22px 0;
            font-style: italic;
        }
        .stat-badge {
            display: inline-block;
            background: #2c3a4a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f5c842;
            margin: 0 4px;
        }
