/* ===== RABONA TANZANIA — MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap');

:root {
  --brand-primary: #c8f43c;   /* Rabona neon yellow-green */
  --brand-red:     #e8001e;   /* Rabona red */
  --brand-dark:    #0d1320;   /* official Rabona dark */
  --brand-navy:    #111a2e;   /* navy */
  --brand-mid:     #132d52;   /* mid navy */
  --brand-light:   #1a3b6e;   /* lighter navy */
  --brand-accent:  #2955a0;   /* blue accent */
  --text-main:     #ffffff;
  --text-muted:    #8fa3c4;
  --text-dark:     #b8cde8;
  --card-bg:       #0f1b2d;
  --card-border:   #1e3250;
  --success:       #00c87a;
  --gold:          #f0b429;
  --max-width:     1200px;
  --header-h:      72px;
  --radius-sm:     4px;
  --radius-md:     6px;
  --radius-lg:     12px;
  --transition:    0.25s ease;
  --shadow-card:   0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 20px rgba(200,244,60,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--brand-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: var(--brand-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Oswald', sans-serif; line-height: 1.2; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ===== HEADER ===== */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #0d1320;
  border-bottom: 2px solid var(--brand-red);
  height: var(--header-h);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 52px; width: auto; object-fit: contain; max-width: 200px; }
.logo-text { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 2px; text-transform: uppercase; }
.logo-text span { color: var(--brand-red); background: var(--brand-red); color: #fff; padding: 0 4px; border-radius: 2px; }

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  color: #fff; font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: 0;
  transition: all var(--transition); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 1px; font-style: italic;
}
.main-nav a:hover, .main-nav a.active { color: var(--brand-primary); background: rgba(200,244,60,0.07); }

.header-cta {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 10px 24px; border-radius: 4px;
  border: 2px solid transparent; cursor: pointer; transition: all var(--transition);
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.btn-primary {
  background: var(--brand-primary); color: #0d1320; border-color: var(--brand-primary);
}
.btn-primary:hover { background: #d8ff50; border-color: #d8ff50; color: #0d1320; box-shadow: var(--shadow-glow); }
.btn-red {
  background: var(--brand-red); color: #fff; border-color: var(--brand-red);
}
.btn-red:hover { background: #ff1a35; border-color: #ff1a35; box-shadow: 0 0 20px rgba(232,0,30,0.4); }
.btn-outline {
  background: transparent; color: #fff; border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: #0d1320; }
.btn-outline-green {
  background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary);
}
.btn-outline-green:hover { background: var(--brand-primary); color: #0d1320; }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-main); border-radius: 2px; transition: all var(--transition);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: var(--brand-dark); flex-direction: column;
  padding: 24px 20px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-nav-close { background: none; border: none; cursor: pointer; color: #fff; font-size: 1.5rem; }
.mobile-nav a {
  display: block; color: var(--text-main); font-size: 1.1rem; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid var(--card-border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 20px; width: 100%; text-align: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  min-height: 600px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.6) 60%, rgba(10,22,40,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 80px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,244,60,0.15); border: 1px solid rgba(200,244,60,0.3);
  color: var(--brand-primary); font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; margin-bottom: 20px; }
.hero h1 span { color: var(--brand-primary); }
.hero p { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 32px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-item .num { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--brand-primary); }
.hero-stat-item .lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-md); padding: 24px;
  transition: all var(--transition); opacity: 0; transform: translateY(20px);
}
.card.animate-in { opacity: 1; transform: translateY(0); }
.card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-card); transform: translateY(-4px); }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== SECTION HEADING ===== */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.section-heading h2 span { color: var(--brand-primary); }
.section-heading p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.section-label {
  display: inline-block; background: rgba(200,244,60,0.1); color: var(--brand-primary);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 12px;
}

/* ===== BONUS CARD ===== */
.bonus-card {
  background: linear-gradient(135deg, var(--brand-mid) 0%, var(--brand-light) 100%);
  border: 1px solid var(--brand-accent); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(200,244,60,0.08);
}
.bonus-amount { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--brand-primary); }
.bonus-label { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.bonus-features { text-align: left; margin-bottom: 24px; }
.bonus-features li { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--card-border); font-size: 0.9rem; }
.bonus-features li:last-child { border-bottom: none; }
.bonus-features li .icon { color: var(--brand-primary); font-size: 0.9rem; flex-shrink: 0; }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
  background: var(--brand-mid); color: var(--brand-primary); font-weight: 700;
  padding: 12px 16px; text-align: left; font-family: 'Oswald', sans-serif; letter-spacing: 0.5px;
  border-bottom: 2px solid var(--brand-primary);
}
.data-table td { padding: 11px 16px; border-bottom: 1px solid var(--card-border); color: var(--text-dark); }
.data-table tr:hover td { background: rgba(200,244,60,0.04); }
.data-table .yes { color: var(--success); font-weight: 700; }
.data-table .no { color: var(--brand-red); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--card-border); }

/* ===== STAT BAR / PROGRESS ===== */
.stat-bar-wrap { margin-bottom: 18px; }
.stat-bar-label { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; }
.stat-bar-label span:first-child { color: var(--text-dark); }
.stat-bar-label span:last-child { color: var(--brand-primary); font-weight: 700; }
.stat-bar-track { height: 8px; background: var(--card-border); border-radius: 4px; overflow: hidden; }
.stat-bar-fill { height: 100%; background: linear-gradient(90deg, var(--brand-primary), #8bef00); border-radius: 4px; transition: width 1s ease; }

/* ===== RATING STARS ===== */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-num { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--brand-primary); }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--brand-primary); color: var(--brand-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.1rem;
}
.step-body h4 { font-size: 1rem; margin-bottom: 4px; }
.step-body p { font-size: 0.875rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--card-border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  gap: 16px;
}
.faq-question .icon { color: var(--brand-primary); font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 18px 0; color: var(--text-muted); font-size: 0.9rem; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ===== AUTHOR BLOCK ===== */
.author-block {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; gap: 24px; align-items: flex-start; margin-top: 48px;
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--brand-primary); }
.author-info h4 { font-size: 1rem; margin-bottom: 2px; }
.author-info .role { color: var(--brand-primary); font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; }
.author-info p { font-size: 0.875rem; color: var(--text-muted); }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); padding: 16px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb .sep { color: var(--card-border); }
.breadcrumb .current { color: var(--text-main); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(200,244,60,0.08) 0%, rgba(200,244,60,0.03) 100%);
  border: 1px solid rgba(200,244,60,0.25); border-left: 4px solid var(--brand-primary);
  border-radius: var(--radius-sm); padding: 20px 24px; margin: 24px 0;
}
.warning-box {
  background: rgba(232,0,30,0.08); border: 1px solid rgba(232,0,30,0.25);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-sm); padding: 20px 24px; margin: 24px 0;
}

/* ===== BADGE / PILL ===== */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-green { background: rgba(0,200,122,0.15); color: var(--success); }
.badge-red { background: rgba(232,0,30,0.15); color: var(--brand-red); }
.badge-yellow { background: rgba(240,180,41,0.15); color: var(--gold); }
.badge-primary { background: rgba(200,244,60,0.15); color: var(--brand-primary); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 320px; display: flex; align-items: center;
  background: var(--brand-navy);
}
.page-hero .hero-bg { filter: brightness(0.4); }
.page-hero-content { position: relative; z-index: 2; padding: 64px 0; }
.page-hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero-content p { color: var(--text-muted); max-width: 600px; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--brand-dark); border-top: 1px solid var(--card-border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo-text { font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand .logo img { height: 40px !important; width: auto !important; max-width: none; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.footer-col h5 { font-family: 'Oswald', sans-serif; font-size: 0.9rem; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--brand-primary); }
.footer-bottom {
  border-top: 1px solid var(--card-border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: gap 12px;
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--brand-primary); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--brand-red); color: var(--brand-red); font-weight: 900; font-size: 0.7rem;
}

/* ===== FLOATING BONUS BANNER ===== */
.bonus-popup {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 360px;
  max-width: calc(100vw - 32px);   /* НИКОГДА не шире экрана */
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.75);
  animation: popIn 0.6s cubic-bezier(0.34,1.56,0.64,1) 1.5s both;
}

@keyframes popIn {
  from { opacity:0; transform: translateY(40px) scale(0.85); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.bonus-popup-close {
  position: absolute; top: 10px; right: 12px; z-index: 10;
  background: rgba(0,0,0,0.55); border: none; color: #fff;
  cursor: pointer; font-size: 1rem; line-height: 1;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.bonus-popup-close:hover { background: rgba(0,0,0,0.85); }
.bonus-popup-img-wrap { display: block; line-height: 0; }
.bonus-popup-img { width: 100%; height: auto; display: block; }
.bonus-popup-cta {
  background: #1a2a3e;
  padding: 14px 20px 12px;
  text-align: center;
}
.btn-popup-cta {
  display: block; width: 100%;
  background: #c8f43c; color: #0d1620;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none;
  padding: 13px 20px; border-radius: 6px;
  border: none; cursor: pointer;
  animation: ctaPulse 2s ease-in-out 2.5s infinite;
  transition: filter 0.2s, transform 0.15s;
}
.btn-popup-cta:hover {
  filter: brightness(1.12);
  transform: scale(1.03);
  animation: none;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,244,60,0.55); }
  50%       { box-shadow: 0 0 0 10px rgba(200,244,60,0); }
}
.bonus-popup-legal {
  font-size: 0.68rem; color: #5a7090;
  margin: 8px 0 0; text-align: center;
}

@media (max-width: 767px) {
  .bonus-popup {
    /* Всегда помещается в экран на мобиле */
    width: auto;
    min-width: 260px;
    max-width: 340px;
    right: 8px;
    left: 8px;
    bottom: 8px;
  }
}
@media (max-width: 380px) {
  .bonus-popup {
    right: 6px;
    left: 6px;
    bottom: 6px;
  }
}





/* ===== SEO ARTICLE ===== */
.article-body h2 { font-size: 1.4rem; margin: 32px 0 12px; color: #fff; }
.article-body h3 { font-size: 1.15rem; margin: 24px 0 8px; color: var(--text-dark); }
.article-body p { margin-bottom: 16px; color: var(--text-dark); line-height: 1.8; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 16px; }
.article-body li { margin-bottom: 8px; color: var(--text-dark); }
.article-body strong { color: #fff; }

/* ===== PROMO BANNER WITH CTA BUTTON ===== */
.promo-banner-wrap { box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.promo-banner-wrap img { border-radius: 12px; }
.btn-banner-cta {
  display: inline-block;
  background: #c8f43c; color: #0d1620;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px; border-radius: 6px;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,244,60,0.4);
  animation: bannerPulse 2.5s ease-in-out infinite;
}
.btn-banner-cta:hover {
  filter: brightness(1.12);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,244,60,0.6);
  animation: none;
}
@keyframes bannerPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,244,60,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(200,244,60,0.7); }
}
@media (max-width: 480px) {
  .btn-banner-cta { font-size: 0.85rem; padding: 10px 20px; }
}



/* ===== COMPARISON TABLE ===== */
.compare-header { font-family: 'Oswald', sans-serif; }

/* ===== PAYMENT METHOD ICONS ===== */
.payment-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.payment-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); padding: 12px 20px;
  display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600;
}
.payment-card .pay-icon { font-size: 1.3rem; }

/* ===== ANIMATIONS ===== */
.card, .stat-item, .bonus-card, .step, .payment-card {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in { opacity: 1 !important; transform: translateY(0) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn-outline { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: 480px; }
  .hero-content { padding: 60px 0; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .author-block { flex-direction: column; align-items: center; text-align: center; }
  .section { padding: 48px 0; }
  .bonus-popup { width: calc(100vw - 32px); max-width: 320px; bottom: 12px; right: 50%; transform: translateX(50%); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ===== CHART BARS ===== */
.chart-bars { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 28px 32px; }
.stat-bar-wrap { margin-bottom: 20px; }
.stat-bar-wrap:last-child { margin-bottom: 0; }
.stat-bar-label { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 8px; }
.stat-bar-label span:first-child { color: var(--text-dark); font-weight: 500; }
.stat-bar-label span:last-child { color: var(--brand-primary); font-weight: 700; }
.stat-bar-track { height: 10px; background: var(--brand-mid); border-radius: 5px; overflow: hidden; }
.stat-bar-fill { height: 100%; background: linear-gradient(90deg, var(--brand-primary) 0%, #8bef00 100%); border-radius: 5px; width: 0; transition: width 1.2s ease; }