/* =========================================================
   LAIMAIL
   Premium Football / Live Predictions
   Responsive / Fluid Design
   ========================================================= */


/* =========================================================
   1. ROOT
   ========================================================= */

:root {

  /* Background */

  --bg-0: #07090d;
  --bg-1: #0b0e14;
  --bg-2: #10141c;
  --bg-3: #161b25;
  --bg-4: #1c2330;

  /* Borders */

  --border: #222a38;
  --border-soft: #171d28;
  --border-hover: #344052;

  /* Text */

  --text-0: #f5f7fb;
  --text-1: #cbd2de;
  --text-2: #8993a5;
  --text-3: #5d687b;

  /* Accent */

  --accent: #4ade80;
  --accent-dark: #22c55e;

  --cyan: #22d3ee;
  --blue: #38bdf8;

  /* Betting */

  --hot: #f59e0b;
  --hot-light: #fbbf24;

  /* Results */

  --win: #4ade80;
  --lose: #ef4444;
  --void: #94a3b8;
  --half: #a78bfa;

  /* Effects */

  --glow-green:
    0 0 30px rgba(74, 222, 128, .18);

  --glow-green-strong:
    0 0 45px rgba(74, 222, 128, .28);

  --glow-orange:
    0 0 32px rgba(245, 158, 11, .20);

  /* Radius */

  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius: 15px;
  --radius-sm: 10px;

  /* Container */

  --container: 1160px;

  /* Font */

  --font:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Inter,
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;

}


/* =========================================================
   2. RESET
   ========================================================= */

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


html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}


body {

  min-height: 100vh;

  font-family: var(--font);

  background:
    radial-gradient(
      1000px 500px
      at 5% -10%,
      rgba(74, 222, 128, .055),
      transparent 65%
    ),
    radial-gradient(
      900px 500px
      at 100% 5%,
      rgba(34, 211, 238, .045),
      transparent 65%
    ),
    var(--bg-0);

  color: var(--text-0);

  line-height: 1.55;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  overflow-x: hidden;
}


body::selection {
  background: rgba(74, 222, 128, .25);
  color: #fff;
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input,
textarea {
  font: inherit;
}


button {
  color: inherit;
}


section {
  position: relative;
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.container {

  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;

  position: relative;
  z-index: 2;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.header {

  position: sticky;
  top: 0;

  z-index: 100;

  height: 70px;

  background:
    rgba(7, 9, 13, .78);

  backdrop-filter:
    blur(18px)
    saturate(140%);

  -webkit-backdrop-filter:
    blur(18px)
    saturate(140%);

  border-bottom:
    1px solid
    rgba(255,255,255,.055);
}


.header::after {

  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -1px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(74,222,128,.18),
      transparent
    );

  pointer-events: none;
}


.header__inner {

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  flex-shrink: 0;
}


.logo__mark {

  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--cyan)
    );

  color: #06100a;

  font-size: 1rem;

  font-weight: 900;

  box-shadow:
    0 0 22px
    rgba(74,222,128,.18);
}


.logo__text {

  display: flex;

  flex-direction: column;

  line-height: 1.1;
}


.logo__name {

  font-size: 1.05rem;

  font-weight: 800;

  letter-spacing: -.2px;
}


.logo__sub {

  margin-top: 4px;

  color: var(--text-3);

  font-size: .62rem;

  font-weight: 500;

  letter-spacing: .9px;

  text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {

  display: flex;

  align-items: center;

  gap: 4px;
}


.nav a {

  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 40px;

  padding:
    0 14px;

  border-radius: 10px;

  color: var(--text-2);

  font-size: .88rem;

  font-weight: 500;

  transition:
    color .2s ease,
    background .2s ease,
    transform .2s ease;
}


.nav a:hover {

  color: var(--text-0);

  background:
    rgba(255,255,255,.045);

}


.nav a.is-active {

  color: var(--accent);

  background:
    rgba(74,222,128,.075);

}


.nav a.is-active::after {

  content: "";

  position: absolute;

  left: 14px;
  right: 14px;
  bottom: 4px;

  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--cyan)
    );

  opacity: .85;
}


/* =========================================================
   BURGER
   ========================================================= */

.burger {

  display: none;

  width: 44px;
  height: 44px;

  border:
    1px solid
    var(--border);

  border-radius: 11px;

  background:
    rgba(255,255,255,.035);

  cursor: pointer;

  position: relative;

  transition:
    border-color .2s ease,
    background .2s ease;
}


.burger:hover {

  border-color:
    rgba(74,222,128,.4);

  background:
    rgba(74,222,128,.06);
}


.burger span,
.burger span::before,
.burger span::after {

  content: "";

  position: absolute;

  width: 19px;
  height: 2px;

  left: 50%;
  top: 50%;

  border-radius: 99px;

  background: var(--text-0);

  transform:
    translate(-50%, -50%);

  transition:
    transform .22s ease,
    opacity .22s ease;
}


.burger span::before {
  top: -6px;
}


.burger span::after {
  top: 6px;
}


/* Open state */

.burger.is-open span {

  background: transparent;
}


.burger.is-open span::before {

  transform:
    translate(-50%, 6px)
    rotate(45deg);
}


.burger.is-open span::after {

  transform:
    translate(-50%, -6px)
    rotate(-45deg);
}


/* =========================================================
   5. HERO
   ========================================================= */

.hero {

  min-height: 570px;

  display: flex;

  align-items: center;

  position: relative;

  overflow: hidden;

  isolation: isolate;

  padding:
    70px 0 80px;
}


.hero__bg {

  position: absolute;

  inset: 0;

  z-index: -4;
}


.hero__bg img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;

  filter:
    saturate(.85)
    contrast(1.05);
}


.hero__overlay {

  position: absolute;

  inset: 0;

  z-index: -3;

  background:

    linear-gradient(
      90deg,
      rgba(7,9,13,.98) 0%,
      rgba(7,9,13,.91) 25%,
      rgba(7,9,13,.67) 55%,
      rgba(7,9,13,.58) 100%
    ),

    linear-gradient(
      0deg,
      rgba(7,9,13,.95) 0%,
      transparent 35%,
      rgba(7,9,13,.45) 100%
    );
}


.hero__glow {

  position: absolute;

  width: 650px;
  height: 650px;

  right: -180px;
  top: -100px;

  z-index: -2;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(74,222,128,.13),
      transparent 65%
    );

  filter: blur(20px);

  pointer-events: none;
}


.hero__inner {

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(330px, .95fr);

  align-items: center;

  gap: 30px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero__content {

  max-width: 700px;

  position: relative;
  z-index: 3;
}


.hero__badge {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  min-height: 34px;

  padding:
    0 13px;

  margin-bottom: 20px;

  border:
    1px solid
    rgba(74,222,128,.22);

  border-radius: 999px;

  background:
    rgba(74,222,128,.07);

  color: var(--accent);

  font-size: .7rem;

  font-weight: 700;

  letter-spacing: 1.1px;

  text-transform: uppercase;
}


.pulse-dot {

  width: 8px;
  height: 8px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: var(--accent);

  box-shadow:
    0 0 0 0
    rgba(74,222,128,.65);

  animation:
    pulse-dot 1.8s infinite;
}


@keyframes pulse-dot {

  0% {
    box-shadow:
      0 0 0 0
      rgba(74,222,128,.6);
  }

  70% {
    box-shadow:
      0 0 0 9px
      rgba(74,222,128,0);
  }

  100% {
    box-shadow:
      0 0 0 0
      rgba(74,222,128,0);
  }

}


.hero h1 {

  max-width: 720px;

  font-size:
    clamp(
      2.35rem,
      5.2vw,
      4.25rem
    );

  line-height: 1.03;

  letter-spacing: -2.2px;

  font-weight: 850;

  margin-bottom: 22px;

  color: #fff;
}


.hero h1 span {

  display: block;

  background:
    linear-gradient(
      100deg,
      var(--accent),
      var(--cyan)
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.hero__description {

  max-width: 600px;

  color: var(--text-2);

  font-size:
    clamp(
      .96rem,
      1.5vw,
      1.08rem
    );

  line-height: 1.7;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.hero__actions {

  display: flex;

  align-items: center;

  gap: 11px;

  flex-wrap: wrap;

  margin-top: 30px;
}


.btn {

  min-height: 48px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding:
    0 18px;

  border:
    1px solid
    var(--border);

  border-radius: 11px;

  font-size: .88rem;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}


.btn:hover {

  transform: translateY(-2px);
}


.btn--primary {

  color: #06100a;

  border-color: transparent;

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-dark)
    );

  box-shadow:
    0 12px 28px
    rgba(74,222,128,.16);
}


.btn--primary:hover {

  color: #06100a;

  box-shadow:
    0 16px 36px
    rgba(74,222,128,.25);
}


.btn--ghost {

  color: var(--text-0);

  background:
    rgba(255,255,255,.045);

  backdrop-filter: blur(10px);
}


.btn--ghost:hover {

  border-color:
    rgba(74,222,128,.4);

  color: var(--accent);

  background:
    rgba(74,222,128,.06);
}


/* =========================================================
   HERO TRUST
   ========================================================= */

.hero__trust {

  display: flex;

  align-items: center;

  gap: 18px;

  flex-wrap: wrap;

  margin-top: 30px;
}


.hero__trust-item {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: var(--text-3);

  font-size: .73rem;

  font-weight: 600;
}


.hero__trust-icon {

  color: var(--accent);

  font-size: .9rem;
}


/* =========================================================
   HERO PLAYER
   ========================================================= */

.hero__visual {

  height: 450px;

  position: relative;

  display: flex;

  align-items: flex-end;

  justify-content: center;
}


.hero__visual-glow {

  position: absolute;

  width: 390px;
  height: 390px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(74,222,128,.18),
      transparent 68%
    );

  filter: blur(25px);
}


.hero__visual img {

  width: 100%;
  height: 100%;

  object-fit: contain;

  object-position:
    center bottom;

  position: relative;

  z-index: 2;

  filter:
    drop-shadow(
      0 35px 50px
      rgba(0,0,0,.7)
    )
    drop-shadow(
      0 0 35px
      rgba(74,222,128,.08)
    );
}


.hero__bottom-fade {

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 130px;

  z-index: -1;

  background:
    linear-gradient(
      0deg,
      var(--bg-0),
      transparent
    );
}


/* =========================================================
   6. FEATURES
   ========================================================= */

.features {

  position: relative;

  z-index: 10;

  margin-top: -35px;

  padding-bottom: 55px;
}


.features-grid {

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 14px;
}


.feature-card {

  min-height: 215px;

  position: relative;

  overflow: hidden;

  isolation: isolate;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-lg);

  background:
    var(--bg-1);

  box-shadow:
    0 15px 45px
    rgba(0,0,0,.22);

  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}


.feature-card:hover {

  transform:
    translateY(-6px);

  border-color:
    rgba(74,222,128,.28);

  box-shadow:
    0 22px 55px
    rgba(0,0,0,.36);
}


.feature-card > img {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: .8;

  transition:
    transform .5s ease,
    opacity .5s ease,
    filter .5s ease;
}


.feature-card:hover > img {

  transform: scale(1.07);

  opacity: .92;

  filter: saturate(1.1);
}


.feature-card__overlay {

  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(7,9,13,.02) 0%,
      rgba(7,9,13,.28) 35%,
      rgba(7,9,13,.95) 100%
    );
}


.feature-card__content {

  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 17px;

  z-index: 2;
}


.feature-card__icon {

  display: block;

  font-size: 1.45rem;

  margin-bottom: 7px;

  filter:
    drop-shadow(
      0 4px 8px
      rgba(0,0,0,.5)
    );
}


.feature-card h2 {

  font-size: .98rem;

  font-weight: 750;

  margin-bottom: 3px;
}


.feature-card p {

  color: var(--text-2);

  font-size: .76rem;
}


/* =========================================================
   7. SECTIONS
   ========================================================= */

.section {

  padding:
    55px 0 65px;
}


.section--live {

  padding-top: 20px;
}


.section--history {

  padding-top: 50px;
}


.section__head {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 12px;
}


.section__eyebrow {

  display: flex;

  align-items: center;

  gap: 8px;

  color: var(--accent);

  font-size: .66rem;

  font-weight: 800;

  letter-spacing: 1.25px;

  text-transform: uppercase;

  margin-bottom: 6px;
}


.section__title {

  position: relative;

  font-size:
    clamp(
      1.35rem,
      2.5vw,
      1.8rem
    );

  line-height: 1.2;

  font-weight: 800;

  letter-spacing: -.5px;

  padding-left: 13px;
}


.section__title::before {

  content: "";

  position: absolute;

  left: 0;
  top: 3px;
  bottom: 3px;

  width: 3px;

  border-radius: 99px;

  background:
    linear-gradient(
      180deg,
      var(--accent),
      var(--cyan)
    );
}


.section__meta {

  color: var(--text-3);

  font-size: .78rem;

  white-space: nowrap;
}


.section__description {

  max-width: 720px;

  color: var(--text-2);

  font-size: .86rem;

  line-height: 1.7;

  margin-bottom: 22px;
}


/* =========================================================
   LIVE COUNT
   ========================================================= */

.live-count {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  min-height: 34px;

  padding:
    0 12px;

  border:
    1px solid
    var(--border);

  border-radius: 999px;

  background:
    var(--bg-2);

  color: var(--text-2);

  font-size: .75rem;

  font-weight: 600;
}


.live-count b {

  color: var(--accent);

  font-size: .85rem;
}


/* =========================================================
   8. STACK
   ========================================================= */

.stack {

  display: flex;

  flex-direction: column;

  gap: 13px;
}


/* =========================================================
   PLACEHOLDER
   ========================================================= */

.placeholder {

  min-height: 110px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 4px;

  padding: 24px;

  border:
    1px dashed
    var(--border);

  border-radius:
    var(--radius-lg);

  background:
    linear-gradient(
      180deg,
      var(--bg-1),
      var(--bg-2)
    );

  color: var(--text-2);

  font-size: .86rem;

  text-align: center;

  overflow: hidden;

  position: relative;
}


.placeholder::after {

  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  width: 35%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.025),
      transparent
    );

  transform:
    translateX(-160%);

  animation:
    shimmer 2.4s infinite;
}


@keyframes shimmer {

  to {
    transform:
      translateX(400%);
  }

}


.placeholder__label {

  color: var(--text-3);

  font-size: .64rem;

  font-weight: 800;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


/* =========================================================
   9. MATCH CARD
   ========================================================= */

.match-card {

  position: relative;

  overflow: hidden;

  padding: 20px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      var(--bg-1),
      var(--bg-2)
    );

  box-shadow:
    0 10px 30px
    rgba(0,0,0,.16);

  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}


.match-card:hover {

  transform:
    translateY(-2px);

  border-color:
    var(--border-hover);

  box-shadow:
    0 18px 40px
    rgba(0,0,0,.25);
}


/* BET CARD */

.match-card--bet {

  border-color:
    rgba(245,158,11,.38);

  box-shadow:
    var(--glow-orange);

  background:
    linear-gradient(
      145deg,
      rgba(245,158,11,.045),
      var(--bg-2)
    );
}


.match-card--bet::before {

  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 3px;

  background:
    linear-gradient(
      180deg,
      var(--hot),
      transparent
    );
}


/* =========================================================
   MATCH TOP
   ========================================================= */

.match-card__top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  margin-bottom: 15px;

  color: var(--text-3);

  font-size: .7rem;

  font-weight: 600;

  letter-spacing: .4px;
}


.match-card__tournament {

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;

  text-transform: uppercase;
}


.match-card__minute {

  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: var(--accent);

  font-size: .76rem;

  font-weight: 800;
}


/* =========================================================
   MATCH TEAMS
   ========================================================= */

.match-card__teams {

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    90px
    minmax(0, 1fr);

  align-items: center;

  gap: 18px;

  margin-bottom: 18px;
}


.match-card__team {

  font-size:
    clamp(
      .95rem,
      2vw,
      1.08rem
    );

  font-weight: 700;

  line-height: 1.3;
}


.match-card__team--home {

  text-align: right;
}


.match-card__team--away {

  text-align: left;
}


.match-card__score {

  text-align: center;

  font-size:
    clamp(
      1.55rem,
      3vw,
      2rem
    );

  line-height: 1;

  font-weight: 850;

  letter-spacing: -1px;

  white-space: nowrap;
}


.match-card__score span {

  color: var(--text-3);

  margin:
    0 3px;
}


/* =========================================================
   ODDS
   ========================================================= */

.odds {

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 7px;

  margin-bottom: 15px;
}


.odds__item {

  min-width: 0;

  padding:
    10px 7px;

  text-align: center;

  background:
    var(--bg-3);

  border:
    1px solid
    var(--border-soft);

  border-radius:
    var(--radius-sm);

  transition:
    border-color .18s ease,
    background .18s ease;
}


.odds__item:hover {

  border-color:
    var(--border-hover);

  background:
    var(--bg-4);
}


.odds__label {

  display: block;

  color: var(--text-3);

  font-size: .63rem;

  font-weight: 700;

  letter-spacing: .8px;

  text-transform: uppercase;

  margin-bottom: 3px;
}


.odds__value {

  color: var(--text-0);

  font-size: .95rem;

  font-weight: 800;
}


.odds__value--empty {

  color: var(--text-3);
}


/* =========================================================
   BET BADGE
   ========================================================= */

.bet-badge {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  min-height: 27px;

  padding:
    0 9px;

  margin-bottom: 10px;

  border:
    1px solid
    rgba(245,158,11,.3);

  border-radius: 999px;

  background:
    rgba(245,158,11,.09);

  color: var(--hot);

  font-size: .64rem;

  font-weight: 800;

  letter-spacing: .7px;

  text-transform: uppercase;
}


.bet-info {

  padding:
    12px 14px;

  margin-bottom: 14px;

  border:
    1px solid
    rgba(245,158,11,.17);

  border-radius:
    var(--radius-sm);

  background:
    rgba(245,158,11,.045);
}


.bet-info__market {

  color: var(--text-0);

  font-size: .91rem;

  font-weight: 700;

  margin-bottom: 3px;
}


.bet-info__odds {

  color: var(--text-2);

  font-size: .78rem;
}


.bet-info__odds b {

  color: var(--hot);

  font-size: .9rem;
}


/* =========================================================
   MATCH BUTTON
   ========================================================= */

.match-card .btn {

  width: 100%;
}


/* =========================================================
   10. EMPTY STATE
   ========================================================= */

.empty-state {

  min-height: 190px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 25px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-lg);

  background:
    linear-gradient(
      180deg,
      var(--bg-1),
      var(--bg-2)
    );
}


.empty-state__icon {

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin-bottom: 10px;

  border-radius: 14px;

  background:
    rgba(74,222,128,.06);

  border:
    1px solid
    rgba(74,222,128,.14);

  font-size: 1.25rem;
}


.empty-state h3 {

  font-size: .98rem;

  margin-bottom: 4px;
}


.empty-state p {

  color: var(--text-3);

  font-size: .78rem;
}


/* =========================================================
   11. INFO PANEL
   ========================================================= */

.info-section {

  padding:
    10px 0 70px;
}


.info-panel {

  display: grid;

  grid-template-columns:
    minmax(280px, .9fr)
    minmax(0, 1.1fr);

  min-height: 330px;

  overflow: hidden;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-xl);

  background:
    linear-gradient(
      135deg,
      var(--bg-1),
      var(--bg-2)
    );

  box-shadow:
    0 20px 60px
    rgba(0,0,0,.22);
}


.info-panel__image {

  min-height: 300px;

  overflow: hidden;

  position: relative;
}


.info-panel__image::after {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 30%,
      var(--bg-1) 100%
    );
}


.info-panel__image img {

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.info-panel__content {

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    42px;
}


.info-panel__content h2 {

  max-width: 500px;

  font-size:
    clamp(
      1.5rem,
      3vw,
      2.2rem
    );

  line-height: 1.15;

  letter-spacing: -.8px;

  margin-bottom: 15px;
}


.info-panel__content p {

  max-width: 590px;

  color: var(--text-2);

  font-size: .9rem;

  line-height: 1.75;

  margin-bottom: 20px;
}


.text-link {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--accent);

  font-size: .84rem;

  font-weight: 700;

  transition:
    gap .2s ease,
    color .2s ease;
}


.text-link:hover {

  gap: 12px;

  color: var(--cyan);
}


/* =========================================================
   12. HISTORY
   ========================================================= */

.history-card {

  position: relative;

  padding: 18px 20px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      var(--bg-1),
      var(--bg-2)
    );

  transition:
    border-color .2s ease,
    transform .2s ease;
}


.history-card:hover {

  transform:
    translateY(-2px);

  border-color:
    var(--border-hover);
}


.history-card__head {

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 15px;

  margin-bottom: 8px;
}


.history-card__teams {

  font-size: .94rem;

  font-weight: 700;

  line-height: 1.4;
}


.history-card__date {

  color: var(--text-3);

  font-size: .7rem;

  margin-top: 3px;
}


.history-card__bet {

  color: var(--text-2);

  font-size: .82rem;

  margin:
    10px 0 7px;
}


.history-card__bet b {

  color: var(--text-0);
}


.history-card__score {

  font-size: 1rem;

  font-weight: 800;

  margin: 7px 0;
}


/* =========================================================
   RESULTS
   ========================================================= */

.result {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  min-height: 27px;

  padding:
    0 10px;

  border-radius: 999px;

  font-size: .65rem;

  font-weight: 800;

  letter-spacing: .5px;

  text-transform: uppercase;
}


.result--win {

  color: var(--win);

  background:
    rgba(74,222,128,.09);

  border:
    1px solid
    rgba(74,222,128,.3);
}


.result--lose {

  color: var(--lose);

  background:
    rgba(239,68,68,.09);

  border:
    1px solid
    rgba(239,68,68,.3);
}


.result--void {

  color: var(--void);

  background:
    rgba(148,163,184,.08);

  border:
    1px solid
    rgba(148,163,184,.25);
}


.result--half {

  color: var(--half);

  background:
    rgba(167,139,250,.09);

  border:
    1px solid
    rgba(167,139,250,.28);
}


/* =========================================================
   13. NOTICE
   ========================================================= */

.notice-section {

  padding:
    0 0 60px;
}


.notice {

  display: flex;

  align-items: flex-start;

  gap: 15px;

  padding:
    18px 20px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius);

  background:
    rgba(255,255,255,.018);
}


.notice__icon {

  width: 34px;
  height: 34px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 9px;

  color: var(--cyan);

  background:
    rgba(34,211,238,.07);

  border:
    1px solid
    rgba(34,211,238,.16);

  font-weight: 800;
}


.notice h2 {

  font-size: .85rem;

  margin-bottom: 3px;
}


.notice p {

  color: var(--text-3);

  font-size: .76rem;

  line-height: 1.6;
}


/* =========================================================
   14. FOOTER
   ========================================================= */

.footer {

  margin-top: 20px;

  padding:
    50px 0 30px;

  border-top:
    1px solid
    var(--border-soft);

  background:
    rgba(0,0,0,.12);
}


.footer__inner {

  display: grid;

  grid-template-columns:
    2fr 1fr 1fr;

  gap: 50px;

  padding-bottom: 35px;
}


.footer__brand .logo {

  margin-bottom: 13px;
}


.footer__brand p {

  max-width: 310px;

  color: var(--text-3);

  font-size: .76rem;

  line-height: 1.65;
}


.footer__column {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 9px;
}


.footer__column h3 {

  color: var(--text-0);

  font-size: .75rem;

  font-weight: 700;

  margin-bottom: 4px;

  text-transform: uppercase;

  letter-spacing: .7px;
}


.footer__column a {

  color: var(--text-3);

  font-size: .78rem;

  transition:
    color .18s ease;
}


.footer__column a:hover {

  color: var(--accent);
}


.footer__bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-top: 20px;

  border-top:
    1px solid
    var(--border-soft);

  color: var(--text-3);

  font-size: .72rem;
}


.footer__links {

  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}


.footer__links a:hover {

  color: var(--accent);
}


.footer__note {

  max-width: 760px;

  margin:
    20px auto 0;

  color: var(--text-3);

  font-size: .67rem;

  line-height: 1.65;

  text-align: center;
}


/* =========================================================
   15. ABOUT / CONTACTS
   ========================================================= */

.page-head {

  padding:
    70px 0 30px;

  text-align: center;
}


.page-head h1 {

  font-size:
    clamp(
      1.8rem,
      4vw,
      2.8rem
    );

  line-height: 1.1;

  letter-spacing: -1px;

  margin-bottom: 12px;
}


.page-head p {

  max-width: 650px;

  margin-inline: auto;

  color: var(--text-2);

  font-size: .92rem;
}


.content-grid {

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap: 15px;

  padding-bottom: 60px;
}


.card {

  padding: 25px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      var(--bg-1),
      var(--bg-2)
    );
}


.card h2 {

  font-size: 1.05rem;

  margin-bottom: 11px;
}


.card p {

  color: var(--text-2);

  font-size: .84rem;

  line-height: 1.7;

  margin-bottom: 10px;
}


.card p:last-child {
  margin-bottom: 0;
}


.card ul {

  display: flex;

  flex-direction: column;

  gap: 9px;

  margin-top: 12px;

  list-style: none;
}


.card li {

  display: flex;

  gap: 9px;

  color: var(--text-2);

  font-size: .84rem;
}


.card li::before {

  content: "→";

  color: var(--accent);

  font-weight: 800;
}


/* =========================================================
   CONTACTS
   ========================================================= */

.contact-list {

  display: flex;

  flex-direction: column;

  gap: 11px;

  margin-top: 10px;
}


.contact-item {

  display: flex;

  align-items: center;

  gap: 12px;

  padding:
    12px 14px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-sm);

  background:
    var(--bg-2);

  transition:
    border-color .2s ease,
    transform .2s ease;
}


.contact-item:hover {

  border-color:
    rgba(74,222,128,.3);

  transform:
    translateX(3px);
}


.contact-item__icon {

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  flex: 0 0 auto;

  border-radius: 9px;

  color: var(--accent);

  background:
    rgba(74,222,128,.06);

  border:
    1px solid
    rgba(74,222,128,.14);
}


.contact-item__label {

  color: var(--text-3);

  font-size: .65rem;

  text-transform: uppercase;

  letter-spacing: .5px;
}


.contact-item__value {

  color: var(--text-0);

  font-size: .84rem;

  font-weight: 600;
}


/* =========================================================
   FORM
   ========================================================= */

.form {

  display: flex;

  flex-direction: column;

  gap: 13px;
}


.field {

  display: flex;

  flex-direction: column;

  gap: 6px;
}


.field label {

  color: var(--text-2);

  font-size: .68rem;

  font-weight: 600;

  letter-spacing: .5px;

  text-transform: uppercase;
}


.field input,
.field textarea {

  width: 100%;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-sm);

  outline: none;

  background:
    var(--bg-2);

  color: var(--text-0);

  padding:
    12px 14px;

  font-size: .85rem;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


.field input:focus,
.field textarea:focus {

  border-color:
    rgba(74,222,128,.55);

  box-shadow:
    0 0 0 3px
    rgba(74,222,128,.07);
}


.field textarea {

  min-height: 130px;

  resize: vertical;
}


/* =========================================================
   16. RESPONSIVE — LARGE TABLETS
   ========================================================= */

@media (max-width: 1050px) {

  :root {
    --container: 940px;
  }


  .hero {

    min-height: 530px;

  }


  .hero__inner {

    grid-template-columns:
      minmax(0, 1fr)
      360px;

  }


  .hero__visual {

    height: 390px;

  }


  .features-grid {

    grid-template-columns:
      repeat(2, minmax(0,1fr));

  }

}


/* =========================================================
   17. TABLET
   ========================================================= */

@media (max-width: 820px) {

  .container {

    width:
      min(
        calc(100% - 32px),
        var(--container)
      );

  }


  .hero {

    padding:
      55px 0 65px;

  }


  .hero__inner {

    grid-template-columns: 1fr;

    text-align: center;

  }


  .hero__content {

    max-width: 680px;

    margin-inline: auto;

  }


  .hero__description {

    margin-inline: auto;

  }


  .hero__actions {

    justify-content: center;

  }


  .hero__trust {

    justify-content: center;

  }


  .hero__visual {

    height: 330px;

    max-width: 500px;

    width: 100%;

    margin-inline: auto;

    margin-top: -15px;

  }


  .info-panel {

    grid-template-columns: 1fr;

  }


  .info-panel__image {

    min-height: 240px;

    max-height: 280px;

  }


  .info-panel__image::after {

    background:
      linear-gradient(
        0deg,
        var(--bg-1),
        transparent
      );

  }


  .footer__inner {

    grid-template-columns:
      1fr 1fr;

  }


  .footer__brand {

    grid-column:
      1 / -1;

  }

}


/* =========================================================
   18. MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 720px) {

  .header,
  .header__inner {

    height: 64px;

  }


  .burger {

    display: block;

  }


  .nav {

    position: fixed;

    top: 72px;

    left: 14px;
    right: 14px;

    padding: 8px;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 4px;

    border:
      1px solid
      var(--border);

    border-radius:
      var(--radius-lg);

    background:
      rgba(15,18,24,.96);

    backdrop-filter:
      blur(20px)
      saturate(150%);

    -webkit-backdrop-filter:
      blur(20px)
      saturate(150%);

    box-shadow:
      0 25px 70px
      rgba(0,0,0,.6);

    opacity: 0;

    pointer-events: none;

    transform:
      translateY(-12px)
      scale(.98);

    transform-origin:
      top center;

    transition:
      opacity .2s ease,
      transform .2s ease;

  }


  .nav.is-open {

    opacity: 1;

    pointer-events: auto;

    transform:
      translateY(0)
      scale(1);

  }


  .nav a {

    width: 100%;

    min-height: 50px;

    justify-content: flex-start;

    padding:
      0 16px;

    font-size: .9rem;

    border-radius: 10px;

  }


  .nav a.is-active::after {

    left: 12px;
    right: auto;

    width: 3px;

    height: 20px;

    top: 50%;
    bottom: auto;

    transform:
      translateY(-50%);

  }


  .hero {

    min-height: auto;

    padding:
      48px 0 35px;

  }


  .hero h1 {

    font-size:
      clamp(
        2.1rem,
        10vw,
        3.1rem
      );

    letter-spacing:
      -1.4px;

  }


  .hero__description {

    font-size: .9rem;

  }


  .hero__visual {

    height: 270px;

    margin-top: 0;

  }


  .features {

    margin-top: 0;

    padding:
      20px 0 40px;

  }


  .features-grid {

    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap: 10px;

  }


  .feature-card {

    min-height: 170px;

  }


  .section {

    padding:
      40px 0 50px;

  }


  .section--live {

    padding-top: 20px;

  }


  .section__head {

    align-items: flex-start;

  }


  .section__meta {

    white-space: normal;

    text-align: right;

  }


  .match-card {

    padding: 16px;

  }


  .match-card__teams {

    grid-template-columns:
      minmax(0,1fr)
      72px
      minmax(0,1fr);

    gap: 10px;

  }


  .match-card__team {

    font-size: .88rem;

  }


  .match-card__score {

    font-size: 1.45rem;

  }


  .info-panel__content {

    padding: 30px 24px;

  }


  .footer {

    padding-top: 40px;

  }


  .footer__inner {

    grid-template-columns:
      1fr 1fr;

    gap: 30px;

  }

}


/* =========================================================
   19. SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

  .container {

    width:
      calc(100% - 28px);

  }


  .logo__sub {

    display: none;

  }


  .logo__mark {

    width: 34px;
    height: 34px;

  }


  .hero {

    padding-top: 40px;

  }


  .hero__badge {

    font-size: .63rem;

  }


  .hero__actions {

    flex-direction: column;

    width: 100%;

  }


  .hero__actions .btn {

    width: 100%;

  }


  .hero__trust {

    gap: 11px;

  }


  .hero__trust-item {

    font-size: .66rem;

  }


  .hero__visual {

    height: 225px;

  }


  .features-grid {

    grid-template-columns: 1fr;

  }


  .feature-card {

    min-height: 145px;

  }


  .section__head {

    flex-direction: column;

    align-items: flex-start;

  }


  .section__meta {

    text-align: left;

  }


  .live-count {

    align-self: flex-start;

  }


  .match-card__top {

    align-items: flex-start;

  }


  .match-card__tournament {

    max-width: 65%;

    white-space: normal;

  }


  .match-card__teams {

    grid-template-columns:
      1fr 62px 1fr;

    gap: 7px;

  }


  .match-card__team {

    font-size: .82rem;

  }


  .match-card__score {

    font-size: 1.3rem;

  }


  .odds__item {

    padding:
      9px 4px;

  }


  .odds__value {

    font-size: .87rem;

  }


  .bet-info {

    padding:
      11px 12px;

  }


  .history-card {

    padding:
      15px;

  }


  .history-card__head {

    flex-direction: column;

    gap: 8px;

  }


  .footer__inner {

    grid-template-columns:
      1fr;

  }


  .footer__brand {

    grid-column: auto;

  }


  .footer__bottom {

    flex-direction: column;

    align-items: center;

    text-align: center;

  }


  .notice {

    padding:
      15px;

  }

}


/* =========================================================
   20. VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

  .container {

    width:
      calc(100% - 22px);

  }


  .hero h1 {

    font-size: 1.9rem;

  }


  .hero__visual {

    height: 195px;

  }


  .feature-card {

    min-height: 135px;

  }


  .match-card {

    padding: 13px;

  }


  .match-card__teams {

    grid-template-columns:
      minmax(0,1fr)
      55px
      minmax(0,1fr);

  }


  .match-card__team {

    font-size: .76rem;

  }


  .match-card__score {

    font-size: 1.15rem;

  }


  .odds {

    gap: 4px;

  }


  .odds__label {

    font-size: .57rem;

  }


  .odds__value {

    font-size: .8rem;

  }

}


/* =========================================================
   21. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {

    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

  }

}