﻿@import url('css2.css');

/* ===================================================
   ALL YONO APP — RED DESIGN STYLESHEET
   Replicated style from yonoagent.org
   =================================================== */

/* ─── RESET & BASE ───────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
:root {
  --bg: #ffffff;
  --text: #1a0505;
  --text2: #7a3333;
  --red: #e3232c;
  --red2: #c0392b;
  --green: #16a34a;
  --glow: rgba(227, 35, 44, 0.18);
  --border: rgba(227, 35, 44, 0.18);
  --grad: linear-gradient(135deg, #c0392b 0%, #e3232c 50%, #ff4757 100%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- CENTER CONTAINER FOR DESKTOP --- */
/* To make the site feel like a premium mobile app on desktop (like yonoagent) */
.main-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ─── TYPEWRITER ─────────────────────────────────────────────── */
.typewriter-bar {
  background: linear-gradient(135deg, rgba(227, 35, 44, .09), rgba(192, 57, 43, .03));
  border-bottom: 1px solid var(--border);
  padding: 9px 16px;
  text-align: center;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.typewriter-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .3px;
}
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--red);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink .7s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1 }
  50% { opacity: 0 }
}

/* ─── SOCIAL PROOF ───────────────────────────────────────────── */
.social-proof-bar {
  display: flex;
  align-items: stretch;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
}
.sp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
  border-right: 1px solid var(--border);
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.sp-item:last-child {
  border-right: none;
}
.sp-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sp-icon.gold { color: var(--red); }
.sp-icon.green { color: var(--green); }
.sp-icon.blue { color: var(--red); }
.sp-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sp-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
  font-family: 'Cinzel', serif;
  line-height: 1.2;
  white-space: nowrap;
}
.sp-label {
  font-size: 9px;
  color: var(--text2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-top: 1px;
  white-space: nowrap;
}

/* ─── FOMO TOAST ─────────────────────────────────────────────── */
.fomo-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 9500;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 24px);
  max-width: 360px;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  will-change: transform;
  box-shadow: 0 4px 20px rgba(227, 35, 44, .15);
}
.fomo-toast.show {
  transform: translateX(-50%) translateY(0);
}
.fomo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}
.fomo-body {
  min-width: 0;
  flex: 1;
}
.fomo-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fomo-action {
  font-size: 11px;
  color: var(--text2);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fomo-time {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  margin-top: 2px;
}
.fomo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.header {
  background: linear-gradient(135deg, #b71c1c 0%, #e3232c 50%, #ff4757 100%);
  border-bottom: 3px solid #b71c1c;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  box-shadow: 0 3px 14px rgba(227, 35, 44, .35);
  height: 54px;
}
.logo-top {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, .5);
  flex-shrink: 0;
}
.telegram-top {
  width: 54px;
  height: auto;
  flex-shrink: 0;
}
.header-text {
  flex-grow: 1;
  margin: 0 8px;
  font-weight: 800;
  font-size: clamp(18px, 5vw, 22px);
  font-family: 'Cinzel', serif;
  color: #fff;
  letter-spacing: .5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}
.menu-icon {
  display: block;
  text-align: right;
  padding: 6px 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  touch-action: manipulation;
  user-select: none;
}
.menu-container {
  display: none;
  background: linear-gradient(135deg, #b71c1c, #c0392b);
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.menu-item {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.menu-item:hover {
  background: rgba(255, 255, 255, .28);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
  max-width: 100%;
}


/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  border-bottom: 2px solid rgba(227, 35, 44, .25);
  overflow-x: auto;
  overflow-y: hidden;
  background: linear-gradient(90deg, #fff5f5, #fff, #fff5f5);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.navbar::-webkit-scrollbar {
  display: none;
}
.navbar a {
  white-space: nowrap;
  color: var(--text2);
  padding: 8px 12px;
  border-right: 1px solid rgba(227, 35, 44, .12);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.navbar a:last-child {
  border-right: none;
}
.navbar a.active, .navbar a:hover {
  background: rgba(227, 35, 44, .10);
  color: var(--red);
}

/* ─── BANNER ─────────────────────────────────────────────────── */
.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── LIVE BAR ───────────────────────────────────────────────── */
.live-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(34, 197, 94, .08), rgba(16, 185, 129, .04));
  border: 1px solid rgba(34, 197, 94, .20);
  border-radius: 12px;
  margin: 12px 14px 0;
  padding: 9px 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.live-label {
  font-size: 12px;
  color: #16a34a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.live-count {
  font-size: 18px;
  font-weight: 900;
  color: #16a34a;
  font-family: 'Cinzel', serif;
  min-width: 48px;
  text-align: center;
}
.live-suffix {
  font-size: 12px;
  color: var(--text2);
  font-weight: 600;
}

/* ─── SEARCH ─────────────────────────────────────────────────── */
.search-wrap {
  width: 100%;
  margin: 16px auto 8px;
  padding: 0 14px;
}
.search-inner {
  position: relative;
}
#searchInput {
  width: 100%;
  padding: 12px 48px 12px 18px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
#searchInput::placeholder {
  color: var(--text2);
  opacity: .85;
}
#searchInput:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--glow);
}
.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--red);
  pointer-events: none;
}

/* ─── TABS ───────────────────────────────────────────────────── */
.tabs-wrap {
  touch-action: pan-y;
  position: relative;
}
.tabs {
  display: flex;
  justify-content: center;
  margin: 14px auto 12px;
  background: #fff5f5;
  border-radius: 18px;
  padding: 5px;
  border: 1px solid var(--border);
  width: calc(100% - 28px);
}
.tab {
  flex: 1;
  padding: 10px 8px;
  margin: 0 3px;
  font-weight: 700;
  font-size: clamp(12px, 3.5vw, 14px);
  font-family: 'Nunito', sans-serif;
  color: var(--text2);
  background: transparent;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  transition: background .18s, color .18s;
  touch-action: manipulation;
  white-space: nowrap;
}
.tab:hover {
  color: var(--red);
  background: rgba(227, 35, 44, .08);
}
.tab.active {
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(227, 35, 44, .35);
}
.tab-content {
  display: none;
  padding: 0 14px;
}
.tab-content.active {
  display: block;
}

/* ─── APP CARDS ──────────────────────────────────────────────── */
.app-list {
  list-style: none;
  counter-reset: app-counter;
  padding: 0;
  margin: 0;
}
.no-apps-msg {
  padding: 24px;
  text-align: center;
  color: var(--text2);
}
.app-item {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  padding: 8px 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(227, 35, 44, .06);
}
.app-item::before {
  counter-increment: app-counter;
  content: counter(app-counter) ".";
  font-weight: bold;
  font-size: .9em;
  margin-right: 4px;
  color: #ccc;
  flex-shrink: 0;
}
.app-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad);
  border-radius: 14px 0 0 14px;
}
.app-icon-wrap {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.app-icon {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--border);
}
.app-details {
  flex-grow: 1;
  margin-left: 10px;
  min-width: 0;
}
.app-title {
  font-family: 'Nunito', sans-serif;
  font-size: .95em;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bonus-amount {
  display: block;
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
}
.withdrawal-amount {
  display: block;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
}
.app-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 6px;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  color: #fff;
  background: var(--grad);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(227, 35, 44, .38);
  touch-action: manipulation;
}
.corner-tag {
  position: absolute;
  top: -9px;
  right: -8px;
  z-index: 13;
  pointer-events: none;
  white-space: nowrap;
  font-family: 'Nunito', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  padding: 3px 7px 4px;
  border-radius: 6px 6px 6px 2px;
  min-width: 38px;
  text-align: center;
}

/* ─── COUNTDOWN ──────────────────────────────────────────────── */
.countdown-container {
  text-align: center;
  margin: 14px 14px 6px;
  font-weight: 700;
}
.countdown {
  background: #fff5f5;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: .95rem;
  display: inline-block;
  min-width: 200px;
  border: 1px solid var(--border);
  width: 100%;
}
.countdown.expired {
  background: var(--grad);
  color: #fff;
}

/* ─── COPY TOAST ─────────────────────────────────────────────── */
.copy-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 99999;
  opacity: 0;
  transition: opacity .28s, transform .28s;
  pointer-events: none;
  white-space: nowrap;
}
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── DISCLAIMER ─────────────────────────────────────────────── */
.disclaimer {
  background: #fff5f5;
  border: 1.5px solid rgba(227, 35, 44, .35);
  padding: 12px;
  margin: 10px 14px;
  color: var(--text);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.disclaimer-title {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  text-decoration: underline;
  margin-bottom: 6px;
}

/* ─── HP META BLOCK ──────────────────────────────────────────── */
.hp-meta-block {
  margin: 0 14px 14px;
  border: 2px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 16px rgba(227, 35, 44, .08);
}
.hp-meta-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px 11px;
  background: linear-gradient(100deg, #fff5f5, #fff);
  border-bottom: 1.5px solid rgba(227, 35, 44, .12);
}
.hp-meta-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 8px rgba(227, 35, 44, .28);
}
.hp-meta-icon i {
  color: #fff;
  font-size: .75rem;
}
.hp-meta-h1 {
  font-size: .88rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}
.hp-meta-desc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--text2);
  background: rgba(227, 35, 44, .06);
  border: 1px solid rgba(227, 35, 44, .14);
  border-radius: 6px;
  padding: 3px 9px;
}
.hp-meta-desc i {
  color: var(--red);
  font-size: .65rem;
}
.hp-meta-body {
  padding: 13px 15px;
}
.hp-meta-text {
  font-size: 13.5px;
  color: #2c2525;
  line-height: 1.6;
  margin: 0;
  background: #fafafa;
  border: 1px solid rgba(227, 35, 44, .08);
  border-radius: 10px;
  padding: 12px 14px;
}

/* ─── BOTTOM INFO BLOCKS ─────────────────────────────────────── */
.bi-block {
  margin: 0 14px 14px;
  border: 1.5px solid rgba(227, 35, 44, .2);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(227, 35, 44, .07);
}
.bi-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  background: linear-gradient(100deg, #fff5f5, #fff);
  border-bottom: 1.5px solid rgba(227, 35, 44, .12);
}
.bi-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bi-icon i {
  color: #fff;
  font-size: .75rem;
}
.bi-h2 {
  font-size: .83rem;
  font-weight: 900;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}
.bi-body {
  padding: 12px 15px;
}
.bi-text {
  font-size: 13.5px;
  color: #2c2525;
  line-height: 1.6;
  margin: 0;
  background: #fafafa;
  border: 1px solid rgba(227, 35, 44, .08);
  border-radius: 9px;
  padding: 11px 13px;
}

/* ─── TAGS BELT ──────────────────────────────────────────────── */
.tags-section {
  border-top: 2px dashed var(--red);
  border-bottom: 2px dashed var(--red);
  background: #fff0f0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-top: 10px;
}
.tags-label {
  flex-shrink: 0;
  background: var(--grad);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  border-right: 2px solid rgba(255, 255, 255, .3);
  z-index: 2;
}
.tags-track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.tags-track::before, .tags-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 1;
  pointer-events: none;
}
.tags-track::before {
  left: 0;
  background: linear-gradient(to right, #fff0f0, transparent);
}
.tags-track::after {
  right: 0;
  background: linear-gradient(to left, #fff0f0, transparent);
}
.tags-belt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  white-space: nowrap;
  animation: beltScroll 28s linear infinite;
  will-change: transform;
}
.tags-belt:hover {
  animation-play-state: paused;
}
@keyframes beltScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(var(--belt-half, -50%)); }
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1.5px solid rgba(227, 35, 44, .25);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
  box-shadow: 0 1px 4px rgba(227, 35, 44, .08);
}
.tag-pill i {
  font-size: 9px;
  opacity: .55;
}

/* ─── FOOTER / SOCIAL LINKS ──────────────────────────────────── */
.main-bg {
  background: linear-gradient(to top, #fff5f5, #fff);
  color: var(--text);
  border-top: 3px solid var(--red);
}
.center-text, .small-center-text {
  text-align: center;
  line-height: 1.5;
}
.center-text {
  font-size: 1rem;
  font-weight: 700;
  padding: 8px;
}
.small-center-text {
  font-size: .7rem;
  font-weight: 700;
  padding: 8px;
}
.link-style, .footer-link {
  color: var(--red);
  text-decoration: underline;
}
.group-card, .group-card1 {
  margin-bottom: 12px;
  position: relative;
  align-items: center;
  padding: 8px;
  overflow: hidden;
  border-radius: 8px;
  margin: 10px 14px;
}
.group-card {
  border: 2px solid transparent;
  background: #fff0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.group-card1 {
  border: 2px solid transparent;
  background: #fff5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.join-text {
  margin-left: 10px;
  font-weight: 700;
  color: #b71c1c;
  font-size: .9rem;
}
.join-text1 {
  margin-left: 10px;
  font-weight: 700;
  color: #c0392b;
  font-size: .95rem;
}
.icon-tg {
  font-size: 24px;
  color: #b71c1c;
}
.icon-tg1 {
  font-size: 24px;
  color: #c0392b;
}
.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  flex-shrink: 0;
  color: #fff;
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
  touch-action: manipulation;
  gap: 6px;
}
.telegram-card .join-btn {
  background: #b71c1c;
}
.telegram-card1 .join-btn {
  background: #c0392b;
}
@keyframes tba {
  0%, 100% { border-color: transparent }
  50% { border-color: #b71c1c }
}
.telegram-card {
  animation: tba 1.5s infinite;
}
@keyframes tba1 {
  0%, 100% { border-color: transparent }
  50% { border-color: #c0392b }
}
.telegram-card1 {
  animation: tba1 1.5s infinite;
}

/* Side fixed buttons */
.side-tg, .side-wa {
  position: fixed;
  right: 12px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}
.side-tg:active, .side-wa:active {
  transform: scale(0.9);
}
.side-tg {
  bottom: 160px;
  background: #0088cc;
}
.side-wa {
  bottom: 95px;
  background: #25D366;
}
.side-tg img, .side-wa img {
  width: 28px;
  height: 28px;
}

/* ─── SKELETON ───────────────────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -600px 0 }
  100% { background-position: 600px 0 }
}
.sk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 8px;
  padding: 10px 12px;
}
.sk-shine {
  background: linear-gradient(90deg, #fff5f5 0%, rgba(227, 35, 44, .06) 40%, #fff5f5 80%);
  background-size: 600px 100%;
  animation: shimmer 1.6s infinite linear;
  border-radius: 8px;
}
.sk-icon {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  flex-shrink: 0;
}
.sk-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sk-line {
  height: 13px;
}
.sk-line.w80 { width: 80%; }
.sk-line.w55 { width: 55%; }
.sk-line.w40 { width: 40%; }
.sk-btn {
  width: 82px;
  height: 36px;
  border-radius: 50px;
  flex-shrink: 0;
}

/* ─── RESPONSIVE FIXES ───────────────────────────────────────── */
@media(max-width: 360px) {
  .sp-num { font-size: 11px; }
  .sp-label { font-size: 8px; }
  .app-icon { width: 56px; height: 56px; }
  .dl-btn { padding: 7px 10px; font-size: 12px; }
  .header-text { font-size: 17px; }
  .tab { font-size: 11px; padding: 8px 4px; }
}
@media(max-width: 320px) {
  .app-details { margin-left: 6px; }
  .app-title { font-size: .85em; }
  .corner-tag { font-size: 8px; padding: 2px 5px 3px; }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
