﻿/* NX Design System v2025 — rev G (uniform cards, split hero, 2-col footer)
   Typography: Bricolage Grotesque (Headings), Plus Jakarta Sans (UI)
   Palette: graphite + neon lime/fuchsia accents
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&family=Rubik:wght@700&display=swap");

:root {
  /* Фоны */
  --frcast-bg: #0a0906;            
  --frcast-surface: #12100b;       
  --frcast-elev: #1a1812;           
  --frcast-line: #38bdf8;          

  /* Текст */
  --frcast-text: #faf8f3;           
  --frcast-sub: #d8caa0;            

  /* Акценты */
  --frcast-accent: #ffd84d;         
  --frcast-accent-2: #eab308;      
  --frcast-warn: #ffb800;           
  --frcast-good: #4ade80;           

  /* Радиусы и тени */
  --frcast-radius: 12px;
  --frcast-shadow-1: 0 8px 20px rgba(0, 0, 0, 0.4);
  --frcast-shadow-2: 0 14px 36px rgba(255, 215, 64, 0.15); 
  --frcast-ring: 0 0 0 1px rgba(255, 216, 77, 0.35),
                 0 6px 18px rgba(255, 216, 77, 0.2);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../img/main-bg.webp") center/cover no-repeat fixed;
  color: var(--frcast-text);
  font: 400 16px/1.5 "Inter", system-ui, -apple-system, Segoe UI,
    Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.frcast-skip {
  position: absolute;
  left: -9999px;
}
.frcast-skip:focus {
  position: fixed;
  left: 8px;
  top: 8px;
  background: #000;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  z-index: 9999;
}
:focus-visible {
  outline: 2px dashed rgba(132, 204, 22, 0.7);
  outline-offset: 2px;
}

.frcast-wrap {
  width: min(1140px, 94%);
  margin-inline: auto;
}

/* Distinct section backgrounds */
.frcast-section {
  padding: 16px 0;
  content-visibility: auto;
  contain-intrinsic-size: 480px;
  position: relative;
}

.frcast-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.frcast-h1,
.frcast-h2,
.frcast-h3 {
  font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.3px;
  
}
.frcast-h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  margin: 0 0 6px;
  text-align: center;
}
.frcast-h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  margin: 0 0 8px;
  position: relative;
  padding-bottom: 6px;
}

.frcast-h3 {
  font-size: clamp(16px, 2vw, 20px);
  margin: 0 0 4px;
}
.frcast-lead {
  color: var(--frcast-sub);
  font-size: clamp(13px, 1.9vw, 15px);
  margin: 0;
  text-align: center;
}

/* HERO — split layout: content + decorative band */
.frcast-hero {
  position: relative;
  display: grid;
  grid-template-columns:1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--frcast-line);
  border-radius: var(--frcast-radius);
  padding: 18px;
  background: var(--frcast-surface);
  box-shadow: var(--frcast-shadow-1);
  overflow: hidden;
}

/* Buttons — prominent */
.frcast-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid transparent;
}
.frcast-btn--prime {
  background: linear-gradient(135deg, var(--frcast-accent), var(--frcast-accent-2));
  color: #0a0b10;
  box-shadow: var(--frcast-shadow-1);
  border-color: rgba(132, 204, 22, 0.35);
}
.frcast-btn--prime:hover {
  transform: translateY(-1px);
  box-shadow: var(--frcast-ring);
}

/* LIST — uniform card layout (Logo min 200px, then info, then CTA) */
.frcast-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  /* width: 100%; */
}
body{
  padding-left: 10px;
  padding-right: 10px;
}
.frcast-card {
  display: grid;
  grid-template-columns: minmax(200px, 220px) 1fr 220px;
  gap: 12px;
  align-items: center;
  position: relative;
  background: rgb(34, 51, 58,0.4);
  border: 2px solid var(--frcast-line);
  border-radius: 14px;
  box-shadow: var(--frcast-shadow-1);
  padding: 12px;
}
/* neutralize previous decorative elements, if any */
.frcast-card::before,
.frcast-card::after {
  display: none;
}

/* Logo column */
.frcast-logo {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  background: #0f1524;
  border: 1px solid #38bdf8;
  padding: 8px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  padding: 20px;
}

.frcast-offer {
  color: #a3e635;
  font-weight: 800;
  background:#111426;
 border: 1px solid  #38bdf8;
  border-radius: 10px;
  padding:10px;
  width: fit-content;
  font-size: 12px;
  width: 100%;
  text-align: center;
}
.frcast-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  justify-content: center;
}
.frcast-flag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #f2fcdf;
  background: #111426;
  border: 1px solid #38bdf8;
  padding: 4px 8px;
  border-radius: 12px;
}
.frcast-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.frcast-pay img {
  width: 70px;
  height: 24px;
  object-fit: contain;
  border-radius: 8px;
  /* background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06); */
}

/* CTA column */
.frcast-cta {
  grid-column: 3;
  display: grid;
  gap: 8px;
  justify-items: stretch;
}
.frcast-foot {
  font-size: 11px;
  color: var(--frcast-soft);
  text-align: right;
}

/* Ribbon / Tag */
.frcast-ribbon {
  position: absolute;
  left: 12px;
  top: 4px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0c0b10;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(251, 191, 36, 0.25);
  font-size: 13px;
  z-index: 2;
}
.frcast-tag {
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: inline-flex;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(232, 121, 249, 0.14);
  border: 1px solid rgba(232, 121, 249, 0.45);
  font-weight: 800;
  font-size: 11px;
  z-index: 2;
}

/* Stars (exactly 5) */
.frcast-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--frcast-sub);
  font-weight: 900;
  justify-content: center;
}
.frcast-meter {
  --score: 5;
  --size: 16px;
  width: calc(5 * var(--size));
  height: var(--size);
  background: linear-gradient(
    90deg,
    var(--frcast-accent-2) calc((var(--score) / 5) * 100%),
    rgba(255, 255, 255, 0.2) 0
  );
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path fill="%23000" d="M10 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L10 14.6 4.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L10 0zM30 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L30 14.6 24.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L30 0zM50 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L50 14.6 44.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L50 0zM70 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L70 14.6 64.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L70 0zM90 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L90 14.6 84.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L90 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path fill="%23000" d="M10 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L10 14.6 4.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L10 0zM30 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L30 14.6 24.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L30 0zM50 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L50 14.6 44.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L50 0zM70 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L70 14.6 64.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L70 0zM90 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L90 14.6 84.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L90 0z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Accordion */
.frcast-accordion details {
  margin-bottom: 8px;
  background: var(--frcast-surface);
  border: 1px solid var(--frcast-line);
  border-radius: var(--frcast-radius);
  overflow: hidden;
}
.frcast-accordion summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 800;
  background: #111426;
  font-size: 13px;
}
.frcast-accordion p {
  padding: 0 10px 8px;
  color: var(--frcast-sub);
 padding-left: 0px;
  
}

/* Reviews */
.frcast-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}
.frcast-review {
  background: var(--frcast-surface);
  border: 1px solid var(--frcast-line);
  border-radius: var(--frcast-radius);
  padding: 8px;
  box-shadow: var(--frcast-shadow-1);
}
.frcast-stars {
  --score: 5;
  --size: 16px;
  width: calc(5 * var(--size));
  height: var(--size);
  background: linear-gradient(
    90deg,
    var(--frcast-accent-2) calc((var(--score) / 5) * 100%),
    rgba(255, 255, 255, 0.2) 0
  );
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path fill="%23000" d="M10 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L10 14.6 4.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L10 0zM30 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L30 14.6 24.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L30 0zM50 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L50 14.6 44.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L50 0zM70 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L70 14.6 64.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L70 0zM90 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L90 14.6 84.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L90 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path fill="%23000" d="M10 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L10 14.6 4.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L10 0zM30 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L30 14.6 24.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L30 0zM50 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L50 14.6 44.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L50 0zM70 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L70 14.6 64.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L70 0zM90 0l2.6 6.2 6.8.6-5.1 4.2 1.6 6.7L90 14.6 84.1 17.7l1.6-6.7-5.1-4.2 6.8-.6L90 0z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* GAMES */
.frcast-games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  max-width: 780px;
  margin: auto;
}
.frcast-game {
  text-align: center;
    background: var(--frcast-surface);
  border: 1px solid var(--frcast-line);
  border-radius: 12px;
  padding: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.frcast-game:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(232, 121, 249, 0.22);
}

/* CHARTS */
.frcast-charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px;
}
.frcast-chart {
  background: var(--frcast-surface);
  border: 1px solid var(--frcast-line);
  border-radius: var(--frcast-radius);
  padding: 10px;
  box-shadow: var(--frcast-shadow-1);
}
.frcast-chart .frcast-bar {
  --val: 50;
  width: 100%;
  height: 10px;
  border-radius: 12px;
  background: linear-gradient(
      90deg,
      var(--frcast-accent) calc(var(--val) * 1%),
      rgba(255, 255, 255, 0.16) 0
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0 8px,
      transparent 8px 16px
    );
  margin-bottom: 4px;
}
.frcast-ind {
  color: var(--frcast-sub);
  font-size: 12px;
}

/* BANNER */
.frcast-banner {
  background: linear-gradient(
    135deg,
    rgba(132, 204, 22, 0.22),
    rgba(232, 121, 249, 0.22)
  );
  color: var(--frcast-text);
  padding: 14px;
  border-radius: var(--frcast-radius);
  border: 1px solid rgba(132, 204, 22, 0.35);
  box-shadow: var(--frcast-shadow-2);
  position: relative;
  overflow: hidden;
}
.frcast-top {
  display: grid;
  gap: 8px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.frcast-topwrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 8px;
  align-items: center;
}
.frcast-topwrap .frcast-logo {
  width: 240px;
  height: auto;
  padding: 10px;
}
.frcast-high {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0;
}

/* FOOTER — two-column layout (note left, nav+logos right, copy full-width) */
.frcast-footer {
  padding: 20px 0;
  border-top: 2px solid var(--frcast-line);
  margin-top: 20px;
  background: rgba(8, 10, 18, 0.9);
  backdrop-filter: blur(6px);
}
.frcast-footgrid {
  display: block;
  grid-template-columns: 1fr;
  grid-template-areas:
    "note row"
    "copy copy";
  gap: 12px;
  align-items: start;
}
.frcast-note {
  grid-area: note;
  background: var(--frcast-surface);
  border: 1px solid var(--frcast-line);
  border-radius: var(--frcast-radius);
  padding: 12px;
  box-shadow: var(--frcast-shadow-1);
}
.frcast-footrow {
  grid-area: row;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  align-items: start;
  text-align: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;

}
.frcast-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;

}
.frcast-nav a {
  color: #d7e5f0;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
}
.frcast-nav a:hover {
  color: #e8ffe2;
  border-bottom-color: rgba(232, 255, 226, 0.6);
}
.frcast-logos {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.frcast-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(132, 204, 22, 0.3);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
  min-height: 36px;
}
.frcast-logos a:hover {
  transform: translateY(-1px);
  background: rgba(132, 204, 22, 0.1);
  border-color: rgba(132, 204, 22, 0.5);
  box-shadow: 0 8px 18px rgba(132, 204, 22, 0.18);
}
.frcast-logos a img {
  height: 22px;
  filter: saturate(118%) contrast(105%);
}
.frcast-logos > img {
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(132, 204, 22, 0.3);
  height: 22px;
}
.frcast-copy {
  grid-area: copy;
  text-align: center;
  color: var(--frcast-soft);
  font-size: 12px;
}

/* Article */
.frcast-article {
  display: block;
}
.frcast-p {
  margin: 0 0 6px;
  color: var(--frcast-sub);
}
.frcast-ul {
  margin: 4px 0 8px;
  padding-left: 18px;
}
.frcast-ul li {
  margin: 3px 0;
}
.frcast-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--frcast-line);
  background: var(--frcast-surface);
  border-radius: var(--frcast-radius);
  overflow: hidden;
}
.frcast-table th,
.frcast-table td {
  border-bottom: 1px solid var(--frcast-line);
  padding: 6px 8px;
  text-align: left;
}
.frcast-table thead th {
  background: #101226;
}
.frcast-a {
  color: #b2f075;
  text-underline-offset: 2px;
}
.frcast-a:hover {
  color: #e8ffc4;
}

/* Mobile */
@media (max-width: 960px) {
  .frcast-hero {
    grid-template-columns: 1fr;
  }
  .frcast-hero::after {
    display: none;
  }

  .frcast-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .frcast-logo {
    max-width: 100%;
    margin: 0 auto;
  }
  .frcast-cta {
    grid-column: 1;
  }
  .frcast-foot {
    text-align: left;
  }

  .frcast-footgrid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "note"
      "row"
      "copy";
  }
  .frcast-nav {
    justify-content: center;
  }
  .frcast-logos {
    justify-content: center;
  }
  .frcast-topwrap,
  .frcast-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .min-w {
    width: 100%;
  }
  .frcast-high {
    justify-content: center;
  }
}
.frcast-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.min-w {
  min-width: 220px;
}
.frcast-cta .frcast-btn {
  margin-bottom: 10px;
}


.frcast-section {
  background: linear-gradient(180deg, var(--bg-800), var(--bg-900));
  color: var(--text-100);
  font-family: Inter, system-ui, sans-serif;
}

.frcast-wrap {
  /* max-width: 900px; */
  margin: 0 auto;
}

.frcast-h2 {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  letter-spacing: 0.6px;
  color: var(--primary-400);
}

.frcast-accordion details {
  background: var(--surface-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-m);
  margin-bottom: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.frcast-accordion details[open] {
  background: linear-gradient(180deg, var(--surface-700), var(--surface-800));
  box-shadow: var(--shadow-1);
}

.frcast-accordion summary {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.frcast-accordion summary::-webkit-details-marker {
  display: none;
}

.frcast-accordion summary::after {
  content: "➕";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.frcast-accordion details[open] summary::after {
  content: "➖";
  transform: rotate(180deg);
}

.frcast-accordion p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-200);
}

/* Hover effect */
.frcast-accordion details:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .frcast-h2 {
    font-size: 28px;
  }

  .frcast-accordion summary {
    font-size: 16px;
  }

  .frcast-accordion p {
    font-size: 15px;
  }
}
.frcast-section {
  background: linear-gradient(180deg, var(--bg-800), var(--bg-900));
  color: var(--text-100);
  font-family: Inter, system-ui, sans-serif;
}

.frcast-wrap {
 
  margin: 0 auto;
}

.frcast-h2 {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  letter-spacing: 0.6px;
  color: var(--primary-400);
}

.frcast-games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.frcast-game {
     background: var(--frcast-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-m);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 260px;
}

.frcast-game:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(35, 144, 179, 0.35);
}

.frcast-game strong {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--accent-500);
}

.frcast-p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-200);
}

/* Responsive */
@media (max-width: 768px) {
  .frcast-h2 {
    font-size: 28px;
  }

  .frcast-game strong {
    font-size: 18px;
  }

  .frcast-p {
    font-size: 14px;
  }
}

.frcast-section {
  background: linear-gradient(180deg, var(--bg-800), var(--bg-900));
  color: var(--text-100);
  font-family: Inter, system-ui, sans-serif;
}

.frcast-wrap {
  
  margin: 0 auto;
}

.frcast-h2 {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  letter-spacing: 0.6px;
  color: var(--primary-400);
}

.frcast-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.frcast-ul li {
      background: var(--frcast-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-m);
  padding: 16px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  line-height: 1.6;
}

.frcast-ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(35, 144, 179, 0.35);
}

.frcast-ul strong {
  color: var(--accent-500);
  font-weight: 700;
  margin-right: 6px;
}

@media (max-width: 768px) {
  .frcast-h2 {
    font-size: 28px;
  }

  .frcast-ul li {
    font-size: 14px;
    padding: 14px 16px;
  }
}
