/* ========================================
   BATTLEANGELZ — GAME GUIDE
   AngelGotchi Terminal · Y2K Webcore
   ======================================== */

/* ── LOGO ── */
.site-logo {
    display: block;
    max-width: 420px;
    width: 80%;
    height: auto;
    margin: 0 auto 8px;
    filter: drop-shadow(0 0 12px rgba(98, 64, 196, 0.5)) drop-shadow(0 0 30px rgba(203, 169, 244, 0.3));
    pointer-events: none;
    user-select: none;
}
@media (max-width: 600px) {
    .site-logo { max-width: 280px; }
}

/* ── PALETTE ── */
:root {
    --purple-main: #CBA9F4;
    --purple-dark: #6240c4;
    --purple-deeper: #3515a5;
    --text-dark: #333;
    --text-white: #fff;
    --text-muted: #666;
    --accent-blue: #091ABC;
    --accent-hover: #6701cd;
    --accent-pink: #f1baff;
    --gold: #e8d5a0;
    --neon-green: #BBEC66;
    --panel-bg: radial-gradient(circle, rgba(255,255,255,1) 68%, rgba(236,230,255,1) 91%, rgba(230,211,255,1) 100%);
    --purple-gradient: linear-gradient(180deg, rgba(197,189,232,0.9) 5%, rgba(102,79,189,0.89) 39%, rgba(155,132,222,0.88) 92%);
    --ridge-border: 3px ridge var(--purple-main);
    --header-shadow: #ffffff8a 0px 0px 2px 3px inset;
    --text-glow: 1px 1px 2px #f1baff, -1px -1px 2px #8691eb, 0px -1px 2px #cfeeff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'MS UI Gothic', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    background: url(https://cinni.net/images/web/bg/sparklecloud.gif) center / cover;
    background-attachment: scroll;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    color: var(--text-dark);
    cursor: url(https://cur.cursors-4u.net/games/gam-10/gam987.png), auto;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    padding: 24px 16px;
    padding: 24px 16px env(safe-area-inset-bottom) 16px;
}

::selection {
    background: transparent;
    text-shadow: 0 0 5px #a855f5, 0 0 10px #a855f5, 0 0 20px #a855f5;
    color: #d8b4fe;
}

/* ── MAIN CONTAINER ── */
.guide-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 36px 48px;
    background: var(--panel-bg);
    border: var(--ridge-border);
    border-radius: 60px 0px 0px 0px;
    box-shadow: var(--header-shadow), 4px 4px 16px rgba(98, 64, 196, 0.15);
    animation: floatIn 0.8s ease-out;
}

@keyframes floatIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.guide-title {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--purple-dark);
    text-shadow: var(--text-glow);
    margin-bottom: 6px;
}

.guide-subtitle {
    font-size: 14px;
    color: var(--accent-pink);
    letter-spacing: 2px;
    text-shadow: var(--text-glow);
}

/* ── NAV ── */
.guide-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
    padding: 12px;
    background: rgba(203, 169, 244, 0.1);
    border: 1px ridge var(--purple-main);
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.guide-nav a {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple-dark);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s;
    font-weight: bold;
}

.guide-nav a:hover {
    background: rgba(203, 169, 244, 0.25);
    border-color: var(--purple-main);
    color: var(--accent-hover);
}

/* ── BACK LINK ── */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple-dark);
    text-decoration: none;
    padding: 8px 18px;
    border: var(--ridge-border);
    border-radius: 0px 0px 0px 20px;
    background: #fff;
    transition: all 0.3s;
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(98, 64, 196, 0.2);
    border-color: var(--purple-dark);
}

/* ── SECTIONS ── */
.guide-section {
    margin-bottom: 36px;
    padding: 20px;
    background: #fff;
    border: var(--ridge-border);
    border-radius: 0px 0px 0px 30px;
    box-shadow: var(--header-shadow);
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--purple-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: var(--text-glow);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px ridge var(--purple-main);
}

.section-text {
    font-family: Arial, 'Helvetica Neue', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-text strong {
    color: var(--purple-dark);
}

/* ── RULES LIST ── */
.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    padding: 8px 12px;
    margin-bottom: 6px;
    background: rgba(203, 169, 244, 0.08);
    border-left: 3px solid var(--purple-main);
    border-radius: 0 8px 8px 0;
}

.rules-list li .rule-label {
    font-weight: bold;
    color: var(--purple-dark);
}

/* ── TABLES ── */
.guide-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 12px;
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.guide-table th {
    background: var(--purple-gradient);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 12px;
    text-align: left;
    white-space: nowrap;
    border: 1px ridge var(--purple-main);
}

.guide-table td {
    padding: 8px 12px;
    border: 1px solid rgba(203, 169, 244, 0.3);
    vertical-align: top;
    line-height: 1.5;
}

.guide-table tbody tr:nth-child(even) {
    background: rgba(203, 169, 244, 0.06);
}

.guide-table tbody tr:hover {
    background: rgba(203, 169, 244, 0.15);
}

/* Type badges */
.type-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.type-radiant   { background: #f0c040; color: #333; }
.type-shadow    { background: #5a3d8a; }
.type-psychic   { background: #c76ddf; }
.type-grass     { background: #5dba47; }
.type-metal     { background: #8a8a9e; }
.type-fairy     { background: #f0a0d0; color: #333; }
.type-water     { background: #4a90d9; }
.type-fire      { background: #e05030; }
.type-lightning { background: #d4a017; color: #333; }
.type-fighting  { background: #b04020; }
.type-flying    { background: #7eb8e0; color: #333; }

/* Overlay badges */
.overlay-normal { color: var(--text-muted); font-style: italic; }
.overlay-shiny  { color: #b8960a; font-weight: bold; }
.overlay-holo   { color: var(--accent-pink); font-weight: bold; text-shadow: 0 0 4px rgba(241,186,255,0.5); }

/* Stat highlight */
.stat-hp { font-weight: bold; color: #4a90d9; }
.stat-ap { font-weight: bold; color: #b88cff; }
.stat-dmg { font-weight: bold; color: #d05050; }

/* Attack description */
.atk-desc {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
}

/* ── ANGEL CARDS (visual cards in the roster) ── */
.angel-roster {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.angel-card {
    background: #1a0a2e;
    border: var(--ridge-border);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.angel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(98, 64, 196, 0.3);
}

.angel-card:active {
    transform: scale(0.97);
    box-shadow: 0 2px 12px rgba(98, 64, 196, 0.4);
}

.angel-card-art {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.angel-card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.angel-card-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: bold;
    color: rgba(203, 169, 244, 0.2);
    background: linear-gradient(160deg, #1a0a2e 0%, #2d1654 50%, #1a0a2e 100%);
}

.angel-card-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 45%, transparent 100%);
    pointer-events: none;
}

.angel-card-content {
    position: relative;
    z-index: 2;
    padding: 14px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    justify-content: flex-end;
}

.angel-card-header {
    position: absolute;
    top: 12px;
    left: 14px;
    right: 14px;
}

.angel-card-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.angel-card-title {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.angel-card-desc {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    line-height: 1.4;
}

.angel-card-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.angel-card-stat {
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}

.angel-card-attacks {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.angel-card-attack {
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.3);
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.angel-card-attack span {
    font-weight: bold;
}

.angel-card-attack-cost {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

/* ── BLESSING / SUPPORT CARDS ── */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.info-card {
    padding: 14px;
    background: rgba(203, 169, 244, 0.08);
    border: 1px ridge var(--purple-main);
    border-radius: 10px;
    transition: background 0.2s;
}

.info-card:hover {
    background: rgba(203, 169, 244, 0.18);
}

.info-card-name {
    font-size: 13px;
    font-weight: bold;
    color: var(--purple-dark);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.info-card-desc {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── STATUS EFFECTS ── */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(203, 169, 244, 0.08);
    border: 1px ridge var(--purple-main);
    border-radius: 10px;
}

.status-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.status-name {
    font-size: 12px;
    font-weight: bold;
    color: var(--purple-dark);
}

.status-desc {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .guide-container {
        padding: 24px 16px 32px;
        border-radius: 30px 0 0 0;
    }
    .guide-title { font-size: 22px; letter-spacing: 2px; }
    .section-title { font-size: 16px; letter-spacing: 2px; }
    .angel-roster { grid-template-columns: 1fr 1fr; gap: 12px; }
    .angel-card { min-height: 180px; }
    .angel-card-name { font-size: 15px; }
    .angel-card-desc { font-size: 10px; margin-bottom: 6px; }
    .angel-card-attack { font-size: 10px; padding: 3px 6px; }
    .angel-card-attack-cost { font-size: 9px; }
    .guide-table { font-size: 11px; }
    .guide-table th, .guide-table td { padding: 6px 8px; }
}

@media (max-width: 480px) {
    body { padding: 8px 4px; padding-bottom: env(safe-area-inset-bottom); }
    .guide-container { padding: 14px 10px 20px; border-radius: 16px 0 0 0; }
    .guide-header { margin-bottom: 24px; }
    .guide-title { font-size: 18px; letter-spacing: 1px; }
    .guide-subtitle { font-size: 11px; letter-spacing: 1px; }
    .guide-nav { gap: 6px; padding: 8px; margin-bottom: 24px; }
    .guide-nav a { font-size: 9px; padding: 5px 8px; letter-spacing: 1px; }
    .back-link { font-size: 11px; padding: 6px 14px; margin-bottom: 14px; }
    .guide-section { padding: 12px 10px; margin-bottom: 20px; }
    .section-title { font-size: 14px; letter-spacing: 1.5px; margin-bottom: 10px; padding-bottom: 6px; }
    .section-text { font-size: 12px; line-height: 1.6; }
    .rules-list li { font-size: 12px; line-height: 1.5; padding: 6px 10px; }
    .guide-table { font-size: 10px; }
    .guide-table th { font-size: 9px; padding: 6px 6px; letter-spacing: 1px; }
    .guide-table td { padding: 5px 6px; }
    .type-badge { font-size: 9px; padding: 2px 6px; }
    .angel-roster { grid-template-columns: 1fr 1fr; gap: 8px; }
    .angel-card { min-height: 160px; border-radius: 10px; }
    .angel-card-content { padding: 10px; min-height: 160px; }
    .angel-card-header { top: 8px; left: 10px; right: 10px; }
    .angel-card-name { font-size: 13px; }
    .angel-card-title { font-size: 8px; }
    .angel-card-desc { font-size: 9px; margin-bottom: 6px; line-height: 1.3; }
    .angel-card-stats { gap: 6px; margin-bottom: 6px; }
    .angel-card-stat { font-size: 9px; padding: 1px 6px; }
    .angel-card-attacks { gap: 3px; }
    .angel-card-attack { font-size: 9px; padding: 3px 6px; }
    .angel-card-attack-cost { font-size: 8px; }
    .info-cards { grid-template-columns: 1fr; gap: 8px; }
    .info-card { padding: 10px; }
    .info-card-name { font-size: 12px; }
    .info-card-desc { font-size: 11px; }
    .status-grid { grid-template-columns: 1fr; gap: 8px; }
    .status-item { padding: 8px 10px; }
    .status-icon { font-size: 20px; }
    .status-name { font-size: 11px; }
    .status-desc { font-size: 10px; }
}

@media (max-width: 375px) {
    body { padding: 6px 2px; }
    .guide-container { padding: 12px 8px 16px; }
    .guide-title { font-size: 16px; }
    .angel-roster { gap: 6px; }
    .angel-card { min-height: 150px; }
    .angel-card-content { padding: 8px; min-height: 150px; }
    .angel-card-name { font-size: 12px; }
    .angel-card-desc { display: none; }
}

/* ═══════════════════════════════════════════════
   CARD PREVIEW MODAL
   ═══════════════════════════════════════════════ */
.card-preview-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 30, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 20000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.card-preview-overlay.active { display: flex; }

.card-preview-scene {
    perspective: 600px;
    width: 280px;
    height: 400px;
    cursor: default;
}

.card-preview-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: #1a0a2e;
    border: 3px ridge var(--purple-main);
    box-shadow: 0 0 30px rgba(98, 64, 196, 0.3), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.08s ease-out;
    transform-style: preserve-3d;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.preview-art {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.preview-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.preview-art-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    font-weight: bold;
    color: rgba(203, 169, 244, 0.2);
    background: linear-gradient(160deg, #1a0a2e 0%, #2d1654 50%, #1a0a2e 100%);
}

.preview-gradient-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 18px 18px 0 0;
}
.preview-gradient-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 18px 18px;
}

.preview-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    justify-content: space-between;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}
.preview-name {
    font-family: 'MS UI Gothic', 'Segoe UI', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}
.preview-overlay-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(4px);
}
.preview-title {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.preview-type {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.preview-bottom { margin-top: auto; }

.preview-description {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    margin-bottom: 8px;
    font-style: italic;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.preview-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}
.preview-bar {
    height: 16px;
    border-radius: 8px;
    border: 1px ridge var(--purple-main);
    background: rgba(203, 169, 244, 0.15);
    position: relative;
    overflow: hidden;
}
.preview-bar .bar-fill {
    height: 100%;
    border-radius: 8px;
    transition: width 0.3s ease;
}
.preview-bar .bar-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.preview-moves {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.preview-move {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(203, 169, 244, 0.25);
    border-radius: 8px;
    padding: 6px 8px;
    backdrop-filter: blur(4px);
}
.preview-move-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}
.preview-move-name {
    font-family: 'MS UI Gothic', 'Segoe UI', Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.preview-move-cost {
    font-size: 10px;
    color: var(--accent-pink);
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.preview-move-dmg {
    font-size: 10px;
    color: rgba(255,255,255,0.65);
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.preview-move-desc {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
    font-family: Arial, sans-serif;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.preview-close-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: rgba(203, 169, 244, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: auto;
    cursor: pointer;
}

@media (max-width: 600px) {
    .card-preview-scene { width: 75vw; max-width: 280px; height: 80vh; max-height: 420px; }
    .preview-content { padding: 12px; }
    .preview-name { font-size: 18px; }
    .preview-move { padding: 5px 7px; }
    .preview-move-name { font-size: 11px; }
    .preview-move-desc { font-size: 9px; }
    .preview-close-hint { bottom: max(12px, env(safe-area-inset-bottom)); font-size: 10px; }
}
@media (max-width: 375px) {
    .card-preview-scene { width: 70vw; height: 75vh; max-height: 380px; }
    .preview-name { font-size: 16px; }
    .preview-content { padding: 10px; }
    .preview-title { font-size: 9px; }
    .preview-type { font-size: 11px; }
    .preview-description { font-size: 10px; margin-bottom: 6px; }
    .preview-bar { height: 14px; }
    .preview-bar .bar-text { font-size: 9px; }
    .preview-move { padding: 4px 6px; }
    .preview-move-name { font-size: 10px; }
    .preview-move-cost { font-size: 9px; }
    .preview-move-dmg { font-size: 9px; }
    .preview-move-desc { font-size: 8px; }
}
