@font-face {
  font-family: 'Opet Tr Regular';
  font-style: normal;
  font-weight: 700;
  src: local('Opet Tr Regular'), url('OpetTRA.woff2') format('woff2');
}

:root {
  --accent: #0091D9;
}

* {
  box-sizing: border-box
}

* {
  box-sizing: border-box;
  /* Padding ve border'Ä± geniÅŸliÄŸe dahil eder */
  margin: 0;
  /* VarsayÄ±lan tarayÄ±cÄ± boÅŸluklarÄ±nÄ± sÄ±fÄ±rlar */
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* overflow-y: hidden; */

  /* Sadece yataydaki gereksiz scroll'u gizler */
}

body {
  margin: 0;
  font-family: 'Opet Tr Regular', 'Montserrat', 'Segoe UI', Tahoma, Arial, Helvetica, sans-serif;
  line-height: 1.4;
  color: #1f2a38;
  background: url('../bg.png') no-repeat center top;
  background-size: cover;
  padding: 0;
  overflow-x: hidden;
  /* Yatay scroll barÄ± zorla kapatÄ±r */
  width: 100%;
  /* background: #f6f7f9; */
  /* background: linear-gradient(180deg, #b9e1ff 0%, #eaf3fb 100%), url('/img/bg.png'); */
  /* background: rgb(105,185,226); */
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  /* background-color: #f8b43a; */
  background-color: linear-gradient(180deg, #cbe4f9 0%, #e6eef5 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.10) 60%, rgba(0, 0, 0, 0.15) 100%); */
  z-index: 0;
  pointer-events: none;
}

.bg-img {
  position: absolute;
  top: 50%;
  left: 4vw;
  transform: translateY(-50%);
  width: clamp(720px, 44vw, 1280px);
  height: 90%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
  margin: 0;
}

.container {
  /* margin-left: auto; */
  margin-left: 48vw !important;
  /* Form sola yaklaÅŸÄ±r */

  /* width: min(560px, 100%); */
  width: min(700px, 100%);

  padding: clamp(16px, 2vw, 28px);
  display: flex;
  align-items: center;
  z-index: 1;
}

.card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  padding: 28px;
}

.title {
  font-weight: 700;
  font-size: clamp(20px, 3.2vw, 28px);
  letter-spacing: 0.2px;
  margin: 0 0 10px 0;
  color: #0d1520;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
}

.subtitle {
  margin: 6px 0 18px;
  color: #5b6675;
  font-size: clamp(13px, 1.8vw, 14px)
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

label {
  font-size: 12px;
  font-weight: 600;
  color: #405064;
  letter-spacing: .2px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e3e6ea;
  border-radius: 12px;
  outline: none;
  background: #fff;
  font: 600 14px 'Montserrat', sans-serif;
  color: #1f2a38;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 145, 217, .12);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 8L13 1' stroke='%236b7686' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}
.field input:disabled,
.field select:disabled,
.field textarea:disabled {
    background: #e9ecef;          /* aÃ§Ä±k gri */
    color: #6d6d6d;               /* yazÄ± rengi */
    border-color: #d1d1d1;        /* kenar rengi */
    cursor: not-allowed;          /* fare imleci */
    opacity: 1;                   /* safari/chrome default grileÅŸtirmeyi kapatÄ±r */
}

.col-span-2 {
  grid-column: 1 / -1
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #445469
}

.check input {
  margin-top: 3px
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  letter-spacing: .2px;
  transition: transform .06s ease, filter .2s ease;
}

.btn:hover {
  filter: brightness(1.05)
}

.btn:active {
  transform: translateY(1px)
}

.muted {
  font-size: 12px;
  color: #6b7686
}

.steps {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgb(0, 145, 217);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: rgb(0, 145, 217);
  opacity: 0.3;
  transition: 0.25s ease;
}

.step.active {
  background-color: rgb(0, 145, 217);
  color: white;
  opacity: 1;
}

.step.completed {
  background-color: #129c4a;
  border-color: #129c4a;
  color: white;
  opacity: 1;
}


@media (max-width:900px) {
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 12px;
  }

  .bg-img {
    position: static;
    order: -1;
    transform: none;
    width: min(92vw, 720px);
    height: auto;
    display: block;
    margin: 12px auto 6px;
    object-fit: contain;
    z-index: 0;
  }

  .container {
    /* margin-left: 0; */
    margin-left: auto !important;

    width: 100%;
    max-width: 600px;
  }

  form {
    grid-template-columns: 1fr;
  }
}

/* KoÅŸullar linki */
.terms-link {
  text-decoration: underline;
  cursor: pointer;
  color: #0059ff;
  font-weight: 100;
}

.terms-link:hover {
  color: #003bb8;
}

/* Modal genel */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Modal kutusu */
.modal-content {
  background: white;
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  padding: 20px 25px;
  position: relative;
  animation: modalFadeIn 0.25s ease-out;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

/* BaÅŸlÄ±k */
.modal-content h2 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}

#termsModal .modal-content,
#termsModal .modal-content * {
  font-family: 'Montserrat', sans-serif !important;
}

/* Modal baÅŸlÄ±ÄŸÄ± altÄ±na Ã§izgi */
#termsModal .modal-content h2 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 15px;
}


/* Ä°Ã§erik scrollable */
.modal-body {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 5px;
}

/* Kapat x */
.modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #777;
}

.modal-close:hover {
  color: black;
}

/* Kapat butonu */
.modal-button {
  margin-top: 15px;
  width: 100%;
  background: #0059ff;
  padding: 10px;
  border-radius: 8px;
  color: white;
  font-weight: 300;
  border: none;
  cursor: pointer;
}

.modal-button:hover {
  background: #0041c3;
}

/* Animasyon */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* MENU */
/* === DESKTOP MENU FIX â€” TAÅMAYI %100 KESER === */
@media (min-width: 901px) {
  .menu {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: auto !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: auto !important;
  }
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* MENÃœ SOLDA */
  gap: 16px;
  padding: 14px 18px;
  background: transparent;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  background: transparent;
}

.menu li {
  display: inline-block;
}

.menu a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.4px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}

.menu a:hover {
  color: var(--white);
  /* Opet mavisi */
}

/* Hamburger: default'ta gizli (desktop) */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #0d1520;
  display: block;
  border-radius: 2px;
}

@media (max-width: 900px) {

  .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hamburger {
    display: inline-flex;
    margin-left: auto;
  }

  .menu {
    display: none;
    position: absolute;
    top: 64px;
    right: 18px;
    left: auto;
    width: min(260px, 80vw);

    /* ARKA PLAN: Opet tarzÄ± koyu mavi panel + gÃ¶lge */
    background: var(--accent);
    /* saÄŸlam, opak sayÄ±lÄ±r */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.40);
    border-radius: 14px;
    padding: 12px 0;
    text-align: right;
    z-index: 9999;
  }

  .menu.is-open {
    display: block;
  }

  .menu li {
    display: block;
    margin: 10px 0;
  }

  .menu a {
    display: block;
    padding: 10px 14px;
  }
}

/* Kazananlar Modal Stilleri */
.winners-modal-content {
  max-width: 95vw;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.winners-modal-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #1f2a38;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.winners-modal-body {
  max-height: calc(90vh - 150px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prize-category-modal {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e3e6ea;
}

.category-title-modal {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.winners-table-modal {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.winners-table-modal table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(11px, 1.3vw, 14px);
}

.winners-table-modal thead {
  background: var(--accent);
  color: #fff;
}

.winners-table-modal th {
  padding: 10px 8px;
  /*text-align: left;*/
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.winners-table-modal th:first-child {
  width: 60px;
  text-align: center;
}

.winners-table-modal tbody tr {
  border-bottom: 1px solid #e3e6ea;
  transition: background-color 0.2s ease;
}

.winners-table-modal tbody tr:hover {
  background-color: #fff;
}

.winners-table-modal tbody tr:last-child {
  border-bottom: none;
}

.winners-table-modal td {
  padding: 10px 8px;
  color: #1f2a38;
  font-weight: 500;
}

.winners-table-modal td:first-child {
  text-align: center;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 900px) {
  .winners-modal-content {
    max-width: 98vw;
    padding: 16px;
  }
  
  .winners-modal-body {
    max-height: calc(90vh - 120px);
  }
  
  .prize-category-modal {
    padding: 12px;
  }
  
  .winners-table-modal table {
    font-size: 10px;
  }
  
  .winners-table-modal th,
  .winners-table-modal td {
    padding: 6px 4px;
    font-size: 9px;
  }
  
  .category-title-modal {
    font-size: 12px;
  }
}

/* Kazananlar Tam Ekran Listesi */
.winners-container {
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  background: linear-gradient(180deg, #cbe4f9 0%, #e6eef5 100%);
}

.winners-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
}

.winners-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: #1f2a38;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.winners-list-full {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.prize-category {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.winners-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.winners-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(12px, 1.5vw, 16px);
}

.winners-table thead {
  background: var(--accent);
  color: #fff;
}

.winners-table th {
  padding: 14px 12px;
  /*text-align: left;*/
  font-weight: 700;
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.winners-table th:first-child {
  width: 80px;
  text-align: center;
}

.winners-table tbody tr {
  border-bottom: 1px solid #e3e6ea;
  transition: background-color 0.2s ease;
}

.winners-table tbody tr:hover {
  background-color: #f8f9fa;
}

.winners-table tbody tr:last-child {
  border-bottom: none;
}

.winners-table td {
  padding: 12px;
  color: #1f2a38;
  font-weight: 500;
}

.winners-table td:first-child {
  text-align: center;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 900px) {
  .winners-container {
    padding: 12px;
  }
  
  .prize-category {
    padding: 16px;
  }
  
  .winners-table {
    font-size: 12px;
  }
  
  .winners-table th,
  .winners-table td {
    padding: 8px 6px;
    font-size: 11px;
  }
  
  .category-title {
    font-size: 14px;
  }
}


/* Sahte reCAPTCHA Stilleri */
.fake-rc-anchor {
  width: 304px;
  height: 78px;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  background-color: #f9f9f9;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  position: relative;
  font-family: Roboto, helvetica, arial, sans-serif;
  font-size: 14px;
}

.fake-rc-anchor-content {
  display: flex;
  align-items: center;
  padding: 10px;
  height: 52px;
}

.fake-rc-inline-block {
  display: inline-block;
  vertical-align: middle;
}

.fake-rc-anchor-center-container {
  display: flex;
  align-items: center;
}

.fake-rc-anchor-checkbox-holder {
  margin-right: 12px;
}

.fake-recaptcha-checkbox {
  width: 28px;
  height: 28px;
  display: block;
  position: relative;
  cursor: pointer;
}

.fake-recaptcha-checkbox-border {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.fake-recaptcha-checkbox:hover .fake-recaptcha-checkbox-border {
  border-color: #4d90fe;
}

.fake-recaptcha-checkbox-spinner {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fake-recaptcha-checkbox-spinner-overlay {
  width: 20px;
  height: 20px;
  border: 3px solid #4d90fe;
  border-top-color: transparent;
  border-radius: 50%;
  animation: fake-spinner-rotate 1s linear infinite;
}

@keyframes fake-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fake-recaptcha-checkbox-checkmark {
  width: 28px;
  height: 28px;
  background-color: #1c8e3c;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fake-recaptcha-checkbox-checkmark::after {
  content: '';
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  margin-bottom: 3px;
}

.fake-rc-anchor-checkbox-label {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  cursor: pointer;
  user-select: none;
}

.fake-rc-anchor-normal-footer {
  height: 26px;
  border-top: 1px solid #d3d3d3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background-color: #f9f9f9;
}

.fake-rc-anchor-logo-portrait {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fake-rc-anchor-logo-img-portrait {
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2IDJDOC4yNjggMiAyIDguMjY4IDIgMTZDMiAyMy43MzIgOC4yNjggMzAgMTYgMzBDMjMuNzMyIDMwIDMwIDIzLjczMiAzMCAxNkMzMCA4LjI2OCAyMy43MzIgMiAxNiAyWiIgZmlsbD0iIzQyODVGNCIvPgo8cGF0aCBkPSJNMTYgNkMxMC40NzcgNiA2IDEwLjQ3NyA2IDE2QzYgMjEuNTIzIDEwLjQ3NyAyNiAxNiAyNkMyMS41MjMgMjYgMjYgMjEuNTIzIDI2IDE2QzI2IDEwLjQ3NyAyMS41MjMgNiAxNiA2WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTE2IDEwQzEyLjY4NiAxMCAxMCAxMi42ODYgMTAgMTZDMTAgMTkuMzE0IDEyLjY4NiAyMiAxNiAyMkMxOS4zMTQgMjIgMjIgMTkuMzE0IDIyIDE2QzIyIDEyLjY4NiAxOS4zMTQgMTAgMTYgMTBaIiBmaWxsPSIjNDI4NUY0Ii8+Cjwvc3ZnPgo=');
  background-size: contain;
  background-repeat: no-repeat;
}

.fake-rc-anchor-logo-text {
  color: #555;
  font-size: 10px;
  font-weight: 400;
}

.fake-rc-anchor-pt {
  font-size: 8px;
  color: #555;
}

.fake-rc-anchor-pt a {
  color: #555;
  text-decoration: none;
}

.fake-rc-anchor-pt a:hover {
  text-decoration: underline;
}
