        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #2c2b28;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b8860b;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
        }
        ul,
        ol {
            padding-left: 1.4rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #1e1d1a;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #b8860b;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #b8860b;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #3d3b37;
        }
        h4 {
            font-size: 1.15rem;
            color: #4d4a45;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong {
            color: #1e1d1a;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .highlight-box {
            background: #fff8e1;
            border-left: 6px solid #b8860b;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .emoji-big {
            font-size: 1.6rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .site-header {
            background: #1e1d1a;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffd700;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            color: #ffed4a;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #ccc;
            letter-spacing: 0.3px;
            display: block;
            line-height: 1;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8e4de;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #b8860b;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 215, 0, 0.15);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #eeeae3;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            color: #555;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.2rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #999;
        }
        .breadcrumb a {
            color: #b8860b;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .active {
            color: #555;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #2c2b28 0%, #1e1d1a 100%);
            color: #f5f0e8;
            padding: 2.8rem 0 2.4rem;
            border-bottom: 6px solid #b8860b;
        }
        .hero h1 {
            color: #ffd700;
            border-bottom-color: #b8860b;
            margin-top: 0;
            font-size: 2.6rem;
        }
        .hero p {
            font-size: 1.15rem;
            color: #d4cfc8;
            max-width: 800px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            margin-top: 1rem;
            font-size: 0.95rem;
            color: #b8b2a8;
        }
        .hero-meta i {
            margin-right: 0.4rem;
            color: #ffd700;
        }
        .last-updated {
            background: rgba(255, 215, 0, 0.12);
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            color: #ffd700;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            font-size: 0.95rem;
            min-width: 600px;
        }
        thead {
            background: #1e1d1a;
            color: #ffd700;
        }
        th {
            padding: 0.9rem 1rem;
            text-align: left;
            font-weight: 700;
            border-bottom: 3px solid #b8860b;
        }
        td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e8e2d8;
        }
        tr:nth-child(even) {
            background: #faf8f4;
        }
        tr:hover td {
            background: #fff3d6;
        }
        .cost-gold {
            color: #b8860b;
            font-weight: 700;
        }
        .cost-elixir {
            color: #8a2be2;
            font-weight: 700;
        }
        .cost-dark {
            color: #2c3e50;
            font-weight: 700;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2rem 2.4rem;
            margin: 2.4rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e2d8;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            max-width: 640px;
            margin-top: 0.8rem;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d9d2c8;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fcfaf7;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #9e7409;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.4rem 0;
        }
        .feedback-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e2d8;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d9d2c8;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            background: #fcfaf7;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b8860b;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card .btn-submit:hover {
            background: #9e7409;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin-bottom: 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #1e1d1a;
            color: #e8e4de;
            padding: 2rem 0;
            margin-top: 2rem;
            border-top: 6px solid #b8860b;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            align-items: center;
            justify-content: center;
        }
        friend-link a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 500;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 215, 0, 0.12);
            text-decoration: underline;
        }
        friend-link .fl-label {
            font-weight: 600;
            color: #b8b2a8;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            width: 100%;
            text-align: center;
        }
        .site-footer {
            background: #11100e;
            color: #b8b2a8;
            padding: 2rem 0 1.6rem;
            font-size: 0.9rem;
            text-align: center;
        }
        .site-footer .copyright {
            color: #88837a;
            margin-top: 0.4rem;
            border-top: 1px solid #2c2b28;
            padding-top: 1rem;
        }
        .site-footer a {
            color: #ffd700;
            text-decoration: none;
        }
        .site-footer a:hover {
            text-decoration: underline;
        }
        @media (max-width: 820px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #2c2b28;
                padding: 0.8rem 0.4rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.6rem;
            }
            .main-nav a {
                padding: 0.6rem 1.2rem;
                border-radius: 8px;
            }
            #nav-toggle:checked+.hamburger+.main-nav {
                display: flex;
            }
            #nav-toggle:checked+.hamburger {
                background: rgba(255, 215, 0, 0.1);
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .table-wrap table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
            .search-section {
                padding: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .text-center {
            text-align: center;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .img-frame {
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin: 1.6rem 0;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #777;
            text-align: center;
            margin-top: 0.3rem;
            font-style: italic;
        }
        .inline-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
        }
        .inline-list li::before {
            content: "⚡";
            margin-right: 0.3rem;
            color: #b8860b;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.6rem;
            margin: 1.6rem 0;
        }
        .card-sm {
            background: #fff;
            border-radius: 14px;
            padding: 1.2rem 1.4rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #eeeae3;
            transition: transform 0.15s, box-shadow 0.2s;
        }
        .card-sm:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .card-sm h4 {
            margin-top: 0;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b8860b;
            color: #fff;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: background 0.2s, transform 0.15s;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .btn-top:hover {
            background: #9e7409;
            transform: scale(1.05);
        }
