* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f1513;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #167742;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 5px 20px rgba(0,0,0,.25);
}

.topbar-inner {
  max-width: 1500px;
  min-height: 74px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img {
  width: 150px;
  max-height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  opacity: .96;
}

.nav a:hover {
  opacity: .75;
}

.hot {
  position: absolute;
  top: -16px;
  right: -17px;
  padding: 2px 5px;
  border-radius: 4px;
  background: #ff4343;
  font-size: 8px;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.btn {
  height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.btn-login {
  background: #fff;
  color: #126a3b;
}

.btn-register {
  background: #f4c622;
  color: #151515;
}

.btn-support {
  background: #0b5932;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.hero {
  position: relative;
  width: 100%;
  background: #111;
  min-height: 330px;
  overflow: hidden;
}

.slider {
  width: 100%;
}

.slider img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 62px;
  border: 0;
  transform: translateY(-50%);
  background: rgba(0,0,0,.42);
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.slider-prev {
  left: 18px;
}

.slider-next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.quick-links {
  position: relative;
  z-index: 10;
  max-width: 1250px;
  margin: -28px auto 36px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.quick-card {
  min-height: 95px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 12px;
  background: #19844a;
  border-radius: 6px;
  box-shadow: 0 7px 20px rgba(0,0,0,.25);
}

.quick-card:hover {
  background: #1b9051;
}

.quick-icon {
  grid-row: 1 / span 2;
  font-size: 31px;
}

.quick-card strong {
  font-size: 17px;
}

.quick-card small {
  color: rgba(255,255,255,.72);
}

.content {
  max-width: 1250px;
  margin: auto;
  padding: 20px 20px 70px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-title h2 {
  margin: 0;
  font-size: 23px;
}

.section-title a {
  color: #50c980;
  font-size: 13px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.promo-card {
  overflow: hidden;
  min-height: 180px;
  border-radius: 8px;
  background: #19211e;
}

.promo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform .25s ease;
}

.promo-card:hover img {
  transform: scale(1.025);
}

.footer {
  background: #151b19;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-inner {
  max-width: 1250px;
  margin: auto;
  padding: 45px 20px 30px;
}

.footer-brand img {
  width: 125px;
  object-fit: contain;
}

.footer-links {
  margin: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  color: #d4dbd8;
  font-size: 13px;
}

.footer-text {
  max-width: 950px;
  color: #89938f;
  font-size: 12px;
  line-height: 1.6;
}

.payment {
  margin-top: 28px;
}

.payment img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
}

.footer-badges {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-badges img {
  max-height: 45px;
  max-width: 120px;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #727d78;
  font-size: 12px;
}

.language {
  display: flex;
  align-items: center;
  gap: 7px;
}

.language img {
  width: 22px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(5px);
}

.modal-overlay.show {
  display: grid;
}

.modal {
  position: relative;
  display: none;
  width: min(420px, 100%);
  padding: 28px;
  border-radius: 10px;
  background: #17201d;
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}

.modal.show {
  display: block;
}

.modal h2 {
  margin: 0 0 24px;
}

.modal label {
  display: block;
  margin: 13px 0 6px;
  font-size: 13px;
  color: #aeb8b4;
}

.modal input {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  border: 1px solid #33413c;
  border-radius: 5px;
  outline: none;
  background: #0f1513;
  color: white;
}

.modal input:focus {
  border-color: #2ebf70;
}

.modal-submit {
  width: 100%;
  height: 45px;
  margin-top: 20px;
  border: 0;
  border-radius: 5px;
  background: #1d9b57;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .topbar-inner {
    min-height: 62px;
    padding: 0 12px;
  }

  .brand img {
    width: 110px;
  }

  .btn {
    padding: 0 10px;
    font-size: 11px;
  }

  .btn-support {
    display: none;
  }

  .slider img {
    height: 220px;
  }

  .quick-links {
    margin-top: 0;
    padding-top: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-card {
    min-height: 78px;
    padding: 12px;
    grid-template-columns: 32px 1fr;
  }

  .quick-icon {
    font-size: 24px;
  }

  .quick-card strong {
    font-size: 14px;
  }

  .quick-card small {
    font-size: 10px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
}
/* =========================================================
   HITITBET REFERANS HEADER
   ========================================================= */

.hitit-header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

/* YEŞİL ÜST BAR */

.hitit-mainbar {
  width: 100%;
  height: 73px;
  padding: 0 16px;

  display: flex;
  align-items: center;

  background: #19895f;
}

/* LOGO */

.hitit-brand {
  width: 245px;
  flex: 0 0 245px;

  display: flex;
  align-items: center;
}

.hitit-brand img {
  display: block;
  width: 200px;
  height: 55px;
  object-fit: contain;
  object-position: left center;
}

/* ANA MENÜ */

.hitit-mainnav {
  flex: 1;

  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 19px;

  white-space: nowrap;
}

.hitit-mainnav a {
  position: relative;

  height: 100%;

  display: flex;
  align-items: center;

  color: #fff;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition: opacity .15s ease;
}

.hitit-mainnav a:hover {
  opacity: .78;
}

/* HOT */

.aviator-link {
  padding-right: 12px;
}

.hitit-hot {
  position: absolute;

  right: -3px;
  top: 19px;

  padding: 2px 4px;

  border-radius: 2px;

  background: #ff4050;
  color: #fff;

  font-size: 9px;
  font-weight: 700;

  line-height: 12px;
}

/* SAĞ BUTONLAR */

.hitit-actions {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  gap: 14px;

  margin-left: 20px;
}

.hitit-actions button {
  height: 38px;

  padding: 0 17px;

  border: 0;
  border-radius: 4px;

  color: #fff;

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  white-space: nowrap;
}

.hitit-login {
  background: transparent;
}

.hitit-login:hover {
  background: rgba(255,255,255,.08);
}

.hitit-register {
  background: #ff3945;
}

.hitit-register:hover {
  background: #ef303c;
}

.hitit-support {
  background: #ffad00;
}

.hitit-support:hover {
  background: #eea100;
}

/* =========================================================
   ALT BAR
   ========================================================= */

.hitit-subbar {
  width: 100%;
  height: 42px;

  display: flex;
  align-items: stretch;

  background: #25354c;

  border-top: 1px solid rgba(255,255,255,.03);
}

/* ARAMA */

.hitit-search {
  width: 320px;
  flex: 0 0 320px;

  padding: 0 14px;

  display: flex;
  align-items: center;

  gap: 8px;

  border-right: 1px solid rgba(255,255,255,.04);
}

.hitit-search-icon {
  color: #fff;

  font-size: 24px;
  font-weight: 700;

  transform: rotate(-15deg);
}

.hitit-search input {
  width: 100%;
  height: 100%;

  border: 0;
  outline: 0;

  background: transparent;

  color: #fff;

  font-size: 13px;
  font-weight: 600;
}

.hitit-search input::placeholder {
  color: #fff;
  opacity: 1;
}

/* SPOR ALT MENÜ */

.hitit-sportsnav {
  flex: 1;

  display: flex;
  align-items: stretch;

  gap: 27px;
}

.hitit-sportsnav a {
  position: relative;

  display: flex;
  align-items: center;

  color: #8fa5c2;

  font-size: 12px;
  font-weight: 600;

  text-decoration: none;
}

.hitit-sportsnav a:hover {
  color: #fff;
}

.hitit-sportsnav a.active {
  color: #fff;
}

.hitit-sportsnav a.active::after {
  content: "";

  position: absolute;

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

  height: 4px;

  background: #ffd328;
}

/* DİL + ORAN */

.hitit-options {
  flex: 0 0 auto;

  padding-right: 18px;

  display: flex;
  align-items: center;

  gap: 32px;
}

.hitit-option {
  display: flex;
  align-items: center;

  gap: 12px;
}

.hitit-option > span {
  color: #8ca2be;

  font-size: 12px;
  font-weight: 600;
}

.hitit-option button {
  padding: 0;

  border: 0;

  background: transparent;

  color: #fff;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.hitit-option small {
  margin-left: 3px;

  color: #8fa2ba;

  font-size: 8px;
}

/* =========================================================
   ESKİ HEADER'I ETKİSİZLEŞTİR
   ========================================================= */

.topbar,
.topbar-inner,
.nav,
.header-actions {
  all: unset;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1450px) {

  .hitit-brand {
    width: 205px;
    flex-basis: 205px;
  }

  .hitit-brand img {
    width: 175px;
  }

  .hitit-mainnav {
    gap: 13px;
  }

  .hitit-mainnav a {
    font-size: 12px;
  }

  .hitit-actions {
    gap: 7px;
    margin-left: 10px;
  }

  .hitit-actions button {
    padding: 0 12px;
    font-size: 11px;
  }

  .hitit-search {
    width: 270px;
    flex-basis: 270px;
  }

}

@media (max-width: 1100px) {

  .hitit-mainbar {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding: 8px 12px;
  }

  .hitit-brand {
    width: auto;
    flex: 1;
  }

  .hitit-brand img {
    width: 145px;
  }

  .hitit-mainnav {
    order: 3;

    width: 100%;
    flex: 0 0 100%;

    height: 42px;

    justify-content: flex-start;

    overflow-x: auto;

    gap: 22px;
  }

  .hitit-mainnav a {
    height: 42px;
    font-size: 12px;
  }

  .hitit-hot {
    top: 3px;
  }

  .hitit-actions {
    margin-left: auto;
  }

  .hitit-subbar {
    overflow-x: auto;
  }

  .hitit-search {
    width: 180px;
    flex-basis: 180px;
  }

  .hitit-sportsnav {
    min-width: 510px;
  }

  .hitit-options {
    min-width: 300px;
  }

}

@media (max-width: 650px) {

  .hitit-mainbar {
    padding: 7px 8px;
  }

  .hitit-brand img {
    width: 120px;
  }

  .hitit-actions {
    gap: 4px;
  }

  .hitit-actions button {
    height: 34px;
    padding: 0 8px;
    font-size: 9px;
  }

  .hitit-support {
    display: none;
  }

  .hitit-mainnav {
    gap: 18px;
  }

  .hitit-subbar {
    height: 40px;
  }

  .hitit-search {
    width: 135px;
    flex-basis: 135px;
  }

}


/* =========================================================
   HITITBET 4'LU KATEGORI ALANI
   ========================================================= */

.quick-showcase {
  width: 100%;
  min-height: 325px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;

  gap: 0;

  margin: 0;
  padding: 36px 7% 42px;

  background: #1b2636;
}

.showcase-item {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  text-decoration: none !important;

  color: #fff !important;

  padding: 10px 28px;

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

.showcase-item:hover {
  transform: translateY(-3px);
  opacity: .92;
}

.showcase-icon {
  width: 74px;
  height: 74px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;

  color: #21c997;

  font-size: 46px;
  line-height: 1;
}

/* futbol */
.icon-football {
  font-size: 48px;
}

/* canlı bahis */
.icon-live {
  width: 54px;
  height: 38px;

  margin-top: 17px;
  margin-bottom: 33px;

  border-radius: 8px;

  background: #20c796;
  color: #173343;

  font-size: 22px;
}

/* slot */
.icon-slot {
  font-size: 50px;

  filter: hue-rotate(85deg) saturate(1.8);
}

/* casino */
.icon-casino {
  font-size: 48px;

  transform: rotate(-10deg);
}

.showcase-item h3 {
  margin: 0 0 20px;

  color: #fff;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.showcase-item p {
  max-width: 330px;

  margin: 0;

  color: #c6d3e4;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

/* eski kutu stilini etkisizleştir */
.quick-links,
.quick-card,
.quick-icon {
  all: unset;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .quick-showcase {
    grid-template-columns: repeat(2, 1fr);

    min-height: auto;

    padding: 35px 5%;
  }

  .showcase-item {
    min-height: 210px;
  }
}

/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 600px) {

  .quick-showcase {
    grid-template-columns: 1fr;

    padding: 25px 15px;
  }

  .showcase-item {
    min-height: 190px;

    padding: 20px 10px;

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

  .showcase-item:last-child {
    border-bottom: 0;
  }

  .showcase-item h3 {
    margin-bottom: 12px;
  }
}
