/* ============================================================
   KARBARA NEWS — International News Website Design System
   Brand Color Palette: Deep Navy (#0A2540) & Crimson Red (#D90429)
   ============================================================ */

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

:root {
  /* Light Theme */
  --bg-primary: #f4f6f8;
  --bg-secondary: #ffffff;
  --bg-tertiary: #e9ecef;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-navbar: rgba(255,255,255,0.92);
  --bg-overlay: rgba(10, 37, 64, 0.7);
  --bg-ticker: #0A2540;
  --bg-search: rgba(255,255,255,0.98);
  --bg-footer: #071729;

  --text-primary: #0a192f;
  --text-secondary: #4a5568;
  --text-tertiary: #718096;
  --text-inverse: #ffffff;

  /* Karbara Brand Colors */
  --brand-navy: #0A2540;
  --brand-navy-light: #1E3A8A;
  --accent: #D90429;
  --accent-hover: #ef233c;
  --accent-light: rgba(217, 4, 41, 0.08);
  --accent-glow: rgba(217, 4, 41, 0.25);

  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.15);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-card-hover: 0 10px 30px rgba(10, 37, 64, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1340px;
  --topbar-height: 38px;
  --navbar-height: 86px;
  --ticker-height: 42px;
}

[data-theme="dark"] {
  --bg-primary: #070e17;
  --bg-secondary: #0d1826;
  --bg-tertiary: #162436;
  --bg-card: #101e30;
  --bg-card-hover: #16283f;
  --bg-navbar: rgba(13, 24, 38, 0.96);
  --bg-overlay: rgba(0,0,0,0.82);
  --bg-ticker: #040a12;
  --bg-search: rgba(13, 24, 38, 0.98);
  --bg-footer: #02060b;

  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-tertiary: #64748b;
  --text-inverse: #0f172a;

  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.18);
  --shadow-card-hover: 0 10px 30px rgba(0,0,0,0.4);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; transition: background var(--transition-normal); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ---- Top Info Bar ---- */
.top-bar {
  background: linear-gradient(90deg, #07192b 0%, var(--brand-navy) 50%, #850218 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  border-bottom: 2px solid var(--accent);
}
.top-bar__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__left, .top-bar__right { display: flex; align-items: center; gap: 14px; }
.top-bar__divider { opacity: 0.4; }
.top-bar__link { color: rgba(255,255,255,0.9); font-weight:600; transition: color var(--transition-fast); }
.top-bar__link:hover { color: #ffffff; text-decoration: underline; }

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: var(--bg-navbar);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border-strong);
  z-index: 1000;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}
.navbar.scrolled { box-shadow: 0 8px 24px rgba(10, 37, 64, 0.15); }
.navbar__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__left { display: flex; align-items: center; gap: 16px; }
.navbar__logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 62px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); transition: transform var(--transition-fast); }
.navbar__logo:hover .logo-img { transform: scale(1.03); }

.brand-tagline-header { font-size: 0.72rem; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; display: inline-block; padding-left: 10px; border-left: 2px solid var(--border-strong); line-height: 1.2; }

.navbar__menu-btn { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.navbar__menu-btn span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; }

.navbar__center { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-link:hover { color: var(--accent); background: var(--accent-light); }
.nav-link.active { color: var(--accent); font-weight: 700; position: relative; }
.nav-link.active::after { content: ''; position: absolute; bottom: -12px; left: 14px; right: 14px; height: 3px; background: var(--accent); border-radius: 3px; }

.navbar__right { display: flex; align-items: center; gap: 6px; }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.icon-btn:hover { background: var(--accent-light); color: var(--accent); transform: scale(1.05); }

#theme-toggle .sun-icon { display: block; }
#theme-toggle .moon-icon { display: none; }
[data-theme="dark"] #theme-toggle .sun-icon { display: none; }
[data-theme="dark"] #theme-toggle .moon-icon { display: block; }

/* ---- Ad Containers (Header, Sidebar, In-feed) ---- */
.ad-container { max-width: var(--max-width); margin: 16px auto 0; padding: 0 24px; }
.ad-banner { background: var(--bg-tertiary); border: 1px dashed var(--border-strong); border-radius: var(--radius-sm); position: relative; overflow: hidden; text-align: center; }
.ad-banner img { width: 100%; max-height: 100px; object-fit: cover; display: block; transition: transform var(--transition-slow); }
.ad-banner:hover img { transform: scale(1.02); }
.ad-label { position: absolute; top: 4px; right: 8px; font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.6); padding: 2px 6px; border-radius: 3px; letter-spacing: 0.05em; z-index: 5; }

.ad-banner--feed { text-align: left; }
.ad-feed-box { display: flex; gap: 20px; align-items: center; padding: 16px; background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition-fast); }
.ad-feed-box:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.ad-feed-box img { width: 140px; height: 90px; border-radius: var(--radius-sm); object-fit: cover; }
.ad-feed-info h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin: 4px 0; color: var(--text-primary); }
.ad-feed-info p { font-size: 0.85rem; color: var(--text-secondary); }
.ad-feed-tag { font-size: 0.68rem; font-weight: 800; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---- Breaking News Ticker ---- */
.ticker { max-width: var(--max-width); margin: 16px auto; padding: 0 24px; }
.ticker { background: var(--bg-ticker); height: var(--ticker-height); border-radius: var(--radius-sm); display: flex; align-items: center; overflow: hidden; }
.ticker__badge { background: var(--accent); color: #fff; padding: 0 16px; height: 100%; display: flex; align-items: center; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; white-space: nowrap; flex-shrink: 0; }
.ticker__wrapper { flex: 1; overflow: hidden; padding-left: 16px; }
.ticker__content { display: flex; gap: 40px; white-space: nowrap; animation: ticker-scroll 30s linear infinite; }
.ticker__item { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 500; }

@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Main Content ---- */
.main { max-width: var(--max-width); margin: 0 auto; padding: 0 24px 60px; min-height: 80vh; }

/* ---- Hero Headline Section ---- */
.hero { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-bottom: 40px; min-height: 440px; }
.hero__skeleton { grid-column: 1 / -1; height: 440px; border-radius: var(--radius-lg); }

.hero__main { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; }
.hero__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.hero__main:hover img { transform: scale(1.03); }
.hero__main-overlay { position: relative; z-index: 2; background: linear-gradient(180deg, transparent 0%, rgba(10,37,64,0.92) 100%); padding: 32px; color: #fff; }
.hero__badge { display: inline-block; background: var(--accent); color: #fff; padding: 4px 10px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; border-radius: 4px; margin-bottom: 12px; }
.hero__main-title { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 800; line-height: 1.25; margin-bottom: 10px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero__main-desc { font-size: 0.95rem; color: rgba(255,255,255,0.82); line-height: 1.5; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero__main-meta { font-size: 0.8rem; color: rgba(255,255,255,0.7); display: flex; gap: 10px; }

.hero__side { display: flex; flex-direction: column; gap: 20px; }
.hero__side-card { position: relative; flex: 1; border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff; cursor: pointer; min-height: 200px; }
.hero__side-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.hero__side-card:hover img { transform: scale(1.04); }
.hero__side-overlay { position: relative; z-index: 2; background: linear-gradient(180deg, transparent 0%, rgba(10,37,64,0.9) 100%); margin: -20px; padding: 20px; }
.hero__side-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }

/* ---- Layout Multi-Column ---- */
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; }

.section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.section-header__title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.section-header__line { flex: 1; height: 3px; background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); border-radius: 3px; }

.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card { background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; transition: var(--transition-normal); cursor: pointer; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--accent-glow); }
.card__img-wrapper { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.card__img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.card:hover .card__img-wrapper img { transform: scale(1.05); }
.card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.card__source { font-size: 0.72rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: var(--text-primary); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card__desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; flex: 1; }
.card__meta { font-size: 0.75rem; color: var(--text-tertiary); display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 10px; margin-top: auto; }

/* Skeletons */
.skeleton-pulse { animation: skeletonPulse 1.5s ease-in-out infinite; background: var(--bg-tertiary); }
@keyframes skeletonPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }

/* ---- Sidebar Widgets ---- */
.secondary-column { display: flex; flex-direction: column; gap: 28px; }
.widget { background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 20px; box-shadow: var(--shadow-sm); }
.widget__header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; border-bottom: 2px solid var(--border); padding-bottom: 10px; }
.widget__title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--text-primary); }

.trending-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: var(--transition-fast); }
.trending-item:last-child { border-bottom: none; }
.trending-item:hover .trending-title { color: var(--accent); }
.trending-num { font-size: 1.4rem; font-weight: 900; color: var(--accent); width: 28px; flex-shrink: 0; line-height: 1; }
.trending-title { font-size: 0.9rem; font-weight: 700; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.ad-widget { text-align: center; position: relative; padding: 12px; }
.ad-widget img { border-radius: var(--radius-sm); max-height: 300px; object-fit: cover; width: 100%; }

.app-spotlight__box { background: linear-gradient(135deg, #07192b 0%, var(--brand-navy) 60%, #900319 100%); color: #fff; padding: 24px; border-radius: var(--radius-md); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.1); }
.app-spotlight__box .app-icon { height: 64px; width: auto; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.app-spotlight__box h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; }
.app-spotlight__box p { font-size: 0.85rem; opacity: 0.9; line-height: 1.4; }

/* ---- Article Detail Modal ---- */
.article-modal { position: fixed; inset: 0; background: var(--bg-overlay); backdrop-filter: blur(12px); z-index: 3000; opacity: 0; visibility: hidden; transition: var(--transition-normal); display: flex; justify-content: center; align-items: center; padding: 24px; }
.article-modal.active { opacity: 1; visibility: visible; }
.article-modal__container { background: var(--bg-card); width: 100%; max-width: 820px; max-height: 90vh; overflow-y: auto; border-radius: var(--radius-lg); padding: 36px; position: relative; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.article-modal__close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-tertiary); font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }

/* ---- Footer ---- */
.footer { background: var(--bg-footer); color: rgba(255,255,255,0.75); padding: 60px 24px 24px; border-top: 4px solid var(--accent); }
.footer__container { max-width: var(--max-width); margin: 0 auto; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 76px; width: auto; margin-bottom: 16px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.footer__tagline { font-size: 0.9rem; opacity: 0.8; max-width: 340px; line-height: 1.6; }
.footer__links { display: flex; gap: 50px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: #fff; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.footer__col a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition-fast); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 0.82rem; opacity: 0.5; }

/* ---- Search Overlay & Mobile Drawer ---- */
.search-overlay { position: fixed; inset: 0; background: var(--bg-search); backdrop-filter: blur(20px); z-index: 2500; opacity: 0; visibility: hidden; transition: var(--transition-normal); padding-top: 100px; display: flex; justify-content: center; }
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay__container { width: 100%; max-width: 640px; padding: 0 24px; }
.search-overlay__input-wrapper { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--bg-card); border: 2px solid var(--accent); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.search-overlay__input { flex: 1; border: none; outline: none; font-size: 1.1rem; background: transparent; color: var(--text-primary); }
.search-overlay__close { font-weight: 700; font-size: 1.2rem; padding: 4px; }

.mobile-nav-overlay { position: fixed; inset: 0; background: var(--bg-overlay); z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition-normal); }
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav { width: 310px; height: 100%; background: var(--bg-secondary); padding: 24px; transform: translateX(-100%); transition: transform var(--transition-normal); overflow-y: auto; }
.mobile-nav-overlay.active .mobile-nav { transform: translateX(0); }
.mobile-nav__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.mobile-logo { height: 56px; width: auto; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav__link { padding: 12px 14px; font-weight: 600; border-radius: var(--radius-sm); }
.mobile-nav__link.active { background: var(--accent-light); color: var(--accent); }

/* Buttons */
.btn { padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.88rem; transition: var(--transition-fast); display: inline-flex; align-items: center; justify-content: center; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 14px var(--accent-glow); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .content-layout { grid-template-columns: 1fr; }
  .secondary-column { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --navbar-height: 60px; }
  .navbar__center { display: none; }
  .navbar__menu-btn { display: flex; }
  .top-bar { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .secondary-column { grid-template-columns: 1fr; }
  .hero__main-title { font-size: 1.5rem; }
  .footer__top { flex-direction: column; }
  .footer__links { flex-wrap: wrap; gap: 30px; }
  .ad-feed-box { flex-direction: column; text-align: center; }
  .ad-feed-box img { width: 100%; height: 140px; }
}

/* Floating Bottom Ad Banner */
.floating-ad {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  background: var(--bg-card);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  border: 1px solid var(--border-strong);
  border-bottom: none;
  z-index: 900;
  padding: 8px;
  animation: slideUpAd 0.4s ease-out;
}
@keyframes slideUpAd {
  from { transform: translate(-50%, 100%); }
  to { transform: translate(-50%, 0); }
}
.floating-ad__close {
  position: absolute;
  top: -12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.floating-ad img {
  width: 100%;
  max-height: 80px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Audio Text-To-Speech Toolbar */
.tts-bar {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.tts-bar__title { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.tts-bar__controls { display: flex; gap: 8px; align-items: center; }

/* Admin Rich Text Toolbar & Preset Picker */
.richtext-toolbar {
  display: flex;
  gap: 6px;
  background: var(--bg-tertiary);
  padding: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 1px solid var(--border-strong);
  border-bottom: none;
  flex-wrap: wrap;
}
.rt-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition-fast);
}
.rt-btn:hover { background: var(--accent); color: #fff; }

.preset-picker {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.preset-chip {
  padding: 6px 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}
.preset-chip:hover { background: var(--accent); color: #fff; }
