/* ═══════════════════════════════════════════════════════════
   SPEED KEYBOARD ESCAPE — BRIGHT ROBLOX KIDS PLAYFUL THEME
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Luckiest+Guy&family=Lilita+One&display=swap');

:root {
    /* === Bright Roblox Kid-Friendly Palette === */
    --bg-blue:      #1e90ff;   /* Sky Blue */
    --bg-dark-blue: #0f4c81;   /* Deep Blue */
    
    /* Neon/Bright Accents */
    --yellow:       #ffd700;   /* Bright Gold/Yellow */
    --yellow-dark:  #e0b800;   
    --green:        #32cd32;   /* Bright Lime Green */
    --green-dark:   #228b22;
    --blue:         #00bfff;   /* Cyan Blue */
    
    /* Cards & Containers */
    --card:         rgba(15, 76, 129, 0.95);
    --card-border:  #00bfff;
    --text:         #ffffff;
    --text-dark:    #111111;
    --muted:        #d0e8ff;
    
    /* Feedback */
    --danger:       #ff4757;
    --success:      #2ed573;

    /* Fonts */
    --font-display: 'Lilita One', 'Luckiest Guy', sans-serif;
    --font-body:    'Inter', sans-serif;
    
    /* Radius & Shadows */
    --radius-lg:    24px;
    --radius-md:    16px;
    --radius-sm:    10px;
    --shadow-flat:  0 6px 0 rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 10px 0 rgba(0, 0, 0, 0.25);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-display); cursor: pointer; border: none; }

/* ─── BODY ───────────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    background-color: var(--bg-blue);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(50, 205, 50, 0.15) 0%, transparent 40%),
        linear-gradient(135deg, var(--bg-blue) 0%, var(--bg-dark-blue) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 60px;
}

/* Cartoonish Background Bubbles */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.06) 8%, transparent 8%),
        radial-gradient(circle, rgba(255,255,255,0.04) 12%, transparent 12%);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.main-container {
    min-height: 100vh;
    padding: 60px 16px 80px;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* ─── LANG SWITCHER ──────────────────────────────────────── */
.lang-switcher {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
}

.lang-button {
    background: var(--yellow);
    border: 3px solid #8b6508;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 4px 0 #8b6508;
    transition: transform 0.1s, box-shadow 0.1s;
    white-space: nowrap;
}

.lang-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #8b6508;
}

.lang-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #8b6508;
}

.lang-select {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

/* ─── HERO SECTION ───────────────────────────────────────── */
.page-hero {
    text-align: center;
    padding: 10px 0 24px;
    position: relative;
}

.hero-logo {
    width: clamp(100px, 20vw, 150px);
    margin: 0 auto 16px;
    border-radius: 20px;
    filter: drop-shadow(0 6px 0 rgba(0,0,0,0.25));
    animation: float-bob 4s ease-in-out infinite;
}

.hero-text {
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--yellow);
    text-transform: uppercase;
    text-shadow: 
        -3px -3px 0 #000,  
         3px -3px 0 #000,
        -3px  3px 0 #000,
         3px  3px 0 #000,
         0px  6px 0 #000;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-sub {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
    letter-spacing: 0.02em;
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--green);
    border: 3px solid #1a5f1a;
    font-family: var(--font-display);
    font-size: 1rem;
    color: #ffffff;
    box-shadow: 0 4px 0 #1a5f1a;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}

.social-proof .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px #ffffff;
}

/* ─── SHOP PANEL ─────────────────────────────────────────── */
.shop-panel {
    background: var(--card);
    border: 4px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 0 rgba(0,0,0,0.3);
    position: relative;
}

/* ─── STORE BANNER ───────────────────────────────────────── */
.shop-header.store-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #0d3d66;
    border-bottom: 4px solid var(--card-border);
    gap: 12px;
    flex-wrap: wrap;
}

.store-banner-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 3px 0 rgba(0,0,0,0.3));
}

.store-banner-tabs {
    display: flex;
    gap: 8px;
}

.store-tab {
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--bg-blue);
    border: 3px solid #005f9e;
    color: #ffffff;
    box-shadow: 0 4px 0 #005f9e;
    transition: all 0.15s ease;
    cursor: pointer;
}

.store-tab.active {
    background: var(--yellow);
    border-color: #8b6508;
    color: var(--text-dark);
    box-shadow: 0 4px 0 #8b6508;
}

.store-tab:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #005f9e;
}

/* ─── SHOP ITEMS LIST ───────────────────────────────────── */
.shop-items-list {
    display: flex;
    flex-direction: column;
    padding: 14px;
    gap: 10px;
}

/* ─── SHOP ITEM ROW ──────────────────────────────────────── */
.shop-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: #145994;
    border: 3px solid #0a3d66;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}

.shop-item:hover {
    background: #196bb1;
    border-color: var(--card-border);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0,0,0,0.25);
}

/* Item Image Box */
.shop-item-img-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: #0a3d66;
    border: 3px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.shop-item-img-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.shop-item:hover .shop-item-img-box img {
    transform: scale(1.1) rotate(5deg);
}

/* Item Info */
.shop-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-item-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.shop-item:hover .shop-item-name {
    color: var(--yellow);
}

.shop-item-stock {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 700;
}

/* Rarity Badges */
.shop-item-rarity {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    width: fit-content;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
    box-shadow: 0 2px 0 rgba(0,0,0,0.25);
}

.rarity-mythic {
    background: #ff4757;
    border: 2px solid #b32d3a;
    color: #ffffff;
}

.rarity-legendary {
    background: var(--yellow);
    border: 2px solid #8b6508;
    color: var(--text-dark);
    text-shadow: none;
}

.rarity-epic {
    background: #a855f7;
    border: 2px solid #6b21a8;
    color: #ffffff;
}

.rarity-super {
    background: var(--blue);
    border: 2px solid #005f9e;
    color: #ffffff;
}

/* Claim Button */
.roblox-claim-btn {
    flex-shrink: 0;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    background: var(--green);
    border: 3px solid #1a5f1a;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #1a5f1a;
    transition: all 0.1s ease;
    white-space: nowrap;
}

.shop-item:hover .roblox-claim-btn {
    background: #3ee63e;
}

.roblox-claim-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1a5f1a;
}

/* ─── iOS POPUP ─────────────────────────────────────────── */
.ios-popup {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ios-popup-background {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.ios-popup-content {
    position: relative;
    z-index: 1;
    background: var(--card);
    border: 4px solid var(--card-border);
    border-radius: var(--radius-lg);
    width: min(92vw, 420px);
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 0 rgba(0,0,0,0.3);
}

.ios-instruction-gif {
    width: 100%;
    border-radius: var(--radius-md);
    border: 3px solid var(--card-border);
}

.ios-instruction-text h3 {
    font-family: var(--font-display);
    color: var(--yellow);
    margin: 14px 0 8px;
    font-size: 1.4rem;
}

.ios-instruction-text p {
    color: #ffffff;
    font-size: 0.95rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    margin-top: 40px;
    padding: 16px 0 10px;
    border-top: 3px solid var(--card-border);
}

.footer-keywords {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   GENERATOR MODAL
   ═══════════════════════════════════════════════════════════ */
.gen-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.gen-modal.open { display: flex; }

.gen-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.gen-box {
    position: relative;
    z-index: 1;
    background: var(--card);
    border: 4px solid var(--card-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 12px 0 rgba(0,0,0,0.35);
    overflow: hidden;
    animation: genSlideIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes genSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.gen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #0d3d66;
    border-bottom: 4px solid var(--card-border);
}

.gen-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gen-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
}

.gen-label {
    font-family: var(--font-display);
    color: var(--yellow);
    font-size: 1.3rem;
    text-transform: uppercase;
}

.gen-close {
    background: #ff4757;
    border: 2px solid #b32d3a;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 0 #b32d3a;
}

.gen-close:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #b32d3a;
}

.gen-screen {
    display: none;
    padding: 20px 16px;
    flex-direction: column;
    gap: 16px;
}

.gen-screen.active { display: flex; }

/* Item Preview */
.gen-item-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #145994;
    border: 3px solid #0a3d66;
    border-radius: var(--radius-md);
    padding: 12px;
}

.gen-item-thumb {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    background: #0a3d66;
    border: 2px solid var(--card-border);
    padding: 4px;
}

.gen-item-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #ffffff;
}

.gen-item-badge {
    display: inline-block;
    margin-top: 4px;
    background: var(--yellow);
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.gen-desc {
    color: #ffffff;
    font-size: 0.95rem;
    text-align: center;
}

/* Input Wrap */
.gen-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 3px solid #0a3d66;
    border-radius: var(--radius-sm);
    padding: 0 14px;
    background: #ffffff;
    color: var(--text-dark);
}

.gen-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
}

.gen-input::placeholder { color: #888888; }
.gen-input-icon { font-size: 1.2rem; }

.gen-error-msg {
    color: #ff4757;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    min-height: 16px;
    text-align: center;
}

/* Primary Button */
.gen-btn-primary {
    width: 100%;
    background: var(--green);
    border: 3px solid #1a5f1a;
    border-radius: var(--radius-sm);
    padding: 12px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #1a5f1a;
    transition: all 0.1s ease;
}

.gen-btn-primary:hover {
    background: #3ee63e;
}

.gen-btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1a5f1a;
}

.gen-security-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.gen-security-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
}

/* Screen 2 - Scanner */
.gen-progress-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.avatar-scanner-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0a3d66;
    border: 3px solid var(--card-border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scanner-avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.scanner-laser {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--yellow);
    box-shadow: 0 0 8px var(--yellow);
    top: 0;
    left: 0;
}

.avatar-scanner-container.scanning .scanner-laser {
    animation: laser-sweep 1.2s linear infinite;
}

.gen-progress-label {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--yellow);
}

.gen-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gen-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: #145994;
    border: 2px solid #0a3d66;
}

.gen-step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0a3d66;
    border: 2px solid var(--card-border);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.gen-step.done .gen-step-icon {
    background: var(--green);
    border-color: #1a5f1a;
}

.gen-step-text { flex: 1; }
.gen-step-title { font-size: 0.9rem; font-weight: 700; }
.gen-step-sub { font-size: 0.75rem; color: var(--muted); }

.gen-step.done .gen-step-title { color: var(--green); }

.gen-progress-bar-wrap {
    height: 8px;
    background: #0a3d66;
    border-radius: 4px;
    overflow: hidden;
}

.gen-progress-bar {
    height: 100%;
    background: var(--yellow);
    width: 0%;
    transition: width 0.4s ease;
}

/* Screen 3 - Transfer */
.gen-transfer-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: #145994;
    border: 3px solid #0a3d66;
    border-radius: var(--radius-md);
}

.transfer-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.transfer-avatar-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--card-border);
}

.transfer-item-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 8px;
    background: #0a3d66;
    border: 2px solid var(--card-border);
    padding: 4px;
}

.transfer-status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--card);
}

.transfer-status-indicator.online { background: var(--green); }
.transfer-status-indicator.pending { background: var(--yellow); }

.transfer-username, .transfer-item-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

.transfer-badge {
    font-family: var(--font-display);
    font-size: 0.65rem;
    padding: 1px 6px;
    border-radius: 4px;
}

.online-badge { background: var(--green); color: #ffffff; }
.pending-badge { background: var(--yellow); color: var(--text-dark); }

.transfer-line {
    width: 40px;
    height: 4px;
    background: var(--card-border);
    border-radius: 2px;
}

/* Offers */
.offer-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #145994;
    border: 3px solid #0a3d66;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: #ffffff;
}

.offer-card:hover {
    background: #196bb1;
    border-color: var(--card-border);
}

.offer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 1rem;
}

.offer-desc {
    font-size: 0.75rem;
    color: var(--muted);
}

.offer-action {
    background: var(--yellow);
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 3px 0 #8b6508;
}

.secure-footer-line {
    font-family: var(--font-display);
    color: var(--yellow);
}

/* ─── ANIMATIONS ──────────────────────────────── */
@keyframes float-bob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.3); }
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 600px) {
    .main-container { padding: 30px 10px 60px; }
    .hero-title { font-size: 1.6rem; }
    .shop-item { gap: 10px; padding: 10px; }
    .shop-item-img-box { width: 52px; height: 52px; }
    .shop-item-img-box img { width: 38px; height: 38px; }
    .shop-item-name { font-size: 1rem; }
    .roblox-claim-btn { padding: 8px 16px; font-size: 0.9rem; }
}

/* ─── HIDE ANIMATED BG ─── */
.animated-background,
.bg-item-img,
.bg-item-img img {
    display: none !important;
}

/* ─── OFFER ITEM DETAILS ─── */
.offer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}

/* ─── GEN FINAL CARD ─── */
.gen-final-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #145994;
    border: 3px solid #0a3d66;
    border-radius: var(--radius-md);
    padding: 12px 14px;
    margin-top: 14px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}

.gen-final-thumb {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid var(--card-border);
    background: #0a3d66;
    padding: 4px;
    flex-shrink: 0;
}

.gen-final-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.gen-final-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gen-final-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 700;
    margin-top: 2px;
}


