:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;

  --red: #e5002b;
  --red-lt: #ff1a3e;
  --red-dim: rgba(229, 0, 43, 0.12);
  --red-mid: rgba(229, 0, 43, 0.25);
  --red-border: rgba(229, 0, 43, 0.35);

  --white: #ffffff;
  --white-2: rgba(255, 255, 255, 0.85);
  --white-3: rgba(255, 255, 255, 0.55);
  --white-4: rgba(255, 255, 255, 0.28);
  --white-5: rgba(255, 255, 255, 0.1);

  --gold: #f5a623;
  --green-live: #00c851;

  --border: rgba(255, 255, 255, 0.08);
  --border-red: rgba(229, 0, 43, 0.3);

  --glow-red: 0 0 24px rgba(229, 0, 43, 0.5), 0 0 60px rgba(229, 0, 43, 0.15);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6);

  --radius-sm: 3px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --header-h: 70px;
  --transition: 0.22s ease;

  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Rajdhani", sans-serif;

  --container-max: 1180px;
  --container-pad: clamp(16px, 4vw, 40px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  height: 52px;
  width: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

.diag-top::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 2;
}

.diag-bottom::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  transform: skewX(-20deg);
  transition: left 0.35s ease;
}
.btn:hover::after {
  left: 150%;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  box-shadow: var(--glow-red);
}
.btn-primary:hover {
  background: var(--red-lt);
  border-color: var(--red-lt);
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(229, 0, 43, 0.7),
    0 0 80px rgba(229, 0, 43, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-4);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--bg);
  border: 2px solid var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.15rem;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}
.btn.sent {
  background: #00c851;
  border-color: #00c851;
  box-shadow: none;
}

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.97);
}

.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: var(--glow-red), var(--shadow-card);
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--red);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--glow-red);
}

.age-gate-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 10px;
}

.age-gate-box p {
  color: var(--white-3);
  margin-bottom: 28px;
}
.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.age-gate-note {
  margin-top: 18px !important;
  font-size: 0.78rem;
  color: var(--white-4);
  margin-bottom: 0 !important;
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: min(680px, calc(100vw - 32px));
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  box-shadow: var(--glow-red), var(--shadow-card);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 1.2rem;
  color: var(--red);
  flex-shrink: 0;
}
.cookie-inner p {
  flex: 1;
  font-size: 0.9rem;
  color: var(--white-3);
  min-width: 160px;
}
.cookie-inner a {
  color: var(--red);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker-item i {
  font-size: 0.7rem;
  opacity: 0.7;
}
.ticker-live {
  color: #fff;
  font-weight: 700;
}
.ticker-odd {
  color: rgba(255, 255, 220, 0.95);
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: var(--border-red);
  box-shadow: 0 2px 20px rgba(229, 0, 43, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  transform: skewX(-6deg);
  box-shadow: var(--glow-red);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.logo-dot {
  color: var(--red);
}
.logo:hover .logo-text {
  color: var(--red);
}

#nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list {
  display: flex;
  align-items: center;
}

.nav-link {
  display: block;
  padding: 8px 13px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--white-3);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-red);
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.menu-toggle:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
}

.hero-section {
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    160deg,
    #1a0005 0%,
    #0d0003 60%,
    transparent 100%
  );
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 28%;
  width: 4px;
  height: 100%;
  background: var(--red);
  opacity: 0.4;
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero-ticker {
  position: relative;
  z-index: 5;
  margin-top: 0;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-title-line--red {
  color: var(--red);
  display: block;
}

.hero-title-line--outline {
  display: block;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
  color: transparent;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--white-3);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
}

.hero-stat {
  flex: 1;
  padding: 16px 0;
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin-right: 24px;
}
.hero-stat:last-child {
  margin-right: 0;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-4);
  margin-top: 3px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--glow-red), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 40px;
  height: 100%;
  background: rgba(229, 0, 43, 0.04);
  transform: skewX(-8deg);
}

.hc-rank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hc-rank {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: var(--red);
  line-height: 1;
}

.hc-logo img {
  max-height: 36px;
  max-width: 110px;
  object-fit: contain;
}

.hc-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.hc-bonus-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-4);
  margin-bottom: 5px;
}

.hc-bonus-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 3px;
}

.hc-bonus-extra {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}

.hc-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.stars {
  display: flex;
  gap: 2px;
}
.stars i {
  color: var(--gold);
  font-size: 0.82rem;
}
.hc-rating-val {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
.hc-rating-cnt {
  font-size: 0.76rem;
  color: var(--white-4);
}

.hc-btn {
  width: 100%;
  justify-content: center;
}
.hc-note {
  font-size: 0.68rem;
  color: var(--white-4);
  text-align: center;
  margin-top: 8px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--white-4);
  animation: bounce-y 2s ease-in-out infinite;
}

@keyframes bounce-y {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-header--center {
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-header--center .section-eyebrow::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--white-3);
  line-height: 1.7;
  max-width: 580px;
}
.section-header--center .section-subtitle {
  margin: 0 auto;
}

.top-kazina-section {
  background: var(--bg-2);
}

.operator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.operator-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-red);
  box-shadow: var(--glow-red);
}

.operator-card--gold {
  border-left: 4px solid var(--gold);
}
.operator-card--silver {
  border-left: 4px solid var(--red);
}
.operator-card--bronze {
  border-left: 4px solid var(--white-4);
}

.op-rank-badge {
  position: absolute;
  top: 18px;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 4px 12px 4px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.operator-card--gold .op-rank-badge {
  background: var(--gold);
  color: #000;
}
.operator-card--silver .op-rank-badge {
  background: var(--red);
  color: #fff;
  box-shadow: var(--glow-red);
}
.operator-card--bronze .op-rank-badge {
  background: var(--bg-3);
  color: var(--white-3);
  border: 1px solid var(--border);
}

.op-card-inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 28px;
  padding: 28px 28px 26px 52px;
  align-items: start;
}

.op-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
  background: #ffffff;
}

.op-logo {
  max-height: 50px;
  max-width: 130px;
  object-fit: contain;
}

.op-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}

.op-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.rating-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.rating-count {
  font-size: 0.76rem;
  color: var(--white-4);
}

.op-bonus-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  margin-bottom: 16px;
}

.op-bonus-strip i {
  color: var(--red);
}
.op-bonus-strip span {
  font-size: 0.95rem;
  color: var(--white-2);
}
.op-bonus-strip strong {
  color: var(--white);
}

.op-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 5px 18px;
  margin-bottom: 14px;
}

.op-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--white-3);
}
.op-detail i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}
.op-detail a {
  color: var(--white-3);
  transition: color var(--transition);
}
.op-detail a:hover {
  color: var(--red);
}

.op-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.op-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: var(--white-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white-3);
}

.op-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 180px;
}

.op-btn {
  white-space: nowrap;
}
.op-cta-note {
  font-size: 0.68rem;
  color: var(--white-4);
  text-align: right;
}

.operators-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--white-4);
  margin-top: 14px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
}

.o-nama-section {
  background: var(--bg);
}

.o-nama-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  margin-bottom: clamp(44px, 6vw, 60px);
  align-items: start;
}

.o-nama-text p {
  font-size: 1rem;
  color: var(--white-3);
  margin-bottom: 16px;
  line-height: 1.75;
}
.o-nama-text strong {
  color: var(--white);
}

.point-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.point-item:last-child {
  border-bottom: none;
}

.point-icon {
  width: 42px;
  height: 42px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--red);
  flex-shrink: 0;
}

.point-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}
.point-content p {
  font-size: 0.88rem;
  color: var(--white-3);
}

.stat-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--red);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover {
  border-bottom-color: var(--red-lt);
  box-shadow: var(--glow-red);
  transform: translateY(-3px);
}

.stat-card-icon {
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 10px;
}
.stat-card-value {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-4);
}

.servisi-section {
  background: var(--bg-2);
}

.servisi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.servis-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.servis-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent var(--bg-2) transparent transparent;
  transition: border-color var(--transition);
}

.servis-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 4px 24px rgba(229, 0, 43, 0.12);
  transform: translateY(-3px);
}

.servis-card:hover::before {
  border-right-color: var(--bg);
}

.servis-icon {
  width: 48px;
  height: 48px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 18px;
  transition: all var(--transition);
}
.servis-card:hover .servis-icon {
  background: var(--red);
  color: #fff;
  box-shadow: var(--glow-red);
}

.servis-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 10px;
}

.servis-card p {
  font-size: 0.9rem;
  color: var(--white-3);
  line-height: 1.65;
  margin-bottom: 14px;
}

.servis-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
}

.kako-section {
  background: var(--bg);
}

.koraci-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.koraci-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  z-index: 0;
}

.korak-item {
  position: relative;
  z-index: 1;
  padding: 0 14px;
}

.korak-num {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--glow-red);
  transform: skewX(-4deg);
  transition: background var(--transition);
}
.korak-item:hover .korak-num {
  background: var(--red-lt);
}

.korak-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.korak-content p {
  font-size: 0.9rem;
  color: var(--white-3);
  line-height: 1.65;
}

.kontakt-section {
  background: var(--bg-2);
}

.kontakt-wrap {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: clamp(28px, 5vw, 52px);
  align-items: start;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--white-4);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 0, 43, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e5002b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group select option {
  background: var(--bg-2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-4);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.78rem;
  color: var(--white-4);
}
.form-note i {
  color: var(--red);
  margin-right: 4px;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontakt-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-md);
  padding: 18px 18px 18px 20px;
  transition: all var(--transition);
}
.kontakt-info-card:hover {
  border-color: var(--border-red);
  box-shadow: var(--glow-red);
}
.kontakt-info-card > i {
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 7px;
  display: block;
}

.kontakt-info-card h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--white-4);
  margin-bottom: 3px;
  text-transform: uppercase;
}
.kontakt-info-card p,
.kontakt-info-card a {
  font-size: 0.9rem;
  color: var(--white-3);
  transition: color var(--transition);
}
.kontakt-info-card a:hover {
  color: var(--red);
}

.faq-section {
  background: var(--bg);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--white-2);
  gap: 16px;
  transition: color var(--transition);
  text-transform: uppercase;
}
.faq-question:hover {
  color: var(--red);
}

.faq-icon {
  color: var(--red);
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: transform var(--transition);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-item.active .faq-question {
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--white-3);
  line-height: 1.75;
}
.faq-answer a {
  color: var(--red);
  text-decoration: underline;
}

#footer {
  background: #050505;
  border-top: 1px solid var(--border-red);
}

.footer-top-bar {
  padding: clamp(40px, 6vw, 64px) 0 clamp(32px, 5vw, 48px);
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 0.72rem;
  color: var(--white-4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-18 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #c0000d;
  border: 2px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 32px);
}

.footer-col-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 0.84rem;
  color: var(--white-3);
  line-height: 1.65;
}
.footer-col strong {
  color: var(--white-2);
}
.footer-col a {
  color: var(--white-3);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--red);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  color: var(--white-4);
  transition:
    color var(--transition),
    gap var(--transition);
}
.footer-col li a:hover {
  color: var(--red);
  gap: 10px;
}
.footer-col li a i {
  font-size: 0.55rem;
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(229, 0, 43, 0.03);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.footer-disclaimer,
.footer-disclaimer-en {
  font-size: 0.76rem;
  color: var(--white-4);
  line-height: 1.5;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--white-3);
}

#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red);
  border: none;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--glow-red);
  transform: skewX(-4deg);
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  display: flex;
}
#back-to-top:hover {
  background: var(--red-lt);
  transform: skewX(-4deg) translateY(-3px);
}

@media (max-width: 1024px) {
  .op-card-inner {
    grid-template-columns: 130px 1fr;
    padding-left: 46px;
  }
  .op-cta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    min-width: auto;
  }
  .op-btn {
    width: auto;
  }
  .koraci-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .koraci-grid::before {
    display: none;
  }
  .stat-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .servisi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 62px;
  }

  .menu-toggle {
    display: flex;
  }

  #nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-red);
    flex-direction: column;
    align-items: stretch;
    padding: 16px var(--container-pad) 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    pointer-events: none;
  }
  #nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 12px;
  }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
  }
  .nav-cta {
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-section::before,
  .hero-section::after {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    flex-direction: column;
    gap: 0;
  }
  .hero-stat {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .hero-cta-row {
    flex-direction: column;
  }
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .o-nama-grid {
    grid-template-columns: 1fr;
  }

  .op-card-inner {
    grid-template-columns: 1fr;
    padding: 20px 18px 18px;
    padding-top: 42px;
  }
  .op-logo-wrap {
    justify-content: flex-start;
  }
  .op-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .op-btn {
    width: 100%;
    justify-content: center;
  }
  .op-details-grid {
    grid-template-columns: 1fr;
  }

  .servisi-grid {
    grid-template-columns: 1fr;
  }
  .koraci-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .kontakt-wrap {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .age-gate-btns {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .stat-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
