@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap");

:root {
  --clr-nav: #12444b;
  --clr-nav-dark: #0c2f35;
  --clr-btn-primary: #dd55f4;
  --clr-btn-secondary: #23a1d9;
  --clr-bg: #4399d7;
  --clr-bg-alt: #3788c4;
  --clr-bg-card: #1a5a65;
  --clr-bg-card2: #16505a;
  --clr-text: #f0f8ff;
  --clr-text-muted: #a8d4e8;
  --clr-accent: #dd55f4;
  --clr-accent2: #23a1d9;
  --clr-gold: #ffd700;
  --clr-plus: #2ecc71;
  --clr-minus: #e74c3c;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 18px rgba(221, 85, 244, 0.45);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Rajdhani", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--clr-accent2);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--clr-accent);
}

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

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.box {
  border-radius: var(--radius-md);
}

.section-gap {
  margin: 28px 0;
}

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

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    filter 0.18s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, #dd55f4, #a020c8);
  color: #fff;
  box-shadow: 0 0 14px rgba(221, 85, 244, 0.5);
}
.btn--primary:hover {
  box-shadow: var(--shadow-glow);
}

.btn--secondary {
  background: linear-gradient(135deg, #23a1d9, #1679a8);
  color: #fff;
  box-shadow: 0 0 10px rgba(35, 161, 217, 0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: #fff;
}

.btn--demo {
  background: linear-gradient(135deg, #23a1d9, #1679a8);
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 18px;
}
.btn--play {
  background: linear-gradient(135deg, #dd55f4, #a020c8);
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 18px;
}

.btn--sm {
  padding: 7px 14px;
  font-size: 0.85rem;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1.1rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--store {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 10px;
}
.btn--store:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header {
  background: var(--clr-nav);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.header__logo img {
  height: 84px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.header__nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
}
.header__nav a:hover,
.header__nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.header__nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-picker {
  position: relative;
}
.lang-picker__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
.lang-picker__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--clr-nav-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  min-width: 120px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.2s,
    transform 0.2s;
  z-index: 200;
}
.lang-picker__dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lang-picker__dropdown a {
  display: block;
  padding: 8px 14px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.lang-picker__dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-sm);
  padding: 7px;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 36, 41, 0.97);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 32px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c2f35 0%, #1a5a65 50%, #12444b 100%);
  padding: 40px 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/jaban.avif") center/cover no-repeat;
  opacity: 0.28;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero__text h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
}
.hero__text h1 span {
  color: var(--clr-accent);
}
.hero__text p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero__badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__demo {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__demo-frame {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}
.hero__demo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.hero__demo-frame .demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0c2f35, #1a5a65);
  gap: 16px;
}
.hero__demo-frame .demo-placeholder svg {
  width: 80px;
  height: 80px;
  fill: var(--clr-accent);
  opacity: 0.7;
}
.hero__demo-btns {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
}

.sec-title {
  text-align: center;
  margin-bottom: 28px;
}
.sec-title h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.sec-title p {
  color: var(--clr-text-muted);
  font-size: 1rem;
}
.sec-title__line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent2));
  border-radius: 2px;
  margin: 10px auto 0;
}

.games-section {
  padding: 40px 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.game-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.game-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.game-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.game-card:hover .game-card__thumb img {
  transform: scale(1.06);
}
.game-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
}
.game-card__body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.game-card__provider {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.game-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.game-card__desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  flex: 1;
}
.game-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.reviews-section {
  padding: 40px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.review-card__info {
}
.review-card__name {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.review-card__date {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.review-card__stars {
  display: flex;
  gap: 3px;
}
.star {
  color: var(--clr-gold);
  font-size: 1.1rem;
}
.star.empty {
  color: rgba(255, 215, 0, 0.3);
}
.review-card__text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.review-form-wrap {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}
.review-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 11px 14px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(221, 85, 244, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: var(--radius-sm);
  color: var(--clr-plus);
  font-weight: 600;
  font-size: 1rem;
}
.form-success.visible {
  display: block;
}

/* ==================== DEMO BLOCK ==================== */
.demo-section {
  padding: 40px 0;
}
.demo-block {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}
.demo-block__frame {
  position: relative;
  padding-top: 56.25%;
}
.demo-block__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-block__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
  gap: 12px;
}
.demo-block__info {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.demo-block__info strong {
  color: #fff;
}

/* ==================== PROS & CONS ==================== */
.proscons-section {
  padding: 40px 0;
}
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proscons-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}
.proscons-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.proscons-card--plus .proscons-card__title {
  color: var(--clr-plus);
}
.proscons-card--minus .proscons-card__title {
  color: var(--clr-minus);
}
.proscons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proscons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.proscons-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
}
.proscons-card--plus .proscons-list li::before {
  background: var(--clr-plus);
}
.proscons-card--minus .proscons-list li::before {
  background: var(--clr-minus);
}

/* ==================== MOBILE APP ==================== */
.mobile-section {
  padding: 40px 0;
}
.mobile-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.phone-frame {
  width: 200px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.1),
    var(--shadow);
  position: relative;
}
.phone-frame::before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin: 0 auto 10px;
}
.phone-frame img {
  border-radius: 26px;
  width: 100%;
}

.app-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.app-table th,
.app-table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}
.app-table th {
  background: rgba(0, 0, 0, 0.25);
  color: var(--clr-text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.app-table td {
  color: #fff;
}
.app-table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-sm);
}

.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.features-section {
  padding: 40px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.feature-tile {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.feature-tile__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(221, 85, 244, 0.25),
    rgba(35, 161, 217, 0.25)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-tile__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--clr-accent);
}
.feature-tile__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.feature-tile__desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.content-section {
  padding: 40px 0;
}
.content-block {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow);
}
.content-block h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.content-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #fff;
}
.content-block h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--clr-accent2);
}
.content-block p {
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 1rem;
}
.content-block ul,
.content-block ol {
  color: var(--clr-text-muted);
  padding-left: 20px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.content-block li {
  line-height: 1.6;
}
.content-block a {
  color: var(--clr-accent2);
}
.content-block a:hover {
  color: var(--clr-accent);
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.content-block table th,
.content-block table td {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}
.content-block table th {
  background: rgba(0, 0, 0, 0.25);
  color: var(--clr-text-muted);
  font-weight: 600;
}
.content-block table td {
  color: #fff;
}
.content-block strong {
  color: #fff;
}
.content-block em {
  color: var(--clr-accent);
}
.content-block blockquote {
  border-left: 3px solid var(--clr-accent);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}
.author-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.author-card__name {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.author-card__bio {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.author-card__links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.author-card__links a {
  font-size: 0.85rem;
  color: var(--clr-accent2);
}

.faq-section {
  padding: 40px 0;
}
.faq-item {
  background: var(--clr-bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}
.faq-question span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--clr-text-muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer__inner {
  padding: 0 20px 16px;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer {
  background: var(--clr-nav);
  padding: 40px 0 0;
  margin-top: auto;
}
.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logo img {
  height: 40px;
  margin-bottom: 12px;
}
.footer__desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer__links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer__links ul li a {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.footer__links ul li a:hover {
  color: #fff;
}

.footer__trust h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer__mid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__mid-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-logos,
.social-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-logo,
.social-logo {
  width: 40px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}
.social-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.2s;
}
.social-logo:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer__bottom {
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer__legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 640px;
  line-height: 1.5;
  text-align: right;
}

.footer__flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}

.casino-widget {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 990;
  width: 220px;
  background: var(--clr-nav-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform 0.3s;
}
.casino-widget.collapsed .widget-body {
  display: none;
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.widget-header span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.widget-toggle {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s;
}
.casino-widget.collapsed .widget-toggle {
  transform: rotate(180deg);
}
.widget-body {
  padding: 10px;
}
.widget-casino {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.widget-casino:last-child {
  margin-bottom: 0;
}
.widget-casino__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.widget-casino__bonus {
  font-size: 0.75rem;
  color: var(--clr-accent2);
}
.widget-casino__rating {
  display: flex;
  gap: 2px;
}
.widget-casino__rating .star {
  font-size: 0.75rem;
}
.widget-casino__btn {
  font-size: 0.78rem;
  padding: 6px 10px;
  width: 100%;
}

.breadcrumbs {
  padding: 10px 0;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.breadcrumbs li {
  color: var(--clr-text-muted);
}
.breadcrumbs li a {
  color: var(--clr-accent2);
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.25);
}

.info-content {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}
.info-content h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.info-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: #fff;
}
.info-content p {
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.info-content ul {
  color: var(--clr-text-muted);
  padding-left: 20px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-content a {
  color: var(--clr-accent2);
}
.info-content strong {
  color: #fff;
}
.info-content address {
  font-style: normal;
  color: var(--clr-text-muted);
}

.wp-block-quote {
  border-left: 3px solid var(--clr-accent);
  padding: 10px 16px;
}
.wp-caption-text {
  font-size: 0.82rem;
  text-align: center;
  color: var(--clr-text-muted);
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.alignleft {
  float: left;
  margin-right: 16px;
}
.alignright {
  float: right;
  margin-left: 16px;
}
.has-drop-cap:first-letter {
  font-size: 3rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  margin-right: 6px;
}
.entry-meta {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.widget-area {
}
.sidebar {
}
.post-thumbnail {
}
.wp-post-image {
}
.cat-links {
}
.tags-links {
}
.comments-link {
}
.edit-link {
}
.posted-on {
}
.byline {
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(221, 85, 244, 0.4);
  }
  50% {
    box-shadow: 0 0 28px rgba(221, 85, 244, 0.75);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.fade-in {
  animation: fadeInUp 0.55s ease forwards;
}
.glow-pulse {
  animation: glowPulse 2.5s ease-in-out infinite;
}

.btn--primary {
  animation: glowPulse 2.5s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__text h1 {
    font-size: 2rem;
  }
  .mobile-inner {
    grid-template-columns: 1fr;
  }
  .phone-frame {
    width: 160px;
    margin: 0 auto;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .proscons-grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .casino-widget {
    width: 180px;
  }
  .hero__text h1 {
    font-size: 1.7rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__legal {
    text-align: left;
  }
  .demo-block__footer {
    flex-direction: column;
  }
  .content-block {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero__badges {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .casino-widget {
    right: 8px;
    bottom: 60px;
    width: 160px;
  }
  .btn {
    padding: 9px 16px;
    font-size: 0.9rem;
  }
}
