/* ──────────────────────────────────────────────
   SPORT LIVE - Arabic Sports Streaming Platform
   Dark Premium Theme | RTL Layout
   ────────────────────────────────────────────── */

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #151d2e;
  --bg-card-hover: #1a2540;
  --accent-red: #e63946;
  --accent-green: #2ec4b6;
  --accent-gold: #f4a261;
  --text-primary: #f0f4ff;
  /* Slightly higher contrast for Lighthouse accessibility */
  --text-muted: #aab4e3;
  --border: #1e2d4a;
  --gradient-live: linear-gradient(135deg, #e63946, #c1121f);
  --gradient-hero: linear-gradient(180deg, #0a0e1a 0%, #0d1526 100%);
  --font-main: 'Cairo', 'Tajawal', sans-serif;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  min-height: 100vh;
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(230,57,70,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(46,196,182,0.04) 0%, transparent 50%);
}

a { text-decoration: none; color: inherit; }

/* ── Navbar ─────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
}
.logo em { color: var(--accent-red); font-style: normal; }
.logo-icon { font-size: 1.6rem; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-right: auto;
}

.nav-link {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  background: rgba(230,57,70,0.15);
  color: var(--accent-red);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.3);
  color: var(--accent-red);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── Pulse Dot ──────────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.pulse-dot.red { background: var(--accent-red); }
.pulse-dot.small { width: 6px; height: 6px; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 20px 50px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(230,57,70,0.08) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--accent-red);
  position: relative;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 30px;
}

.stat { text-align: center; }
.stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--accent-red); }
.stat span { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { color: var(--border); font-size: 1.2rem; }

.demo-data-banner {
  max-width: 1200px;
  margin: -24px auto 32px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 162, 97, 0.45);
  background: rgba(244, 162, 97, 0.12);
  color: var(--text-primary);
  font-size: 0.92rem;
  line-height: 1.55;
}
.demo-data-banner code {
  font-size: 0.85em;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

/* ── Content ────────────────────────────────── */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.section { margin-bottom: 48px; }

.section-header { margin-bottom: 20px; }

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-red);
}

/* ── Match Cards Grid ───────────────────────── */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.match-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}

.match-card.is-live::before {
  background: var(--gradient-live);
}

.match-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(230,57,70,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-sport-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  width: fit-content;
}

.card-sport-badge.football { background: rgba(46,196,182,0.1); color: var(--accent-green); }
.card-sport-badge.basketball { background: rgba(244,162,97,0.1); color: var(--accent-gold); }
.card-sport-badge.tennis { background: rgba(74,144,226,0.1); color: #4a90e2; }

.card-league {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.league-logo { width: 18px; height: 18px; object-fit: contain; }

.card-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.team-logo { width: 46px; height: 46px; object-fit: contain; }

.team-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.team-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.match-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 70px;
}

.score {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.vs-badge {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--text-muted);
  background: var(--border);
  padding: 4px 10px;
  border-radius: 6px;
}

.match-time {
  font-size: 0.78rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.live-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(230,57,70,0.15);
  color: var(--accent-red);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.live-tag.large {
  font-size: 0.9rem;
  padding: 4px 12px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
}

.stream-count { color: var(--text-muted); }

.watch-btn {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── Empty State ────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.3rem; color: var(--text-primary); margin-bottom: 8px; }

/* ── Match Detail Page ───────────────────────── */
.match-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.match-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 24px;
  text-align: center;
}

.match-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sport-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.sport-badge.football { background: rgba(46,196,182,0.15); color: var(--accent-green); }
.sport-badge.basketball { background: rgba(244,162,97,0.15); color: var(--accent-gold); }
.sport-badge.tennis { background: rgba(74,144,226,0.15); color: #4a90e2; }

.league-name { color: var(--text-muted); font-size: 0.9rem; }

.match-scoreboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.team-block { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; }

.team-logo-large { width: 80px; height: 80px; object-fit: contain; }

.team-placeholder.large {
  width: 80px; height: 80px;
  font-size: 2rem;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}

.team-name-large { font-size: 1.1rem; font-weight: 700; }

.score-block {
  min-width: 120px;
  text-align: center;
}

.big-score {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 4px;
}

.big-vs {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.kickoff-time {
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 600;
}

/* ── Stream Links ───────────────────────────── */
.streams-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.streams-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.streams-grid { display: flex; flex-direction: column; gap: 10px; }

.stream-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  transition: all 0.2s;
  cursor: pointer;
}

.stream-link-card:hover {
  background: rgba(230,57,70,0.08);
  border-color: rgba(230,57,70,0.4);
  transform: translateX(-4px);
}

.stream-number {
  width: 30px;
  height: 30px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.stream-info { flex: 1; }
.stream-label { font-weight: 600; font-size: 0.95rem; }
.stream-source { font-size: 0.78rem; color: var(--text-muted); }

.stream-quality {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.stream-quality.hd, .stream-quality.fhd { background: rgba(46,196,182,0.15); color: var(--accent-green); }
.stream-quality.sd { background: rgba(139,156,200,0.15); color: var(--text-muted); }
.stream-quality\\.4k { background: rgba(244,162,97,0.15); color: var(--accent-gold); }

.stream-arrow { color: var(--accent-red); font-weight: 700; font-size: 1.1rem; }

/* ── No Streams / Searching ─────────────────── */
.no-streams {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

.searching-animation {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.searching-animation .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-red);
  animation: bounce 1.2s infinite;
}
.searching-animation .dot:nth-child(2) { animation-delay: 0.2s; }
.searching-animation .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
}

.hint { font-size: 0.82rem; margin-top: 8px; }

.refresh-btn {
  margin-top: 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.refresh-btn:hover { border-color: var(--accent-red); color: var(--accent-red); }

/* ── Share Section ──────────────────────────── */
.share-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.share-section h3 { font-size: 1.1rem; margin-bottom: 16px; }

.share-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.share-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  font-family: var(--font-main);
}

.share-btn.facebook { background: #1877f2; color: white; }
.share-btn.facebook:hover { background: #166fe5; transform: translateY(-2px); }
.share-btn.whatsapp { background: #25d366; color: white; }
.share-btn.whatsapp:hover { background: #20bc5a; transform: translateY(-2px); }

/* ── Back Button ────────────────────────────── */
.back-section { text-align: right; }

.back-btn {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.back-btn:hover { color: var(--accent-red); }

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand .logo-text { font-size: 1.2rem; font-weight: 900; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-red); }

.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ── Error Page ─────────────────────────────── */
.error-page {
  text-align: center;
  padding: 120px 20px;
}
.error-icon { font-size: 5rem; margin-bottom: 16px; }
.error-page h1 { font-size: 4rem; font-weight: 900; color: var(--accent-red); }
.error-page p { color: var(--text-muted); margin: 10px 0 24px; }

/* ── Static Content Pages ───────────────────── */
.page-content {
  padding: 36px 0 60px;
}

.legal-wrapper {
  max-width: 920px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.legal-wrapper h1 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.legal-wrapper h2 {
  font-size: 1.2rem;
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.legal-wrapper p,
.legal-wrapper li {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

.legal-wrapper ul {
  padding-right: 18px;
}

.legal-wrapper a {
  color: var(--accent-red);
}

/* ── Cookie Consent ─────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  background: rgba(17, 24, 39, 0.96);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  flex-wrap: wrap;
}

.cookie-banner__content p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.cookie-banner__content a {
  color: var(--accent-red);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-main);
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn--accept {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.cookie-btn--accept:hover {
  background: #c1121f;
}

.cookie-btn--reject {
  background: transparent;
  color: var(--text-primary);
}

.cookie-btn--reject:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

/* ── Blog ───────────────────────────────────── */
.blog-hero { padding-bottom: 30px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  color: inherit;
  text-align: right;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(230,57,70,0.35);
}

.blog-card__img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-secondary);
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-top: 4px;
}

.blog-card__time {
  font-size: 0.78rem;
  color: var(--accent-gold);
}

.blog-article-page {
  padding: 28px 16px 60px;
}

.blog-article-inner {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article-header {
  text-align: center;
  margin-bottom: 24px;
}

.blog-article-kicker {
  font-size: 0.82rem;
  color: var(--accent-green);
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-article-title {
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-article-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-article-figure {
  margin: 0 0 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.blog-article-image {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

.blog-article-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg-card);
}

.blog-article-caption a {
  color: var(--accent-red);
}

.blog-body-reset h2,
.blog-body-reset h3 {
  margin: 1.2em 0 0.5em;
  color: var(--text-primary);
}

.blog-body-reset p,
.blog-body-reset li {
  margin-bottom: 0.75em;
  color: var(--text-muted);
  line-height: 1.9;
}

.blog-article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.blog-admin-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0 0 16px;
  padding: 0 4px;
}

.blog-admin-hint code {
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.blog-admin-form {
  padding: 8px 4px 16px;
}

.blog-form-row {
  margin-bottom: 16px;
}

.blog-form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.blog-checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.blog-input-wide {
  width: 100%;
  max-width: 560px;
}

.blog-small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #5a6a8a;
}

.blog-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .matches-grid { grid-template-columns: 1fr; }
  .match-scoreboard { gap: 10px; }
  .team-name-large { font-size: 0.9rem; }
  .big-score { font-size: 2rem; }
  .footer-container { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  /* Blog mobile polish */
  .content-wrapper { padding: 0 12px 50px; }
  .blog-grid { grid-template-columns: 1fr; gap: 14px; }
  .blog-card__body { padding: 14px; }
  .blog-card__title { font-size: 1rem; }
  .blog-card__excerpt { -webkit-line-clamp: 2; }
  .blog-hero { padding-bottom: 22px; }
  .blog-article-page { padding: 20px 12px 50px; }
  .blog-article-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}
