/* ============================================================
   SportFan.ro — Design System
   ============================================================ */

/* Fonts loaded via <link> in HTML for better performance */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #FF3333;
  --navy: #0D1B2A;
  --navy-light: #1B2A3B;
  --gold: #FFC107;
  --green: #1B7A4E;
  --teal: #00796B;
  --orange: #E65100;
  --slate: #455A64;
  --bg: #EFEFEF;
  --card: #FFFFFF;
  --border: #E0E0E0;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --ticker-bg: #CC0000;
  --header-bg: #111111;
  --shadow: 0 2px 8px rgba(0, 0, 0, .10);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, .18);
  --radius: 6px;
  --transition: .22s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: #aaa;
  font-size: 12px;
  padding: 5px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #aaa;
}

.top-bar a:hover {
  color: #fff;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.logo-text {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-text span {
  color: var(--red);
}

/* Header Search */
.header-search {
  display: flex;
  align-items: center;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.header-search:focus-within {
  border-color: var(--red);
}

.header-search input {
  background: none;
  border: none;
  color: #fff;
  padding: 7px 15px;
  outline: none;
  width: 220px;
  font-size: 13px;
}

.header-search input::placeholder {
  color: #777;
}

.header-search button {
  background: var(--red);
  color: #fff;
  padding: 7px 14px;
  font-size: 15px;
  transition: var(--transition);
}

.header-search button:hover {
  background: var(--red-dark);
}

/* ── Navigation ───────────────────────────────────────────── */
.main-nav {
  background: var(--red);
}

.main-nav ul {
  display: flex;
  align-items: center;
}

.main-nav a {
  display: block;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 11px 18px;
  transition: var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #fff;
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(0, 0, 0, .18);
}

.nav-live {
  background: var(--gold) !important;
  color: #111 !important;
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .75;
  }
}

/* ── Breaking News Ticker ─────────────────────────────────── */
.breaking-news {
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 36px;
  border-bottom: 2px solid var(--red);
}

.breaking-label {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 32px 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 130px;
  position: relative;
  z-index: 2;
}

.breaking-label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  border: 18px solid transparent;
  border-left-color: var(--red);
}

.ticker-wrapper {
  flex: 1;
  overflow: hidden;
  padding-left: 20px;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}

.ticker-item {
  color: #ddd;
  font-size: 13px;
  padding-right: 60px;
  cursor: pointer;
  transition: var(--transition);
}

.ticker-item:hover {
  color: var(--red-light);
}

.ticker-item::before {
  content: '▶';
  color: var(--red);
  margin-right: 8px;
  font-size: 9px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── AdSense Banners ──────────────────────────────────────── */
.ad-leaderboard {
  background: #e8e8e8;
  border: 1px dashed #bbb;
  text-align: center;
  padding: 8px 0;
  margin: 12px 0;
}

.ad-leaderboard ins,
.ad-rectangle ins,
.ad-inline ins {
  display: block;
}

.ad-label {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ad-rectangle {
  background: #e8e8e8;
  border: 1px dashed #bbb;
  text-align: center;
  padding: 8px;
  margin: 16px 0;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.ad-placeholder-text {
  color: #aaa;
  font-size: 12px;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Layout ───────────────────────────────────────────────── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  margin: 20px 0;
}

.main-content {
  min-width: 0;
}

.sidebar {
  min-width: 0;
}

/* ── Section Heading ──────────────────────────────────────── */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
}

.section-heading h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading h2 .cat-badge {
  width: 6px;
  height: 28px;
  border-radius: 2px;
  background: var(--red);
  display: inline-block;
}

.section-heading .see-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--red);
  padding: 4px 12px;
  border-radius: 3px;
  transition: var(--transition);
}

.section-heading .see-all:hover {
  background: var(--red);
  color: #fff;
}

/* ── Hero Article ─────────────────────────────────────────── */
.hero-article {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  margin-bottom: 20px;
  aspect-ratio: 16/7;
  background: #222;
}

.hero-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.hero-article:hover img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .88) 60%);
  padding: 40px 24px 24px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.hero-title:hover {
  text-decoration: underline;
}

.hero-meta {
  color: #ccc;
  font-size: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Article Cards ────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.articles-grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.articles-grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.article-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.article-card .card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #ddd;
  position: relative;
}

.article-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.article-card:hover .card-img img {
  transform: scale(1.06);
}

.article-card .card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-card .card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  flex: 1;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover .card-title {
  color: var(--red);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: auto;
}

.card-meta .views {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Category colors */
.cat-fotbal {
  color: var(--red);
}

.cat-tenis {
  color: var(--teal);
}

.cat-baschet {
  color: var(--orange);
}

.cat-altele {
  color: var(--slate);
}

.cat-badge-fotbal {
  background: var(--red);
  color: #fff;
}

.cat-badge-tenis {
  background: var(--teal);
  color: #fff;
}

.cat-badge-baschet {
  background: var(--orange);
  color: #fff;
}

.cat-badge-altele {
  background: var(--slate);
  color: #fff;
}

.cat-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.cat-dot-fotbal {
  background: var(--red);
}

.cat-dot-tenis {
  background: var(--teal);
}

.cat-dot-baschet {
  background: var(--orange);
}

.cat-dot-altele {
  background: var(--slate);
}

/* ── List Article (sidebar style) ────────────────────────── */
.article-list-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.article-list-item:last-child {
  border-bottom: none;
}

.article-list-item:hover .ali-title {
  color: var(--red);
}

.ali-img {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
}

.ali-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ali-body {
  flex: 1;
  min-width: 0;
}

.ali-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}

.ali-date {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Category Page Hero ───────────────────────────────────── */
.category-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 40px 0;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.category-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(204, 0, 0, .12);
}

.category-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.category-hero p {
  color: #aaa;
  font-size: 15px;
}

.category-hero .cat-stripe {
  width: 60px;
  height: 5px;
  border-radius: 3px;
  background: var(--red);
  margin: 12px 0;
}

/* ── Single Article ───────────────────────────────────────── */
.article-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: #111;
  max-height: 480px;
}

.article-hero img {
  width: 100%;
  object-fit: cover;
  max-height: 480px;
  opacity: .9;
}

.article-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .9) 70%);
  padding: 60px 32px 32px;
}

.article-hero-overlay .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  margin-bottom: 12px;
}

.article-hero-overlay h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.article-meta-bar span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-meta-bar .author {
  font-weight: 600;
  color: var(--text);
}

.article-content {
  font-size: 17px;
  line-height: 1.85;
  color: #222;
}

.article-content p {
  margin-bottom: 16px;
}

.article-content h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--navy);
}

.article-content img {
  border-radius: var(--radius);
  margin: 20px 0;
}

.article-content blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 20px;
  background: #f8f8f8;
  margin: 20px 0;
  font-style: italic;
  color: #444;
}

/* ── Related Articles ─────────────────────────────────────── */
.related-section {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 3px solid var(--border);
}

/* ── Sidebar Widgets ──────────────────────────────────────── */
.sidebar-widget {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 20px;
}

.widget-header {
  background: var(--navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-header .icon {
  font-size: 16px;
}

.widget-body {
  padding: 0 12px;
}

/* ── Pagination ───────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 30px 0;
}

.pagination button {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  color: var(--text);
}

.pagination button:hover {
  border-color: var(--red);
  color: var(--red);
}

.pagination button.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: #aaa;
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand .logo-text {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: #aaa;
  font-size: 13px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #2a2a3e;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-bottom a {
  color: #aaa;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ── Loading & Empty States ───────────────────────────────── */
.loading-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #ebebeb 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

.skeleton-card {
  height: 250px;
}

.skeleton-hero {
  height: 400px;
  margin-bottom: 20px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-state p {
  font-size: 15px;
}

/* ── Toast / Notification ─────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  z-index: 9999;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn .3s ease;
}

.toast.error {
  background: #c0392b;
}

.toast.success {
  background: var(--green);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--red);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-layout {
    grid-template-columns: 1fr 260px;
  }
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid.col-2 {
    grid-template-columns: 1fr;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero-title {
    font-size: 20px;
  }

  .header-search {
    display: none;
  }

  .main-nav a {
    padding: 11px 11px;
    font-size: 12px;
    letter-spacing: .5px;
  }
}

@media (max-width: 480px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-hero h1 {
    font-size: 32px;
  }
}
/* ── Category Pages ─────────────────────────────────────── */
.category-hero {
    padding: 40px 0 32px;
    margin-bottom: 0;
}
.category-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 8px;
}
.category-hero p { color: rgba(255,255,255,.75); font-size: 15px; margin: 0; }
.cat-stripe { width: 50px; height: 4px; background: #fff; border-radius: 2px; margin-bottom: 16px; opacity: .6; }

.section-heading { margin: 28px 0 18px; }
.section-heading h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0D1B2A;
    border-left: 4px solid #CC0000;
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-top: 20px;
}
@media (max-width: 900px) {
    .page-layout { grid-template-columns: 1fr; }
    .sidebar { order: 99; }
}
.ad-leaderboard {
    text-align: center;
    padding: 16px 0 8px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.skeleton-card {
    height: 280px;
    border-radius: 8px;
    background: linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
