/* ===== BASE & RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:    #07091a;
  --bg-card:    #0f1329;
  --bg-card2:   #151a35;
  --accent:     #f0a500;
  --accent2:    #ffcc44;
  --green:      #00d26a;
  --red:        #ff4d6d;
  --blue:       #3b82f6;
  --purple:     #8b5cf6;
  --text:       #e8eaf6;
  --text-muted: #7a83a8;
  --border:     #1e2547;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(7,9,26,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; gap: 16px;
  height: 64px;
}

.header__logo img { height: 38px; width: auto; }

.header__nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: 24px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  background: var(--bg-card2);
  color: var(--text);
}
.nav__link.active { color: var(--accent); }

.header__spacer { flex: 1; }

.header__actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; transition: all .2s;
  white-space: nowrap;
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--primary {
  background: linear-gradient(135deg, #f0a500 0%, #ff7b00 100%);
  color: #000;
}
.btn--primary:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn--green {
  background: linear-gradient(135deg, #00d26a 0%, #00a855 100%);
  color: #000;
}
.btn--green:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn--big {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 10px;
}

/* ===== MOBILE MENU ===== */
.burger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.burger span {
  display: block; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}

.mobile-nav {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(7,9,26,.98);
  border-bottom: 1px solid var(--border);
  z-index: 999; padding: 16px 20px 24px;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav__link { font-size: 16px; padding: 12px 16px; }
.mobile-nav .header__actions { flex-direction: column; margin-top: 12px; }
.mobile-nav .btn { width: 100%; justify-content: center; }

/* ===== WINS TICKER ===== */
.ticker {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 38px;
  display: flex; align-items: center;
}
.ticker__label {
  flex-shrink: 0;
  background: var(--accent);
  color: #000;
  font-size: 11px; font-weight: 700;
  padding: 0 14px;
  height: 100%;
  display: flex; align-items: center;
  text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap;
}
.ticker__track {
  display: flex; align-items: center;
  gap: 32px;
  padding: 0 20px;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.ticker__item .win-amount {
  color: var(--green);
  font-weight: 700;
}
.ticker__item .win-game { color: var(--accent); }
.ticker__item .win-user { color: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('../background.webp') center/cover no-repeat;
  filter: brightness(.45) saturate(1.2);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(7,9,26,.85) 0%,
    rgba(15,19,41,.6) 50%,
    rgba(240,165,0,.1) 100%);
}
.hero__content {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  padding: 60px 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; width: 100%;
}
.hero__badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero__title span { color: var(--accent); }
.hero__subtitle {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero__features {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}
.hero__feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 20px;
}
.hero__feature svg { color: var(--green); flex-shrink: 0; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(240,165,0,.15);
}
.hero__bonus-card::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240,165,0,.2) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-tag {
  font-size: 12px; color: var(--accent); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px;
}
.bonus-amount {
  font-size: 64px; font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #f0a500, #ff7b00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bonus-plus {
  font-size: 32px; color: var(--text-muted); font-weight: 300;
  margin: 6px 0;
}
.bonus-fs {
  font-size: 40px; font-weight: 900;
  color: var(--accent2);
}
.bonus-desc {
  font-size: 13px; color: var(--text-muted);
  margin: 16px 0 24px;
}
.bonus-timer {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 24px;
}
.timer-cell {
  background: var(--bg-dark);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 52px;
}
.timer-cell .t-val {
  font-size: 22px; font-weight: 900; color: var(--accent); line-height: 1;
}
.timer-cell .t-label {
  font-size: 10px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em;
}

/* ===== SECTION WRAPPERS ===== */
.section {
  padding: 60px 20px;
  max-width: 1280px; margin: 0 auto;
}
.section--full { max-width: none; padding: 60px 0; }
.section__inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.section__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}
.section__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
}
.section__title span { color: var(--accent); }
.section__more {
  font-size: 13px; color: var(--accent); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: opacity .2s;
}
.section__more:hover { opacity: .75; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 0 20px 60px;
  max-width: 1280px; margin: 0 auto;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat-card__icon {
  font-size: 28px; margin-bottom: 12px;
}
.stat-card__val {
  font-size: 28px; font-weight: 900; color: var(--accent);
}
.stat-card__label {
  font-size: 13px; color: var(--text-muted); margin-top: 4px;
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer; position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(240,165,0,.2);
  border-color: var(--accent);
}
.game-card__thumb {
  aspect-ratio: 4/3;
  background: var(--bg-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  position: relative; overflow: hidden;
}
.game-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__info { padding: 10px 12px; }
.game-card__name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.game-card__provider { font-size: 11px; color: var(--text-muted); }
.game-card__rtp {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,210,106,.15);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 10px; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
}
.game-card__hot {
  position: absolute; top: 8px; right: 8px;
  background: rgba(255,77,109,.15);
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 10px; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
}

/* ===== FILTERS ===== */
.filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-btn {
  padding: 7px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 20px;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* ===== BONUS CARDS ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.bcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s;
}
.bcard:hover { transform: translateY(-3px); }
.bcard__head {
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  border-bottom: 1px solid var(--border);
  text-align: center; position: relative;
}
.bcard__head--gold { background: linear-gradient(135deg, rgba(240,165,0,.15), rgba(255,123,0,.08)); }
.bcard__head--blue { background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(139,92,246,.08)); }
.bcard__head--green { background: linear-gradient(135deg, rgba(0,210,106,.12), rgba(0,200,83,.05)); }
.bcard__icon { font-size: 48px; margin-bottom: 12px; }
.bcard__amount {
  font-size: 36px; font-weight: 900;
  background: linear-gradient(135deg, #f0a500, #ff7b00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bcard__subtitle { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.bcard__body { padding: 20px 24px; }
.bcard__title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.bcard__features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.bcard__feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.bcard__feature::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ===== LIVE SECTION ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s;
}
.live-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.live-card__thumb {
  aspect-ratio: 16/9;
  background: var(--bg-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
}
.live-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .05em;
  display: flex; align-items: center; gap: 4px;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.live-card__players {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.7);
  font-size: 11px; color: var(--text-muted);
  padding: 3px 8px; border-radius: 4px;
}
.live-card__info { padding: 12px 16px; }
.live-card__name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.live-card__limits { font-size: 12px; color: var(--text-muted); }

/* ===== WINS FEED ===== */
.wins-feed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wins-feed__head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.wins-feed__title {
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.2s ease-in-out infinite;
}
.wins-list { max-height: 320px; overflow: hidden; }
.win-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px; align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(30,37,71,.5);
  transition: background .2s;
  animation: fadeInDown .4s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.win-row:hover { background: rgba(255,255,255,.03); }
.win-row__user { font-size: 13px; font-weight: 600; }
.win-row__game { font-size: 12px; color: var(--accent); margin-top: 2px; }
.win-row__time { font-size: 11px; color: var(--text-muted); }
.win-row__amount {
  font-size: 15px; font-weight: 900;
  color: var(--green);
}

/* ===== ABOUT/CONTENT ===== */
.content-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.content-section h2 {
  font-size: 24px; font-weight: 800;
  color: var(--accent); margin-bottom: 20px;
}
.content-section h3 {
  font-size: 18px; font-weight: 700;
  margin: 28px 0 12px;
}
.content-section p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 12px;
}
.content-section ul {
  list-style: disc; padding-left: 20px;
  margin-bottom: 12px;
}
.content-section li {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 4px;
}
.content-section ol {
  padding-left: 20px; margin-bottom: 12px;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px;
  background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text);
  transition: background .2s;
}
.faq-item__q:hover { background: rgba(255,255,255,.03); }
.faq-item__q .faq-icon {
  flex-shrink: 0; font-size: 20px; color: var(--accent);
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-item__a { display: block; }

/* ===== SUPPORT BADGE ===== */
.support-badge {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 500;
  background: linear-gradient(135deg, #00d26a, #00a855);
  color: #000; font-size: 13px; font-weight: 700;
  padding: 12px 20px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,210,106,.4);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.support-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,210,106,.5);
}
.support-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; animation: pulse 1.2s ease-in-out infinite;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer__main {
  max-width: 1280px; margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand img { height: 36px; margin-bottom: 16px; }
.footer__brand p {
  font-size: 13px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 20px;
}
.footer__col h4 {
  font-size: 14px; font-weight: 700; color: var(--accent);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  font-size: 13px; color: var(--text-muted);
  transition: color .2s;
}
.footer__col li a:hover { color: var(--text); }
.footer__bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 20px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 12px; color: var(--text-muted); }
.footer__age {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red); font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer__logos {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer__logos span {
  font-size: 11px; color: var(--text-muted);
  background: var(--bg-card2);
  padding: 4px 10px; border-radius: 4px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 20px 40px;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900; margin-bottom: 12px;
}
.page-hero__title span { color: var(--accent); }
.page-hero__sub {
  font-size: 16px; color: var(--text-muted); max-width: 540px; margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .burger { display: flex; }
  .header__actions { display: none; }

  .hero__content { grid-template-columns: 1fr; }
  .hero__bonus-card { max-width: 360px; margin: 0 auto; }

  .footer__main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .content-section { padding: 24px 20px; }
  .support-badge span { display: none; }
  .support-badge { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .footer__main { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* ===== SEO NAV LINKS ===== */
.seo-nav__link {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--accent);
  transition: background .2s, border-color .2s;
}
.seo-nav__link:hover {
  background: var(--border);
  border-color: var(--accent);
  color: var(--text);
}

/* ===== NOTIFICATION TOAST ===== */
.toast-container {
  position: fixed; bottom: 80px; left: 20px;
  z-index: 9999; display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 12px 16px;
  max-width: 280px;
  box-shadow: var(--shadow);
  animation: toast-in .35s ease;
  pointer-events: auto;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.toast.out {
  animation: toast-out .35s ease forwards;
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-20px); }
}
.toast__title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.toast__body { font-size: 12px; color: var(--text-muted); }
.toast__amount { color: var(--green); font-weight: 700; }
