/* ============================================================
   FREE CREDIT MALAYSIA — SEO Landing Page Stylesheet
   Mobile-first, dark-theme, iGaming optimized
   ============================================================ */

:root {
  --bg: #0b0f1a;
  --bg2: #131a2e;
  --card: rgba(25, 35, 60, 0.88);
  --card-hover: rgba(35, 48, 80, 0.95);
  --gold: #f5a623;
  --gold-light: #ffd666;
  --gold-dark: #c7841a;
  --blue: #4a90d9;
  --green: #27ae60;
  --red: #e74c3c;
  --text: #e8ecf1;
  --text-muted: #8a95a5;
  --border: rgba(255,255,255,0.07);
  --glow: 0 0 20px rgba(245,166,35,0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --max-w: 1320px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-h: 'Poppins', 'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font: 400 16px/1.75 var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 700; line-height: 1.3; color: #fff; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }
p { margin-bottom: 14px; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }

/* ---- HEADER ---- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(11,15,26,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.logo { display: flex; align-items: center; }
.logo img { height: 45px; width: auto; display: block; }
.nav { display: flex; gap: 6px; align-items: center; }
.nav a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); padding: 6px 12px; border-radius: var(--radius-sm); transition: all var(--transition); }
.nav a:hover, .nav a.active { color: #fff; background: rgba(245,166,35,0.12); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ---- HERO ---- */
.hero { padding: 48px 0 40px; background: linear-gradient(135deg, var(--bg) 0%, #0d1428 50%, #111b36 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(245,166,35,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-content { max-width: 720px; }
.hero h1 { margin-bottom: 16px; }
.hero h1 .highlight { color: var(--gold); }
.hero p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 20px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stat { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 500; color: var(--text); background: var(--card); padding: 8px 14px; border-radius: 40px; border: 1px solid var(--border); }
.hero-stat .emoji { font-size: 1.1rem; }
.badge-update { display: inline-block; background: rgba(39,174,96,0.15); color: var(--green); font-size: 0.78rem; font-weight: 600; padding: 3px 10px; border-radius: 40px; margin-bottom: 10px; border: 1px solid rgba(39,174,96,0.25); }

/* ---- FILTER BAR ---- */
.filter-section { padding: 24px 0 8px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { font-family: var(--font); font-size: 0.85rem; font-weight: 500; padding: 8px 18px; border-radius: 40px; border: 1px solid var(--border); background: transparent; color: var(--text-muted); cursor: pointer; transition: all var(--transition); }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: #0b0f1a; border-color: var(--gold); font-weight: 600; }

/* ---- CASINO CARD ---- */
.casino-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 20px 0; align-items: stretch; }
.casino-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; height: 100%; }
.casino-card:hover { transform: translateY(-4px); border-color: rgba(245,166,35,0.3); box-shadow: 0 8px 32px rgba(245,166,35,0.12), var(--glow); }
.casino-card.featured { border-color: var(--gold); position: relative; }
.casino-card.featured::before { content: '\2B50 Top Pick'; position: absolute; top: 12px; right: 12px; background: var(--gold); color: #0b0f1a; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 40px; z-index: 2; }
.card-header { display: flex; align-items: center; gap: 14px; padding: 16px 18px 12px; }
.card-avatar { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0; }
.card-title-wrap { flex: 1; min-width: 0; }
.card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.card-subtitle { font-size: 0.78rem; color: var(--text-muted); }
.card-body { padding: 0 18px 14px; flex: 1; }
.card-bonus { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.bonus-amount { font-family: var(--font-h); font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.bonus-label { font-size: 0.82rem; color: var(--text-muted); }
.card-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.feature-tag { font-size: 0.72rem; font-weight: 500; padding: 3px 8px; border-radius: 4px; background: rgba(255,255,255,0.06); color: var(--text-muted); }
.card-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; font-size: 0.8rem; margin-bottom: 12px; }
.meta-item { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid var(--border); }
.meta-label { color: var(--text-muted); }
.meta-value { font-weight: 600; color: var(--text); }
.card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; font-size: 0.95rem; }
.card-actions { padding: 0 18px 16px; display: flex; gap: 8px; margin-top: auto; }
.btn { font-family: var(--font); font-size: 0.88rem; font-weight: 600; padding: 10px 18px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all var(--transition); text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 6px; flex: 1; }
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #0b0f1a; }
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 4px 15px rgba(245,166,35,0.3); color: #0b0f1a; }
.btn-secondary { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn-secondary:hover { border-color: var(--text); color: #fff; }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius); }

/* ---- FEATURED CTA BANNER ---- */
.cta-banner { background: linear-gradient(135deg, #1a2744 0%, #0f1a30 100%); border: 1px solid rgba(245,166,35,0.2); border-radius: var(--radius); padding: 28px 24px; margin: 28px 0; display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(245,166,35,0.08) 0%, transparent 60%); }
.cta-banner h3 { position: relative; z-index: 1; }
.cta-banner p { position: relative; z-index: 1; color: var(--text-muted); font-size: 0.95rem; }
.cta-banner .btn { position: relative; z-index: 1; flex: none; }

/* ---- SECTION STYLES ---- */
.section { padding: 36px 0; }
.section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.section-header .emoji { font-size: 1.3rem; }
.section-divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ---- AMOUNT SECTION (by RM) ---- */
.amount-section { padding: 24px 0; }
.amount-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(245,166,35,0.12); color: var(--gold); font-weight: 700; padding: 4px 12px; border-radius: 40px; font-size: 0.85rem; margin-bottom: 12px; }

/* ---- CONTENT SECTION ---- */
.content-section { padding: 32px 0; }
.content-section h2 { margin-bottom: 14px; }
.content-section p { color: var(--text-muted); margin-bottom: 14px; }
.content-section ul, .content-section ol { color: var(--text-muted); margin-bottom: 14px; }
.content-section li { margin-bottom: 6px; }
.content-section a { border-bottom: 1px solid rgba(245,166,35,0.3); }
.content-section a:hover { border-bottom-color: var(--gold); }

/* ---- HOW-TO STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.step { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0b0f1a; font-family: var(--font-h); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h3 { font-size: 1rem; margin-bottom: 4px; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { padding: 14px 18px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.95rem; transition: background var(--transition); }
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--gold); font-weight: 400; transition: transform var(--transition); }
.faq-item.open .faq-q::after { content: '\2212'; transform: rotate(180deg); }
.faq-a { padding: 0 18px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.open .faq-a { padding: 0 18px 16px; max-height: 500px; }
.faq-a p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* ---- PROS/CONS ---- */
.pros-cons { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 20px 0; }
.pros, .cons { padding: 18px; border-radius: var(--radius-sm); }
.pros { background: rgba(39,174,96,0.08); border: 1px solid rgba(39,174,96,0.2); }
.cons { background: rgba(231,76,60,0.08); border: 1px solid rgba(231,76,60,0.2); }
.pros h3 { color: var(--green); }
.cons h3 { color: var(--red); }
.pros li, .cons li { font-size: 0.9rem; margin-bottom: 6px; }

/* ---- REVIEW BOX ---- */
.review-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin: 24px 0; }
.review-box .rating-big { font-size: 2.5rem; font-weight: 800; font-family: var(--font-h); color: var(--gold); }
.review-box .stars-big { font-size: 1.3rem; color: var(--gold); letter-spacing: 2px; }
.review-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.review-meta-item { padding: 10px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); }
.review-meta-item .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.review-meta-item .value { font-weight: 700; font-size: 1rem; margin-top: 2px; }

/* ---- BREADCRUMBS ---- */
.breadcrumbs { padding: 14px 0; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 6px; }

/* ---- COMPARISON TABLE ---- */
.compare-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.88rem; }
.compare-table th, .compare-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { background: rgba(255,255,255,0.03); color: var(--text-muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; }
.compare-table td { color: var(--text); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ---- FOOTER ---- */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 40px 0 20px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 12px; color: var(--gold); }
.footer-col a { display: block; font-size: 0.88rem; color: var(--text-muted); padding: 3px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; align-items: center; font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.footer-disclaimer { font-size: 0.75rem; color: var(--text-muted); padding: 16px 0; line-height: 1.6; opacity: 0.7; }

/* ---- BACK TO TOP ---- */
.back-top { position: fixed; bottom: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: #0b0f1a; border: none; cursor: pointer; font-size: 1.2rem; display: none; align-items: center; justify-content: center; z-index: 99; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all var(--transition); }
.back-top.show { display: flex; }
.back-top:hover { transform: scale(1.1); }

/* Card content area fills remaining space */
.card-body { padding: 0 18px; flex: 1; display: flex; flex-direction: column; }
.card-body .card-meta { margin-top: auto; }

/* ===== HEADER-RIGHT + CTA BUTTON ===== */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-cta {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 22px; font-size: 0.82rem; font-weight: 800;
  color: #000 !important;
  background: linear-gradient(135deg, #FFD700 0%, #F5A623 50%, #FFD700 100%);
  background-size: 200% 200%;
  border-radius: 50px; text-decoration: none !important;
  white-space: nowrap; letter-spacing: 0.5px; text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(245,166,35,0.35);
  transition: all 0.3s ease;
  animation: ctaPulse 2.5s ease-in-out infinite;
  flex-shrink: 0; position: relative; overflow: hidden;
}
.header-cta::before {
  content: ''; position: absolute; top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: ctaSweep 3s ease-in-out infinite;
}
.header-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(245,166,35,0.55);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(245,166,35,0.35); }
  50% { box-shadow: 0 4px 20px rgba(245,166,35,0.55); }
}
@keyframes ctaSweep {
  0% { left: -60%; }
  40%, 100% { left: 120%; }
}

/* ---- RESPONSIVE: TABLET ---- */
@media (min-width: 640px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- RESPONSIVE: DESKTOP ---- */
@media (min-width: 960px) {
  .casino-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .hero { padding: 64px 0 52px; }
  .cta-banner { flex-direction: row; text-align: left; }
  .card-meta { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  .hero-content { max-width: 800px; }
}

/* ---- RESPONSIVE: LARGE DESKTOP ---- */
@media (min-width: 1200px) {
  .casino-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  /* 28 cards = 7 perfect rows of 4 */
  .card-avatar { width: 44px; height: 44px; font-size: 0.9rem; }
  .card-title { font-size: 1rem; }
  .card-subtitle { font-size: 0.78rem; }
  .bonus-amount { font-size: 1.35rem; }
  .card-header { padding: 14px 16px 10px; }
  .card-body { padding: 0 16px; }
  .card-actions { padding: 0 16px 14px; }
  .filter-bar { gap: 10px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.55rem; }

}

/* ---- MOBILE MENU ---- */
@media (max-width: 768px) {
  .nav { position: fixed; top: 60px; left: 0; right: 0; background: rgba(11,15,26,0.98); backdrop-filter: blur(12px); flex-direction: column; padding: 16px; gap: 4px; transform: translateY(-120%); transition: transform 0.3s ease; border-bottom: 1px solid var(--border); z-index: 99; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 10px 16px; font-size: 0.95rem; }

  .header .container { height: 58px; gap: 8px; }
  .logo img { height: 52px; }
  .header-right { gap: 8px; }

  /* Header mobile */
  .header .container { height: 58px; gap: 8px; }
  .logo img { height: 52px; }
  .header-right { gap: 8px; }
  .header-cta { padding: 7px 14px; font-size: 0.72rem; }
  .header-cta .cta-emoji { display: none; }
  .hamburger { display: flex; }

  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 8px 10px; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp 0.5s ease forwards; }

/* ---- TL;DR Summary Box (AIO/AEO) ---- */
.tldr-box{background:linear-gradient(135deg,rgba(255,193,7,.08),rgba(255,193,7,.03));border:1px solid rgba(255,193,7,.3);border-left:4px solid var(--gold);border-radius:12px;padding:20px 24px;margin:20px 0 24px;font-size:.97rem;line-height:1.7}
.tldr-box strong{display:block;margin-bottom:8px;color:var(--gold);font-size:1.05rem}
.tldr-box p{margin:0;color:rgba(255,255,255,.88)}

/* ---- Article Meta (Date + Author) ---- */
.article-meta{display:flex;align-items:center;gap:8px;font-size:.85rem;color:rgba(255,255,255,.5);margin:8px 0 20px;flex-wrap:wrap}
.article-meta time{color:rgba(255,255,255,.6)}
.article-meta .author{color:rgba(255,193,7,.7)}

/* ---- Enhanced Content Sections ---- */
.provider-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:12px;margin:16px 0}
.provider-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:10px;padding:14px;text-align:center;transition:border-color .2s}
.provider-card:hover{border-color:var(--gold)}
.provider-card .provider-name{font-weight:600;color:var(--white);margin-bottom:4px}
.provider-card .provider-info{font-size:.82rem;color:rgba(255,255,255,.5)}

.info-box{background:rgba(255,193,7,.05);border:1px solid rgba(255,193,7,.15);border-radius:10px;padding:18px 22px;margin:16px 0}
.info-box h4{color:var(--gold);margin:0 0 8px;font-size:1rem}

.security-badges{display:flex;gap:16px;flex-wrap:wrap;margin:12px 0}
.badge{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:10px 16px;font-size:.85rem;display:flex;align-items:center;gap:8px}

.tip-card{background:linear-gradient(135deg,rgba(76,175,80,.08),rgba(76,175,80,.02));border:1px solid rgba(76,175,80,.2);border-radius:10px;padding:16px 20px;margin:10px 0}
.tip-card h4{color:#4CAF50;margin:0 0 8px;font-size:.95rem}
.tip-card p{margin:0;font-size:.9rem;color:rgba(255,255,255,.75)}

.withdrawal-steps{counter-reset:wstep}
.withdrawal-step{counter-increment:wstep;position:relative;padding-left:40px;margin:12px 0}
.withdrawal-step::before{content:counter(wstep);position:absolute;left:0;top:0;width:28px;height:28px;background:var(--gold);color:var(--dark);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem}


/* ===== SUB-RATINGS & PROS/CONS ===== */












@media (max-width: 639px) {
  
  
  
  
}

/* === COMPACT SUB-RATINGS 2×2 GRID === */
.sr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; margin: 10px 0 8px; padding: 10px 0 6px; border-top: 1px solid rgba(255,255,255,0.08); }
.sr-item { }
.sr-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; }
.sr-lbl { font-size: 10px; color: #8899aa; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.sr-val { font-size: 11px; color: #e2e8f0; font-weight: 700; }
.sr-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.sr-fill { height: 100%; border-radius: 2px; transition: width 0.6s ease; }

.sr-pc { display: flex; gap: 10px; margin: 8px 0 4px; padding: 8px 0 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 11px; line-height: 1.4; }
.sr-pro { color: #68d391; flex: 1; }
.sr-con { color: #fc8181; flex: 1; }

.card-proscons { margin: 0; padding: 0; }

@media (max-width: 639px) {
  .sr-grid { gap: 4px 8px; margin: 8px 0 6px; padding: 8px 0 4px; }
  .sr-lbl { font-size: 9px; }
  .sr-val { font-size: 10px; }
  .sr-bar { height: 3px; }
  .sr-pc { flex-direction: column; gap: 2px; font-size: 10px; margin: 6px 0 2px; padding: 6px 0 0; }
}
