* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0d13;
            color: #e8eaf0;
            line-height: 1.7;
            padding: 0 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #12161f;
            padding: 20px 24px 40px;
            border-radius: 28px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        }
        .my-logo {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f5c542, #f0a500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-transform: uppercase;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .top-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 8px;
            border-bottom: 2px solid #2a2f3e;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c542;
            font-size: 2rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1e2433;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 600;
            font-size: 1rem;
            padding: 6px 0;
            color: #c8cdd8;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.9rem;
            padding: 14px 0 6px;
            color: #8e95a8;
        }
        .breadcrumb a {
            color: #aab1c4;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #5f677a;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin: 32px 0 12px;
            line-height: 1.2;
            background: linear-gradient(135deg, #f5c542, #e8981a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #f0d080;
            border-left: 5px solid #f5c542;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e8c87a;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #d4b870;
        }
        p {
            margin: 16px 0;
            font-size: 1.05rem;
            color: #d5dae5;
        }
        .highlight {
            background: #1e2433;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 600;
            color: #f5c542;
        }
        .insight-box {
            background: #1b212e;
            border-left: 6px solid #f5c542;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 28px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .insight-box p {
            margin: 6px 0;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            background: #1a1f2c;
            padding: 18px 22px;
            border-radius: 16px;
            margin: 28px 0;
            list-style: none;
        }
        .link-list li a {
            font-weight: 500;
        }
        .link-list li a::before {
            content: "🦇 ";
            font-size: 0.9rem;
        }
        .search-block {
            background: #1a1f2c;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 32px 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .search-block input {
            flex: 1 1 220px;
            padding: 14px 18px;
            border-radius: 40px;
            border: none;
            background: #0b0d13;
            color: #e8eaf0;
            font-size: 1rem;
            outline: 1px solid #2f3649;
            transition: 0.3s;
        }
        .search-block input:focus {
            outline: 2px solid #f5c542;
            background: #10141e;
        }
        .search-block button {
            background: #f5c542;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            color: #0b0d13;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-block button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            background: #181d29;
            padding: 24px 28px;
            border-radius: 20px;
            margin: 36px 0 20px;
            border: 1px solid #2a3042;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            color: #f0d080;
        }
        .comment-section textarea,
        .comment-section input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: none;
            background: #0b0d13;
            color: #e8eaf0;
            font-size: 1rem;
            margin: 8px 0 14px;
            outline: 1px solid #2f3649;
            font-family: inherit;
            resize: vertical;
        }
        .comment-section textarea:focus,
        .comment-section input:focus {
            outline: 2px solid #f5c542;
        }
        .comment-section button,
        .rating-section button {
            background: #f5c542;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            color: #0b0d13;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 4px;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2.2rem;
            color: #3f475e;
            cursor: pointer;
            margin: 12px 0 16px;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c542;
            transform: scale(1.15);
        }
        .star-rating i.selected {
            color: #f5c542;
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #2a2f3e;
        }
        friend-link {
            display: block;
            background: #1a1f2c;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 20px 0 24px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            font-weight: 500;
        }
        .copyright {
            font-size: 0.9rem;
            color: #7f879e;
            text-align: center;
            padding: 20px 0 8px;
            border-top: 1px solid #262c3d;
            margin-top: 12px;
        }
        .copyright strong {
            color: #c8cdd8;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px 14px 32px;
            }
            .top-header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 6px 0;
                padding: 12px 0 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 10px 0;
                border-bottom: 1px solid #262c3d;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .search-block {
                flex-direction: column;
                align-items: stretch;
            }
            .search-block button {
                width: 100%;
                text-align: center;
            }
            .star-rating {
                font-size: 1.8rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .link-list {
                flex-direction: column;
                gap: 8px;
            }
            friend-link a {
                display: block;
                margin: 6px 0;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 6px;
            }
            .container {
                padding: 12px 10px 24px;
                border-radius: 18px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            p {
                font-size: 0.98rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .badge {
            background: #2a3042;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #f5c542;
            font-weight: 600;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1f2c;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a3042;
        }
        th {
            background: #242b3d;
            color: #f0d080;
            font-weight: 600;
        }
        tr:hover {
            background: #202638;
        }
        .btn-small {
            background: #f5c542;
            color: #0b0d13;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
            transition: 0.2s;
        }
        .btn-small:hover {
            background: #ffd966;
            transform: scale(1.04);
            text-decoration: none;
        }
        .flex-cols {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .flex-cols>div {
            flex: 1 1 280px;
        }
