/*  ╔═══════════════════════════════════════════════════════════╗
    ║  V2 STYLE — allyonogems.com inspired clean, light theme   ║
    ╚═══════════════════════════════════════════════════════════╝
*/

/* ── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    background: #eef1f5;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: 100%;
}

body.v2-body {
    background: #eef1f5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ╔══════════════════════════════════════════════════════╗
   ║  HEADER  (brand + nav)                               ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-header {
    background: #fff;
    border-bottom: 1px solid #e3e7ee;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

/* ── Premium gradient brand row ───────────────────────── */
.v2-brand-row {
    background:
        radial-gradient(ellipse at top left,  rgba(255, 200, 50, .18), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(120, 50, 200, .35), transparent 60%),
        linear-gradient(135deg, #0a0e35 0%, #1a1f6a 45%, #3a1a8a 100%);
    padding: 14px 16px;
    position: relative;
    overflow: hidden;
}

/* subtle shine accent line at bottom */
.v2-brand-row::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd24a, #ff7a00, #ffd24a, transparent);
    opacity: .85;
}

.v2-brand-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* ── Highlighted brand text ───────────────────────────── */
.v2-brand {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .3px;
    text-decoration: none !important;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, .55),
        0 0 18px rgba(255, 184, 50, .25);
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    transition: transform .2s;
}
.v2-brand:hover { transform: translateY(-1px); }

.v2-brand-1 { color: #ffffff; }
.v2-brand-2 {
    background: linear-gradient(180deg, #ffe169 0%, #ff9a1a 60%, #ff6b00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 0 2px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
}
.v2-brand-3 { color: #ffffff; }

/* ── Telegram icon (right side) ───────────────────────── */
.v2-brand-tg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    border-radius: 50%;
    transition: transform .2s, box-shadow .2s;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, .18),
        0 4px 12px rgba(0, 0, 0, .4);
    background: transparent;
}
.v2-brand-tg:hover {
    transform: scale(1.08) rotate(-4deg);
    box-shadow:
        0 0 0 3px rgba(255, 220, 100, .55),
        0 6px 18px rgba(55, 174, 226, .55);
}
.v2-brand-tg svg { display: block; }

.v2-navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4px 0 10px;
    flex-wrap: wrap;
    gap: 4px;
}

.v2-nav-item {
    text-align: center;
    font-size: 12px;
    color: #1a1a1a;
    line-height: 1.2;
    text-decoration: none !important;
    padding: 4px 6px;
    transition: opacity .15s;
}

.v2-nav-item i {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.v2-nav-item:hover { opacity: .55; }

@media (min-width: 700px) {
    .v2-brand { font-size: 32px; }
    .v2-brand-tg svg { width: 50px; height: 50px; }
    .v2-brand-row { padding: 20px 24px; }
    .v2-nav-item { font-size: 14px; padding: 6px 14px; }
    .v2-nav-item i { font-size: 18px; }
}

@media (max-width: 380px) {
    .v2-brand { font-size: 20px; }
    .v2-brand-tg svg { width: 38px; height: 38px; }
    .v2-brand-row { padding: 12px 12px; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  MAIN  (page wrapper)                                ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

@media (min-width: 700px) {
    .v2-main { padding: 16px; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  HERO BANNER                                         ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-banner {
    width: 100%;
    margin: 6px 0 12px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.v2-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  TABS  (All Apps / Best Apps)                        ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-tabs-wrap {
    display: flex;
    justify-content: center;
    padding: 12px 0 8px;
}

.v2-tabs {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.v2-tab {
    padding: 6px 40px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    border: 2px solid #0000ff;
    background: #fff;
    color: #0000ff;
    white-space: nowrap;
    transition: transform .2s, background .2s, color .2s;
    text-decoration: none !important;
}
.v2-tab.active {
    background: #0000ff;
    color: #fff;
}
.v2-tab:hover { transform: scale(1.03); }

@media (min-width: 600px) {
    .v2-tabs { gap: 28px; }
    .v2-tab { padding: 6px 70px; font-size: 14px; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  PAGE H1                                             ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-h1 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 14px 0 8px;
    padding: 0 8px;
    letter-spacing: .2px;
}

@media (min-width: 700px) {
    .v2-h1 { font-size: 22px; margin: 18px 0 10px; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  GAME LIST CARDS  (numbered, blue border)            ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 14px;
}

.v2-empty {
    grid-column: 1/-1;
    color: #888;
    padding: 28px 0;
    text-align: center;
    font-size: 14px;
}

.v2-card {
    background: #fff;
    border: 1.5px solid #007bff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: box-shadow .15s, transform .15s;
}
.v2-card:hover {
    box-shadow: 0 4px 12px rgba(0, 123, 255, .12);
    transform: translateY(-1px);
}

.v2-card-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    text-decoration: none !important;
    color: inherit;
}

.v2-num {
    font-size: 13px;
    margin-right: 5px;
    color: #888;
    flex-shrink: 0;
    min-width: 24px;
}

.v2-card-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: cover;
}

.v2-card-info {
    margin-left: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.v2-card-name {
    margin: 0 0 2px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* tags (Sign-Up Bonus / Min Withdraw) */
.v2-tag {
    font-size: 10px;
    background: #e6fffa;
    color: #0a4a3a;
    padding: 2px 6px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 2px;
    margin-right: 4px;
    line-height: 1.4;
}

.v2-dl-btn {
    background: #e8222e;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 16px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .15s, transform .15s;
    box-shadow: 0 2px 6px rgba(232, 34, 46, .25);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.v2-dl-btn:hover { background: #c91d29; transform: translateY(-1px); }
.v2-dl-btn-disabled {
    background: #aaa;
    cursor: not-allowed;
    pointer-events: none;
    opacity: .7;
}

@media (min-width: 700px) {
    .v2-card { padding: 12px 15px; }
    .v2-card-name { font-size: 16px; }
    .v2-tag { font-size: 11px; padding: 3px 8px; }
    .v2-dl-btn { font-size: 14px; padding: 9px 16px; border-radius: 18px; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  RED BOX  (Full-width info box)                      ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-red-box {
    border: 2px solid #e8222e;
    padding: 12px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    margin: 14px 0;
}

.v2-red-box h2 {
    color: #e8222e;
    font-size: 17px;
    margin: 0 0 6px;
    text-align: center;
    font-weight: 700;
}

.v2-red-box p {
    margin: 0;
    text-align: center;
    line-height: 1.6;
    color: #1a1a1a;
}

@media (max-width: 600px) {
    .v2-red-box { font-size: 12px; padding: 10px; }
    .v2-red-box h2 { font-size: 15px; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  IMPORTANT NOTICE                                    ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-notice {
    background: #fff8e6;
    border: 1px solid #f5d488;
    border-radius: 8px;
    padding: 14px 14px 10px;
    margin: 16px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #5a3a00;
}

.v2-notice-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 8px;
    text-decoration: underline;
    font-size: 14px;
}

.v2-notice-head i { color: #e67e22; font-size: 16px; }

.v2-notice p { margin: 4px 0; color: #4a3000; }
.v2-notice a { color: #0000ff; text-decoration: underline; }

/* ╔══════════════════════════════════════════════════════╗
   ║  GAME PAGE HERO                                      ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-breadcrumb {
    font-size: 12px;
    color: #555;
    padding: 8px 0 4px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.v2-breadcrumb a { color: #0000ff; }
.v2-breadcrumb a:hover { text-decoration: underline; }
.v2-breadcrumb span:last-of-type { color: #1a1a1a; font-weight: 600; }

.v2-game-hero {
    background: #fff;
    border: 1.5px solid #007bff;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    margin: 10px 0 16px;
}

.v2-game-icon {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    margin: 0 auto 10px;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.12);
}

.v2-game-name {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
}

.v2-game-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
}

.v2-tag-big {
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 12px;
}

.v2-big-dl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, #ff3b46 0%, #e8222e 100%);
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(232, 34, 46, .35);
    transition: transform .15s, box-shadow .15s;
    border: none;
    cursor: pointer;
}
.v2-big-dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 34, 46, .45);
}
.v2-big-dl-btn i { font-size: 18px; }

.v2-game-legal {
    margin-top: 12px;
    font-size: 11px;
    color: #555;
    line-height: 1.5;
}
.v2-game-legal a { color: #0000ff; text-decoration: underline; }

@media (min-width: 700px) {
    .v2-game-icon { width: 120px; height: 120px; }
    .v2-game-name { font-size: 26px; }
    .v2-big-dl-btn { font-size: 19px; padding: 16px 50px; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  GAME PAGE SECTIONS                                  ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-section {
    background: #fff;
    border-radius: 10px;
    padding: 16px 14px;
    margin: 14px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.v2-section-title {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #e8222e;
    padding-bottom: 8px;
}

.v2-game-desc {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.v2-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}
.v2-features li {
    background: #f5f9fc;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    border-left: 3px solid #007bff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v2-features i { color: #28a745; }

.v2-howto {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
}
.v2-howto li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #e3e7ee;
    font-size: 14px;
    line-height: 1.5;
}
.v2-howto li:last-child { border-bottom: none; }
.v2-step-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: #0000ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* FAQ */
.v2-faq-item {
    border-bottom: 1px solid #e3e7ee;
}
.v2-faq-item:last-child { border-bottom: none; }

.v2-faq-q {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.v2-faq-toggle {
    flex-shrink: 0;
    color: #0000ff;
    font-size: 18px;
    margin-left: 10px;
}

.v2-faq-a {
    display: none;
    padding: 0 0 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}
.v2-faq-item.open .v2-faq-a { display: block; }

/* ╔══════════════════════════════════════════════════════╗
   ║  LEGAL / CONTENT PAGES                               ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-legal-page {
    background: #fff;
    border-radius: 10px;
    padding: 20px 16px;
    margin: 14px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.v2-legal-page h1 {
    font-size: 24px;
    margin: 0 0 6px;
    color: #1a1a1a;
}

.v2-legal-page h2 {
    font-size: 17px;
    margin: 18px 0 8px;
    color: #1a1a1a;
    border-left: 3px solid #e8222e;
    padding-left: 10px;
}

.v2-legal-page .lp-updated {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-bottom: 18px;
}

.v2-legal-page p,
.v2-legal-page li {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.v2-legal-page a { color: #0000ff; text-decoration: underline; }
.v2-legal-page ul, .v2-legal-page ol { padding-left: 22px; }

.v2-legal-page .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 14px 0;
}
.v2-legal-page .contact-item {
    background: #f5f9fc;
    border-left: 3px solid #007bff;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.v2-legal-page .contact-icon { font-size: 22px; }
.v2-legal-page .contact-item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}
.v2-legal-page .contact-item a {
    font-size: 13px;
    word-break: break-all;
}

.v2-legal-page .state-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}
.v2-legal-page .state-badge {
    background: #ffe4e1;
    color: #c0392b;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #ffb8b0;
}

.v2-legal-page .rg-warning {
    background: #fff8e6;
    border: 1px solid #f5d488;
    padding: 14px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: #5a3a00;
}

.v2-legal-page .rg-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 12px 0;
}
.v2-legal-page .rg-resource {
    background: #f5f9fc;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #28a745;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
}
.v2-legal-page .rg-resource strong { color: #1a1a1a; }
.v2-legal-page .rg-resource span { color: #555; font-weight: 600; }

/* ╔══════════════════════════════════════════════════════╗
   ║  404 PAGE                                            ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-404 {
    text-align: center;
    padding: 50px 16px !important;
}
.v2-404-icon { font-size: 70px; margin-bottom: 14px; }
.v2-404-text { color: #555; margin: 0 0 24px; font-size: 14px; }

/* ╔══════════════════════════════════════════════════════╗
   ║  MARQUEE  (SEO keywords)                             ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-marquee-wrap {
    background: #0000ff;
    color: #fff;
    padding: 0;
    margin-top: 16px;
    border-top: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.v2-marquee {
    color: #fff;
    font-family: "Sofia", "Segoe UI", sans-serif;
    font-weight: 600;
    font-variant: small-caps;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: .3px;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  DISCLAIMER BAR                                      ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-disclaimer-bar {
    background: #1a1a1a;
    color: #d9d9d9;
    padding: 12px 14px;
    font-size: 11.5px;
    line-height: 1.6;
    text-align: center;
}
.v2-disclaimer-bar p { margin: 0; max-width: 1100px; margin: 0 auto; }
.v2-disclaimer-bar strong { color: #ffd54a; }

/* ╔══════════════════════════════════════════════════════╗
   ║  FOOTER                                              ║
   ╚══════════════════════════════════════════════════════╝ */

.v2-footer {
    background: #fff;
    border-top: 1px solid #e3e7ee;
    padding: 22px 14px 16px;
    text-align: center;
}

.v2-footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.v2-footer-brand {
    font-size: 22px;
    font-weight: 800;
    color: #0000ff;
    margin-bottom: 4px;
}

.v2-footer-tag {
    font-size: 13px;
    color: #555;
    margin: 0 0 14px;
}

.v2-footer-links {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
}
.v2-footer-links li a {
    font-size: 13px;
    color: #1a1a1a;
}
.v2-footer-links li a:hover { color: #0000ff; text-decoration: underline; }

.v2-footer-copy {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  ADMIN PANEL  (keep functional, not redesigned)      ║
   ╚══════════════════════════════════════════════════════╝ */

body.admin-body {
    background: #f4f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    color: #2d3748;
    margin: 0;
    padding: 24px 12px;
}

body.admin-body * { box-sizing: border-box; }

body.admin-body h1 { font-size: 24px; margin: 0 0 16px; color: #1a202c; }
body.admin-body h2 { font-size: 18px; margin: 16px 0 10px; color: #1a202c; }

body.admin-body .container,
body.admin-body main,
body.admin-body form {
    max-width: 1100px;
    margin: 0 auto;
}

body.admin-body input[type=text],
body.admin-body input[type=password],
body.admin-body input[type=url],
body.admin-body input[type=email],
body.admin-body input[type=number],
body.admin-body select,
body.admin-body textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d3d7de;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
}

body.admin-body button,
body.admin-body input[type=submit] {
    padding: 9px 18px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #0000ff;
    color: #fff;
}

body.admin-body button.danger,
body.admin-body input[type=submit].danger { background: #e8222e; }

body.admin-body table {
    width: 100%;
    background: #fff;
    border-radius: 6px;
    border-collapse: collapse;
    overflow: hidden;
}
body.admin-body th, body.admin-body td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    text-align: left;
}
body.admin-body th { background: #f7f8fa; }

body.admin-body .panel {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    margin: 16px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

/* ╔══════════════════════════════════════════════════════╗
   ║  RESPONSIVE BREAKPOINTS                              ║
   ╚══════════════════════════════════════════════════════╝ */

@media (max-width: 480px) {
    .v2-card { padding: 8px; }
    .v2-card-img { width: 44px; height: 44px; border-radius: 8px; }
    .v2-card-info { margin-left: 6px; }
    .v2-card-name { font-size: 13px; }
    .v2-tag { font-size: 9.5px; padding: 2px 5px; }
    .v2-dl-btn { padding: 7px 11px; font-size: 11.5px; }
    .v2-num { font-size: 11px; min-width: 18px; }
}

@media (max-width: 360px) {
    .v2-tabs { gap: 12px; }
    .v2-tab { padding: 5px 24px; font-size: 12px; }
    .v2-card-name { font-size: 12.5px; }
}
