        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0d0f12;
            color: #e2e6ea;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #f0f3f7;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f5b342;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #2a2e35;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f5b342;
        }
        h4 {
            font-size: 1.2rem;
            color: #cfd8e0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #14181c;
            padding: 16px 0;
            border-bottom: 2px solid #2a2e35;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            background: rgba(20, 24, 28, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f5b342;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5b342, #d98c2e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            -webkit-text-fill-color: #8a929c;
            color: #8a929c;
            display: block;
            font-style: italic;
        }
        nav.main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav.main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8ced6;
            background: transparent;
            transition: 0.2s;
        }
        nav.main-nav a:hover {
            background: #2a2e35;
            color: #f5b342;
            text-decoration: none;
        }
        nav.main-nav a.active {
            background: #f5b342;
            color: #0d0f12;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0f3f7;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #2a2e35;
        }
        .nav-open .main-nav {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 12px;
            background: #1a1f24;
            padding: 12px 0;
            border-radius: 12px;
        }
        .nav-open .main-nav a {
            padding: 12px 20px;
            border-radius: 0;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.85rem;
            color: #8a929c;
        }
        .breadcrumb a {
            color: #8a929c;
        }
        .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb span {
            margin: 0 6px;
        }
        .hero {
            background: linear-gradient(145deg, #111519, #1c2228);
            padding: 40px 0 30px;
            border-radius: 0 0 30px 30px;
            margin-bottom: 30px;
        }
        .hero h1 {
            font-size: 2.8rem;
            border-left-color: #f5b342;
            margin-top: 0;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #8a929c;
            font-size: 0.9rem;
            margin: 10px 0 16px;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #f5b342;
        }
        .hero img {
            margin: 24px 0 10px;
            border: 2px solid #2a2e35;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        section {
            margin-bottom: 40px;
        }
        .card {
            background: #171c21;
            border-radius: 16px;
            padding: 28px 30px;
            margin-bottom: 28px;
            border: 1px solid #262c33;
            transition: box-shadow 0.25s;
        }
        .card:hover {
            box-shadow: 0 6px 24px rgba(245, 179, 66, 0.06);
        }
        .card p:last-child {
            margin-bottom: 0;
        }
        .highlight {
            background: #1f262d;
            padding: 2px 8px;
            border-radius: 6px;
            color: #f5b342;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 10px;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 16px 0;
        }
        .tag-list a {
            background: #1f262d;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            border: 1px solid #2a2e35;
            transition: 0.2s;
        }
        .tag-list a:hover {
            background: #2a2e35;
            border-color: #f5b342;
            text-decoration: none;
        }
        .key-table {
            width: 100%;
            border-collapse: collapse;
            margin: 18px 0;
            font-size: 0.9rem;
        }
        .key-table th {
            background: #1f262d;
            color: #f5b342;
            padding: 12px 16px;
            text-align: left;
            border-bottom: 2px solid #2a2e35;
        }
        .key-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #232930;
        }
        .key-table tr:hover td {
            background: #1a1f24;
        }
        .key-table .rarity {
            font-weight: 600;
        }
        .rarity-common {
            color: #8a929c;
        }
        .rarity-rare {
            color: #5b9bd5;
        }
        .rarity-epic {
            color: #c77dff;
        }
        .rarity-legendary {
            color: #f5b342;
        }
        .search-box {
            display: flex;
            gap: 10px;
            max-width: 600px;
            margin: 18px 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #2a2e35;
            background: #0d0f12;
            color: #e2e6ea;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
            min-width: 200px;
        }
        .search-box input:focus {
            border-color: #f5b342;
            box-shadow: 0 0 0 4px rgba(245, 179, 66, 0.15);
        }
        .search-box button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: #f5b342;
            color: #0d0f12;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box button:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .comment-box,
        .rating-box {
            background: #171c21;
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid #262c33;
            margin: 18px 0;
        }
        .comment-box textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px 18px;
            border-radius: 12px;
            border: 2px solid #2a2e35;
            background: #0d0f12;
            color: #e2e6ea;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: 0.25s;
            margin-bottom: 12px;
        }
        .comment-box textarea:focus {
            border-color: #f5b342;
        }
        .comment-box input[type="text"] {
            width: 100%;
            max-width: 360px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 2px solid #2a2e35;
            background: #0d0f12;
            color: #e2e6ea;
            font-size: 0.9rem;
            outline: none;
            transition: 0.25s;
            margin-bottom: 12px;
        }
        .comment-box input:focus {
            border-color: #f5b342;
        }
        .comment-box button,
        .rating-box button {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: #f5b342;
            color: #0d0f12;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #3a3f48;
            cursor: pointer;
            margin: 10px 0 14px;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #14181c;
            padding: 24px 28px;
            border-radius: 16px;
            border: 1px solid #262c33;
            margin: 30px 0 20px;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #f5b342;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #8a929c;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f5b342;
        }
        footer {
            background: #14181c;
            border-top: 2px solid #2a2e35;
            padding: 30px 0 20px;
            margin-top: 40px;
            text-align: center;
        }
        footer .copyright {
            color: #6a727c;
            font-size: 0.85rem;
            margin-top: 10px;
        }
        footer .copyright i {
            color: #f5b342;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            nav.main-nav {
                display: none;
                width: 100%;
            }
            .header-inner.nav-open .main-nav {
                display: flex;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .card {
                padding: 20px 18px;
            }
            .key-table {
                font-size: 0.75rem;
            }
            .key-table th,
            .key-table td {
                padding: 6px 8px;
            }
            .search-box input {
                min-width: 140px;
            }
            .container {
                padding: 0 12px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
                padding-left: 0.8rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .search-box button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            .comment-box textarea {
                min-height: 70px;
            }
        }
        .badge {
            display: inline-block;
            background: #f5b342;
            color: #0d0f12;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-muted {
            color: #8a929c;
        }
        .text-gold {
            color: #f5b342;
        }
        .fw-700 {
            font-weight: 700;
        }
        .gap-8 {
            gap: 8px;
        }
        .table-wrap {
            overflow-x: auto;
        }
        .inline-icon {
            margin-right: 6px;
            color: #f5b342;
        }
        .hr-light {
            border: none;
            border-top: 1px solid #262c33;
            margin: 28px 0;
        }
