@import url("https://fonts.googleapis.com/css?family=Varela+Round");
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600);

html,
body {
  margin: 0;
  min-height: 100vh;
  height: auto;
  overflow-x: hidden;
  font-family: 'Varela Round', sans-serif;
  background: linear-gradient(to bottom, #001f4f, #003b73);
  background-size: 300% 300%;
  animation: gradient 900s ease infinite;
}

/* SAYFA ORTASINDA ARKA PLAN YAZISI */
body::before {
  content: "turkiyeresellers";
  position: fixed;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scaleX(1.12);

  width: 130%;
  padding: 0 20px;
  box-sizing: border-box;

  font-size: clamp(42px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: 10px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;

  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);

  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.025) 0%,
    rgba(255, 255, 255, 0.05) 38%,
    rgba(26, 188, 156, 0.45) 47%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(52, 152, 219, 0.45) 53%,
    rgba(255, 255, 255, 0.05) 62%,
    rgba(255, 255, 255, 0.025) 100%
  );

  background-size: 320% 100%;
  background-position: -200% 0;

  -webkit-background-clip: text;
  background-clip: text;

  opacity: 0.42;
  z-index: 0;

  pointer-events: none;
  user-select: none;

  text-shadow:
    0 0 12px rgba(26, 188, 156, 0.12),
    0 0 28px rgba(52, 152, 219, 0.10);

  animation: brandTextLine 12s linear infinite;
}

/* HAFİF NEON ARKA PLAN */
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 35%, rgba(26, 188, 156, 0.10), transparent 30%),
    radial-gradient(circle at 80% 55%, rgba(52, 152, 219, 0.10), transparent 32%),
    radial-gradient(circle at 50% 85%, rgba(155, 89, 182, 0.06), transparent 35%);
  animation: softGlowMove 28s ease-in-out infinite alternate;
  z-index: -3;
  pointer-events: none;
}

/* HAFİF GRID */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  z-index: -2;
  pointer-events: none;
}

/* KAYAN IŞIK */
html::after {
  content: "";
  position: fixed;
  top: -25%;
  left: -55%;
  width: 36%;
  height: 150%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.035),
    rgba(26, 188, 156, 0.035),
    transparent
  );
  transform: rotate(18deg);
  animation: bgShine 18s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

/* NOISE */
.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 5px 5px;
}

/* KAYAN YILDIZLAR */
.shooting-stars {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shooting-stars span {
  position: absolute;
  top: var(--top);
  left: -220px;
  width: var(--size);
  height: 1.5px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    rgba(26, 188, 156, 0.45),
    transparent
  );

  opacity: 0;
  transform: rotate(-18deg);
  animation: shootingStarMove var(--speed) linear infinite;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

.shooting-stars span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.75),
    0 0 14px rgba(26, 188, 156, 0.45);
}

/* İÇERİKLER HER ZAMAN YAZININ ÜSTÜNDE KALSIN */
.accordion,
.snip1404,
.card,
.row,
.content,
.container,
.form-group,
.form-control,
label,
input,
select,
textarea,
button {
  position: relative;
  z-index: 5;
}

/* FORM ALANLARI YAZIYI EZER, ÜSTÜNE BİNMEZ */
.card,
.well,
.panel,
.row.justify-content-center > div,
.accordion-item,
.snip1404 .plan {
  position: relative;
  z-index: 6;
}

/* BEYAZ FORM ALANI VARSA ARKADAKİ YAZI GÖRÜNMESİN */
.card,
.well,
.panel {
  background-color: rgba(248, 250, 252, 0.96);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ACCORDION */
.accordion {
  max-width: 100%;
  margin: 50px auto;
  padding: 0 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.accordion h1 {
  font-size: 32px;
  text-align: center;
  color: #ecf0f1;
}

.accordion-item {
  margin-top: 16px;
  border: 1px solid rgba(127, 140, 141, 0.7);
  border-radius: 8px;
  background: rgba(52, 73, 94, 0.94);
  box-shadow: rgba(0, 0, 0, 0.28) 0px 1px 8px 0px;
}

.accordion-item .accordion-item-title {
  padding: 14px 20px;
  font-size: 15px;
  cursor: pointer;
  justify-content: space-between;
  flex-direction: row-reverse;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  align-items: center;
  color: #ecf0f1;
}

.accordion-item .accordion-item-desc {
  display: none;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: #bdc3c7;
  border-top: 1px dashed #7f8c8d;
  padding: 10px 20px 20px;
  box-sizing: border-box;
}

.accordion-item input[type="checkbox"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}

.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
  display: block;
}

.accordion-item input[type="checkbox"]:checked ~ .accordion-item-title .icon:after {
  content: "-";
  font-size: 20px;
  color: #ecf0f1;
}

.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
  content: "+";
  font-size: 20px;
  color: #ecf0f1;
}

/* PRICING / PLAN CARDS */
.snip1404 {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #fff;
  text-align: left;
  font-size: 16px;
  width: 100%;
  max-width: 1000px;
  margin: 50px 10px;
}

.snip1404 .plan {
  margin: 0;
  width: 25%;
  position: relative;
  float: left;
  overflow: hidden;
  border: 3px solid rgba(127, 140, 141, 0.85);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
  background-color: rgba(44, 62, 80, 0.96);
}

.snip1404 .plan:hover i,
.snip1404 .plan.hover i {
  transform: scale(1.12);
}

.snip1404 .plan:first-of-type {
  border-radius: 8px 0 0 8px;
}

.snip1404 .plan:last-of-type {
  border-radius: 0 8px 8px 0;
}

.snip1404 * {
  box-sizing: border-box;
  transition: all 0.22s ease-out;
}

.snip1404 header {
  background-color: rgba(52, 73, 94, 0.96);
  color: #ecf0f1;
}

.snip1404 .plan-title {
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  margin: 0;
  padding: 20px 20px 0;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.snip1404 .plan-cost {
  padding: 40px 20px 10px;
  text-align: right;
}

.snip1404 .plan-price {
  font-weight: 600;
  font-size: 3em;
}

.snip1404 .plan-type {
  opacity: 0.8;
  font-size: 0.7em;
  text-transform: uppercase;
}

.snip1404 .plan-features {
  padding: 0 0 20px;
  margin: 0;
  list-style: outside none none;
}

.snip1404 .plan-features li {
  padding: 8px 5%;
}

.snip1404 .plan-features i {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.snip1404 .plan-select {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  text-align: center;
}

.snip1404 .plan-select a {
  background-color: #16a085;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 0.75em;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-block;
}

.snip1404 .plan-select a:hover {
  background-color: #1abc9c;
}

.snip1404 .featured {
  margin-top: -10px;
  border-color: #7f8c8d;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  z-index: 7;
  border-radius: 8px;
}

.snip1404 .featured .plan-select {
  padding: 30px 20px;
}

/* CARD / FORM */
.card-body {
  padding: 2.5rem;
}

.card-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #222;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-check-label {
  font-weight: normal;
  color: #222;
}

.btn-primary {
  background-color: #16a085;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #1abc9c;
}

.forgot-password {
  color: #16a085;
}

.forgot-password:hover {
  color: #1abc9c;
}

.alert {
  border-radius: 15px;
}

.shadow-lg {
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.22);
}

.rounded-lg {
  border-radius: 1.25rem;
}

.row.justify-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* ESKİ YILDIZ SİSTEMİ */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.9;
  }
}

/* SOSYAL MEDYA İKONLARI */
.social-icons-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.social-icon {
  position: absolute;
  width: 26px;
  height: 26px;
  opacity: 0.35;
  animation: floatIcons linear infinite;
}

.content {
  min-height: 200vh;
  padding: 20px;
  color: white;
  font-size: 24px;
}

/* ANİMASYONLAR */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes softGlowMove {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(1%, 1%, 0) scale(1.04);
  }
}

@keyframes bgShine {
  0% {
    left: -55%;
    opacity: 0;
  }

  25% {
    opacity: 0.7;
  }

  60% {
    opacity: 0.4;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes brandTextLine {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes shootingStarMove {
  0% {
    transform: translateX(0) translateY(0) rotate(-18deg);
    opacity: 0;
  }

  10% {
    opacity: 0.75;
  }

  65% {
    opacity: 0.55;
  }

  100% {
    transform: translateX(135vw) translateY(38vh) rotate(-18deg);
    opacity: 0;
  }
}

@keyframes floatIcons {
  from {
    transform: translateY(-100vh);
  }

  to {
    transform: translateY(100vh);
  }
}

/* MOBİL UYUMLULUK */
@media screen and (max-width: 767px) {
  .accordion {
    padding: 0 16px;
  }

  .accordion h1 {
    font-size: 22px;
  }

  body::before {
    font-size: clamp(32px, 12vw, 54px);
    letter-spacing: 4px;
    transform: translate(-50%, -50%) scaleX(1.05);
    white-space: normal;
    line-height: 1.1;
    width: 115%;
    opacity: 0.28;
    animation-duration: 16s;
  }

  .snip1404 .plan {
    width: 50%;
  }

  .snip1404 .plan-title,
  .snip1404 .plan-select a {
    transform: translateY(0);
  }

  .snip1404 .plan-select,
  .snip1404 .featured .plan-select {
    padding: 20px;
  }

  .snip1404 .featured {
    margin-top: 0;
  }

  html::before {
    background-size: 38px 38px;
    opacity: 0.45;
  }

  html::after {
    display: none;
  }

  .shooting-stars span:nth-child(n+6) {
    display: none;
  }
}

@media only screen and (max-width: 440px) {
  .snip1404 .plan {
    width: 100%;
  }

  body::before {
    font-size: 34px;
    letter-spacing: 2px;
    padding: 0 10px;
    transform: translate(-50%, -50%) scaleX(1.02);
    width: 115%;
    opacity: 0.22;
  }

  .card-body {
    padding: 1.5rem;
  }

  .social-icon {
    width: 22px;
    height: 22px;
  }
}