@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("/Manrope-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  src: url("/Manrope-SemiBold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  src: url("/Manrope-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  src: url("/Unbounded-Bold.woff2") format("woff2");
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #2A2E3C;
  color: #c6d3ed;
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Unbounded', sans-serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Hero Section --- */
.hero {
  background: url(/img/0_1.webp) #5391B3 no-repeat;
  background-size: cover;
}

.hero__image-wrapper {
  flex-basis: 300px;
  animation: bounce 3s infinite ease-in-out;
}

.hero__image {
  max-width: 100%;
  height: auto;
}

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.6rem;
}

.hero__title-date {
  color: #EA386A;
}

.hero__description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero__cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* --- Call to Action (CTA) Buttons --- */
.cta {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  border: none;
}

.cta-xl {
  margin-top: 26px;
  width: 100%;
}

.cta:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta--primary {
  background-color: #EA386A;
  color: #FFFFFF;
}

.cta--secondary {
  background-color: #FBE927;
  color: #3E4464;
}

.cta--highlight {
  animation: pulse 2s infinite;
}


/* --- General Section Styling --- */
section {
  padding: 2rem 0;
}

.overview {
  padding-top: 0;
  background: linear-gradient(180deg, #0e182b, transparent);
}

section ul {
  padding-left: 20px;
}

/* --- Tables --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #b3b3ff14;
}

thead th {
  background-color: #414459;
  color: #FFFFFF;
  font-weight: 700;
}

tbody tr {
  background-color: #b3b3ff14;
}

tbody tr:hover {
  background-color: #b3b3ff1e;
}

th:first-child,
td:first-child {
  font-weight: 700;
}

.risk-reward__row--high td {
  font-weight: bold;
  color: #EA386A;
}

/* --- Developers Section --- */
.developers {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.developers__content {
  flex: 1;
}

.developers__image-wrapper {
  flex-basis: 250px;
}

.developers__image {
  max-width: 100%;
}

.developers__list {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.developers__item {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* --- Articles Section --- */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.articles__card {
  background: #35384b;
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.articles__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(62, 68, 100, 0.1);
}

.articles__date {
  font-size: 1.2rem;
  color: #FBE927;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.articles__author {
  font-weight: 700;
  margin-top: 8px;
  text-align: right;
}

.risk-reward__table-wrapper,
.payouts__table-wrapper {
  overflow-x: scroll;
}

.payouts__table thead th {
  background-color: #1a1d2e;
}

.payouts__table tbody tr {
  background-color: #22263a;
}

.payouts__table tbody tr:hover {
  background-color: #2c3048;
}

.payouts__table th,
.payouts__table td {
  border-bottom-color: #3a3f54;
}

blockquote,
figcaption {
  margin: 0;
  padding: 0;
}

.faq__list {
  padding: 0 0 90px 0;
}

.faq__item {
  border-bottom: 1px solid #e8eaf233;
}

.faq__item details {
  padding: 1.5rem 0;
}

.faq__question {
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  /* Hide default marker */
  position: relative;
  padding-right: 2rem;
}

.faq__question::after {
  content: '＋';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: #EA386A;
  transition: transform 0.2s;
}

.faq__item details[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding-top: 1rem;
}

/* --- Sticky Bar --- */
.sticky-bar {
  background: #FFFFFF;
  padding: 10px;
  box-shadow: 0 -5px 15px rgba(62, 68, 100, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(200%);
  /* Start hidden below the viewport */
  z-index: 1000;
}

.sticky-bar.is-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  /* Slide into view */
}

.sticky-bar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.sticky-bar__icon-xl {
  width: 85px;
  height: 85px;
  border-radius: 16px;
}

.sticky-bar__rating-xl {
  font-size: 1rem;
  font-weight: 600;
  color: #c5d2e9;
}

.sticky-bar__name-xl {
  font-family: 'Unbounded', sans-serif;
  color: #fff;
  font-size: 28px;
}

.sticky-bar__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.sticky-bar__info {
  display: flex;
  flex-direction: column;
  margin: 0 15px;
  flex-grow: 1;
}

.sticky-bar__name {
  font-weight: 700;
  font-size: 1rem;
  color: #3E4464;
}

.sticky-bar__rating {
  font-size: 0.9rem;
  color: #6f77a7;
  font-weight: 600;
}

.risk-reward__table-wrapper::-webkit-scrollbar,
.payouts__table-wrapper::-webkit-scrollbar {
  display: none;
  height: 0;
}

.sticky-bar__button {
  background-color: #EA386A;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform 0.2s;
}

.sticky-bar__button:hover {
  transform: scale(1.05);
}


/* --- Animations --- */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 56, 106, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(234, 56, 106, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(234, 56, 106, 0);
  }
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(360deg, #0e192b, transparent);
}

@media (min-width: 769px) {
  .hero {
    padding: 24px 0;
    background: url(/img/0_1.webp) #5391B3 no-repeat;
    height: 640px;
    background-size: cover;
    position: relative;
  }

  .hero__content {
    margin-top: 80px;
    max-width: 800px;
  }
  .developers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 0 40px;
    background: url(/img/mobilevideo.webp) #1F1833 no-repeat;
    background-size: cover;
    position: relative;
  }

  .section-title {
    font-size: 24px;
  }

  .sticky-bar__icon-xl {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .cta {
    width: 100%;
  }

  .hero__content {
    margin-top: 64px;
  }

  .sticky-bar__rating-xl {
    font-size: 13px;
  }

  .hero__title {
    font-size: 40px;
  }

  .sticky-bar__name-xl {
    font-size: 16px;
  }

  .hero__image-wrapper {
    order: -1;
    margin-bottom: 2rem;
    max-width: 200px;
  }

  .developers {
    flex-direction: column;
    text-align: center;
  }

  .developers__image-wrapper {
    order: -1;
    margin-bottom: 2rem;
  }

  body {
    font-size: 0.9rem;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .hero__cta-group .cta {
    text-align: center;
  }

  .features__illustration {
    display: none;
  }
}

@media (max-width: 374px) {
  .hero__title {
    font-size: 36px;
  }

  .sticky-bar__name-xl {
    font-size: 14px;
  }
}

::-webkit-scrollbar {
  background-color: transparent;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-clip: content-box;
  background-color: #9fa2a9;
  transition: 0.2s;
}

::-webkit-scrollbar-track {
  background-color: #25272a08;
  transition: 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #636a72 !important;
  transition: 0.2s;
}

::-moz-selection {
  color: #fff;
  background: #EA386A;
}

::selection {
  color: #fff;
  background: #EA386A;
}

/* --- Overview Section --- */
.overview__intro {
  margin-bottom: 16px;
}

.overview__demo {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* --- Casino Cards --- */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.casino-card {
  display: grid;
  grid-template-columns: 36px 150px 120px 1fr 120px auto;
  align-items: center;
  gap: 35px;
  background: #35384b;
  border-radius: 12px;
  padding: 16px 24px;
  border-left: 4px solid #EA386A;
  transition: transform 0.2s, box-shadow 0.2s;
}

.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.casino-rank {
  width: 30px;
  height: 30px;
  background: #EA386A;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  font-family: 'Unbounded', sans-serif;
  flex-shrink: 0;
}

.casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px;
  min-height: 64px;
}

.casino-logo img,
.casino-logo svg {
  max-width: 140px;
  height: 48px;
  object-fit: contain;
}

.casino-logo--glorion {
  background: #19242F;
}

.casino-logo--bigclash {
  background: #0A2966;
}

.casino-logo--millioner {
  background: #081424;
}

.casino-logo--dudespin {
  background: #021024;
}

.casino-logo--gransino {
  background: #111213;
}

.casino-logo--onlyspins {
  background: #AFD3FF;
}

.casino-logo--lizaro {
  background: #281B14;
}

.casino-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.casino-info strong {
  color: #fff;
  font-size: 1.05rem;
  white-space: nowrap;
}

.casino-info .casino-rating {
  color: #FBE927;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.casino-bonus {
  background: #414459;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-bonus strong {
  color: #EA386A;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.casino-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: #8b90a8;
}

.casino-stats span {
  white-space: nowrap;
}

.casino-stats span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #EA386A;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.casino-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #EA386A;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.casino-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(234, 56, 106, 0.4);
}

/* --- Floating Ball --- */
@keyframes floatBall {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

.floating-ball {
  position: absolute;
}

/* --- Warning Section --- */
.warning {
  position: relative;
  overflow: hidden;
  background: url(img/mobilevideo.webp) center / cover no-repeat;
}

.warning__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.82);
}

.warning__content {
  position: relative;
  z-index: 1;
}

.warning__ball--1 {
  top: 15%;
  right: 8%;
  width: 28px;
  opacity: 0.3;
  animation: floatBall 4s ease-in-out infinite;
}

.warning__ball--2 {
  bottom: 20%;
  left: 5%;
  width: 20px;
  opacity: 0.2;
  animation: floatBall 5s ease-in-out infinite 1s;
}

/* --- Developers Section (balls) --- */
.developers__ball--1 {
  top: 12%;
  right: 5%;
  width: 20px;
  opacity: 0.18;
  animation: floatBall 4.2s ease-in-out infinite 0.3s;
}

.developers__ball--2 {
  bottom: 18%;
  left: 8%;
  width: 26px;
  opacity: 0.25;
  animation: floatBall 5.2s ease-in-out infinite 1.2s;
}

/* --- Features Section --- */
.features {
  position: relative;
  overflow: hidden;
}

.features__content {
  position: relative;
  z-index: 1;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.features__illustration {
  width: 200px;
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 20px;
}

.content-banner {
  display: block;
  width: 100%;
  max-width: 1024px;
  height: auto;
  border-radius: 16px;
  margin: 24px auto;
}

.features__subtitle {
  margin-top: 2rem;
}

.features__table-wrapper {
  overflow-x: auto;
}

.features__ball--1 {
  top: 8%;
  left: 6%;
  width: 22px;
  opacity: 0.2;
  animation: floatBall 4.8s ease-in-out infinite 0.6s;
}

.features__ball--2 {
  bottom: 15%;
  right: 4%;
  width: 16px;
  opacity: 0.15;
  animation: floatBall 3.8s ease-in-out infinite 1.8s;
}

.features__ball--3 {
  top: 55%;
  left: 20%;
  width: 14px;
  opacity: 0.12;
  animation: floatBall 5.5s ease-in-out infinite 2.5s;
}

/* --- Payouts Section --- */
.payouts {
  position: relative;
  overflow: hidden;
  background: url(img/bg.webp) center / cover no-repeat;
  padding: 4rem 0;
}

.payouts__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 46, 60, 0.75);
  backdrop-filter: blur(4px);
}

.payouts__content {
  position: relative;
  z-index: 1;
}

.payouts__title {
  margin-bottom: 1rem;
}

.payouts__text {
  margin-bottom: 1.5rem;
}

.payouts__closing {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}

.payouts__cta-wrapper {
  text-align: center;
}

.payouts__cta {
  font-size: 1.2rem;
  padding: 18px 48px;
}

.payouts__ball--1 {
  top: 20%;
  left: 12%;
  width: 24px;
  opacity: 0.4;
  animation: floatBall 3.5s ease-in-out infinite;
}

.payouts__ball--2 {
  bottom: 25%;
  right: 10%;
  width: 32px;
  opacity: 0.35;
  animation: floatBall 4.5s ease-in-out infinite 0.5s;
}

.payouts__ball--3 {
  top: 40%;
  right: 25%;
  width: 18px;
  opacity: 0.25;
  animation: floatBall 5s ease-in-out infinite 1.5s;
}

/* --- FAQ Section --- */
.faq {
  position: relative;
  overflow: hidden;
}

.faq__content {
  position: relative;
  z-index: 1;
}

.faq__ball--1 {
  top: 10%;
  right: 6%;
  width: 22px;
  opacity: 0.2;
  animation: floatBall 4s ease-in-out infinite 0.8s;
}

.faq__ball--2 {
  bottom: 30%;
  left: 4%;
  width: 16px;
  opacity: 0.15;
  animation: floatBall 5.5s ease-in-out infinite;
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 24px 16px;
  color: #6f77a7;
  font-size: 0.85rem;
}

.footer__nav {
  margin-bottom: 12px;
}

.footer__link {
  color: #c6d3ed;
  text-decoration: none;
  margin: 0 12px;
}

/* --- Cookie Notice --- */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1d2e;
  color: #c6d3ed;
  padding: 16px 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1001;
}

.cookie-notice__text {
  margin: 0;
  max-width: 800px;
}

.cookie-notice__button {
  background: #EA386A;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* --- Rocknroll Font --- */
.rocknroll {
  font-family: "RocknRoll One", sans-serif;
}

@media (max-width: 900px) {
  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
  }

  .casino-rank {
    margin: 0 auto;
  }

  .casino-logo {
    justify-content: center;
    min-height: 56px;
  }

  .casino-logo img,
  .casino-logo svg {
    max-width: 160px;
    height: 56px;
  }

  .casino-info {
    align-items: center;
  }

  .casino-stats {
    align-items: center;
  }

  .casino-cta {
    width: 100%;
  }
}