  /* Reset */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  body, html {
    margin: 0; 
    font-family: 'Inter', sans-serif, Arial, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

  }
  a {
    text-decoration: none;
    color: inherit;
  }
  img {
    max-width: 100%;
    display: block;
  }
  button {
    cursor: pointer;
    border: none;
    font-family: inherit;
  }
  
  
  
  
  
  
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* HEADER */
  header {
    background: #fff;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
  }
  .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .logo {
    font-weight: 900;
    font-size: 1.75rem;
    color: #4f46e5;
    letter-spacing: 2px;
    user-select: none;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
  }
  nav ul li a {
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  nav ul li a:hover, nav ul li a:focus {
    background-color: #4338ca;
    color: white;
  }
  /* Hamburger Menu (mobile) */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  .hamburger span {
    width: 26px;
    height: 3px;
    background: #4f46e5;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  @media (max-width: 768px) {
    nav ul {
      position: fixed;
      top: 70px;
      right: 0;
      background: white;
      height: calc(100vh - 70px);
      width: 220px;
      flex-direction: column;
      gap: 0;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      box-shadow: -3px 0 8px rgba(0,0,0,0.1);
      padding-top: 20px;
      z-index: 1000;
    }
    nav ul.active {
      transform: translateX(0);
    }
    nav ul li a {
      display: block;
      padding: 14px 24px;
      border-radius: 0;
      border-bottom: 1px solid #e0e7ff;
    }
    .hamburger {
      display: flex;
    }
  }

  /* HERO */


/* Hero alanı */
.hero {
  background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%);
  color: white;
  padding: 100px 20px 140px;
  text-align: center;
  clip-path: ellipse(150% 100% at 50% 0%);
  position: relative !important;
  min-height: 600px;
  overflow: hidden !important; /* EKRAN DIŞINA TAŞMAYI ENGELLER */
  padding-bottom: 100px;
}


@media (max-width: 1024px) {
  .hero {
    clip-path: ellipse(130% 100% at 50% 0%);
    padding: 80px 20px 120px;
  }
}

@media (max-width: 768px) {
  .hero {
    clip-path: ellipse(120% 100% at 50% 0%);
    padding: 70px 15px 100px;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    clip-path: ellipse(120% 100% at 50% 0%);
    padding: 80px 10px 100px;
  }
}

@media (max-width: 480px) {
  .hero {
    clip-path: none;
    padding: 60px 10px 80px;
  }
}



/* Diğer büyük gap içeren gridlerde de gap küçültmek faydalı olabilir */

  .hero h1 {
    font-size: 3.8rem;
    max-width: 900px;
    margin: 0 auto 16px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.2px;
  }
  .hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 500;
    opacity: 0.9;
  }
  .hero_buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn_primary {
    background-color: white;
    color: #4338ca;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 44px;
    border-radius: 40px;
    box-shadow: 0 6px 20px rgb(67 56 202 / 0.35);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .btn_primary:hover, .btn_primary:focus {
    background-color: #4338ca;
    color: white;
  }
  .btn_secondary {
    background: transparent;
    border: 2.5px solid white;
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 44px;
    border-radius: 40px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .btn_secondary:hover, .btn_secondary:focus {
    background-color: white;
    color: #4338ca;
  }
  /* Hero overlay shapes */
  .hero_shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
    pointer-events: none;
  }
  .hero_shape1 {
    width: 240px;
    height: 240px;
    background: #8b5cf6;
    top: 40px;
    left: -80px;
  }
  .hero_shape2 {
    width: 360px;
    height: 360px;
    background: #a78bfa;
    bottom: -120px;
    right: -140px;
  }

  /* FEATURES */
  .features_section {
    max-width: 1100px;
    margin: 40px auto 100px; /* margin-top düzeltilmiş */
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
  }
  .feature_card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 20px 40px rgb(79 70 229 / 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .feature_card:hover,
  .feature_card:focus {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(67 56 202 / 0.2);
  }
  .feature_icon {
    font-size: 3.8rem;
    color: #4338ca;
    margin-bottom: 24px;
    filter: drop-shadow(0 2px 3px rgba(67, 56, 202, 0.4));
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .feature_title {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #1e293b;
  }
  .feature_desc {
    font-weight: 500;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
    max-width: 280px;
  }

  /* LIVE STREAMERS PREVIEW */
  .streamers_section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
  }
  .streamers_section h2 {
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1e293b;
  }
  .streamers_filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
  .filter_btn {
    padding: 10px 26px;
    border-radius: 24px;
    border: 2.5px solid #4338ca;
    background: white;
    color: #4338ca;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .filter_btn.active,
  .filter_btn:hover {
    background: #4338ca;
    color: white;
  }
  .streamers_list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 28px;
  }
  .streamer_card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.06);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .streamer_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgb(0 0 0 / 0.1);
  }
  .streamer_thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
  .streamer_info {
    padding: 16px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .streamer_name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 8px;
  }
  .streamer_desc {
    font-size: 0.95rem;
    color: #475569;
    flex-grow: 1;
    margin-bottom: 12px;
  }
  .streamer_stats {
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .streamer_stats span {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .icon_eye {
    font-size: 1rem;
  }
  .icon_clock {
    font-size: 1rem;
  }

  /* TESTIMONIALS */
  .testimonials_section {
    background: #4338ca;
    color: white;
    padding: 60px 20px 100px;
  }
  .testimonials_section h2 {
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 48px;
  }
  .testimonial_cards {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
  }
  .testimonial_cards::-webkit-scrollbar {
    height: 8px;
  }
  .testimonial_cards::-webkit-scrollbar-thumb {
    background: #a78bfa;
    border-radius: 4px;
  }
  .testimonial_card {
    flex: 0 0 320px;
    background: #5c6ac4;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    user-select: none;
  }
  .testimonial_text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .testimonial_author {
    font-weight: 700;
    font-size: 1rem;
    text-align: right;
  }

  /* BLOG PREVIEW */
  .blog_section {
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 20px;
  }
  .blog_section h2 {
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
  }
  .blog_list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 40px;
  }
  .blog_card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .blog_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgb(0 0 0 / 0.15);
  }
  .blog_img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .blog_content {
    padding: 18px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .blog_title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1e293b;
  }
  .blog_excerpt {
    font-size: 0.95rem;
    color: #475569;
    flex-grow: 1;
    margin-bottom: 16px;
  }
  .blog_readmore {
    font-weight: 700;
    color: #4338ca;
    align-self: flex-start;
  }

  /* FOOTER */
  footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 48px 20px;
    font-size: 0.9rem;
  }
  .footer_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 48px;
  }
  .footer_section {
    flex: 1 1 250px;
  }
  .footer_logo {
    font-weight: 900;
    font-size: 1.6rem;
    color: #818cf8;
    margin-bottom: 20px;
    user-select: none;
  }
  .footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer_links li {
    margin-bottom: 12px;
  }
  .footer_links a {
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .footer_links a:hover,
  .footer_links a:focus {
    color: #c7d2fe;
  }
  .footer_socials {
    display: flex;
    gap: 24px;
    margin-top: 12px;
  }
  .footer_socials a {
    font-size: 1.5rem;
    color: #94a3b8;
    transition: color 0.3s ease;
  }
  .footer_socials a:hover,
  .footer_socials a:focus {
    color: #c7d2fe;
  }
  /* ** Abone olma formu flex ile yan yana hizalanacak ** */
  #subscribeForm {
    display: flex;
    flex-wrap: nowrap;
    max-width: 280px;
  }
  .subscribe_input {
    padding: 10px 16px;
    border-radius: 30px 0 0 30px;
    border: none;
    font-size: 1rem;
    flex-grow: 1;
    min-width: 0;
    margin: 0;
  }
  .subscribe_btn {
    padding: 11px 22px;
    border-radius: 0 30px 30px 0;
    background: #4338ca;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    margin: 0;
  }
  .subscribe_btn:hover,
  .subscribe_btn:focus {
    background: #5c6ac4;
  }

  /* Scrollbar for testimonials */
  .testimonial_cards::-webkit-scrollbar {
    height: 8px;
  }
  .testimonial_cards::-webkit-scrollbar-thumb {
    background: #a78bfa;
    border-radius: 4px;
  }

  /* Responsive */
  @media (max-width: 960px) {
    .features_section {
      margin: 20px auto 60px;
    }
    .streamers_filter {
      gap: 12px;
    }
  }
  @media (max-width: 600px) {
    .hero h1 {
      font-size: 2.6rem;
    }
    .hero p {
      font-size: 1.1rem;
    }
    .hero_buttons {
      flex-direction: column;
      gap: 18px;
    }
    .streamers_list {
      grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    }
    .testimonial_cards {
      gap: 16px;
    }
    footer .footer_inner {
      flex-direction: column;
      gap: 36px;
    }

    /* Mobilde abone formu alt alta */
    #subscribeForm {
      flex-direction: column;
      max-width: 100%;
      gap: 12px;
    }
    .subscribe_input,
    .subscribe_btn {
      border-radius: 30px !important;
      width: 100%;
    }
  }

  /* ================= SEZCAM SECTION 1 ================== */

  .sezcamsection1_features_heading {
    display: block;
    margin: 0 auto 48px auto; /* otomatik sağ-sol marjin */
    font-weight: 900;
    font-size: 2.5rem;
    color: #1e293b;
    max-width: max-content;
    text-align: center;
    user-select: none;
  }

  .sezcamsection1_feature_icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: #4338ca;
    filter: drop-shadow(0 2px 3px rgba(67, 56, 202, 0.4));
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .sezcamsection1_feature_card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 20px 40px rgb(79 70 229 / 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sezcamsection1_feature_card:hover,
  .sezcamsection1_feature_card:focus {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(67 56 202 / 0.2);
  }

  .sezcamsection1_feature_title {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #1e293b;
  }

  .sezcamsection1_feature_desc {
    font-weight: 500;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
    max-width: 280px;
  }

  .sezcamsection1_features {
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    text-align: center;
  }
  
  
/*section sez_security_section*/  
.sez_security_section {
  background: #f1f5f9;
  padding: 60px 20px;
}
.sez_security_title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1e293b;
  text-align: center;
  margin-bottom: 48px;
}
.sez_security_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.sez_sec_card {
  background: white;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}
.sez_sec_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}
.sec_icon {
  margin-bottom: 16px;
}
.sez_sec_card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
.sez_sec_card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}


/*section sez_recentpayouts_auto*/

.sez_recentpayouts_auto {
  background: #f1f5f9;
  padding: 60px 20px;
  overflow: hidden;
}
.sez_recentpayouts_title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}
.sez_recentpayouts_subtitle {
  text-align: center;
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 40px;
}

.sez_payouts_scroll_wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.sez_payouts_scroll_inner {
  display: flex;
  gap: 30px;
  animation: payoutScroll 25s linear infinite;
}
.sez_payout_card {
  flex: 0 0 auto;
  background: white;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  min-width: 240px;
}
.sez_payout_card img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 14px;
}
.sez_payout_text {
  font-size: 0.95rem;
  color: #1e293b;
}
.sez_payout_text strong {
  font-weight: 700;
}
.sez_payout_text span {
  font-size: 0.85rem;
  color: #6b7280;
  margin-left: 6px;
}

@keyframes payoutScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}



/*section seztop10_section*/
/* En çok kazananlar */
.seztop10_section {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}
.seztop10_title {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}
.seztop10_subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 40px;
}
.seztop10_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  justify-items: center;
}
.seztop10_card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 20px;
  width: 100%;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
}
.seztop10_card:hover {
  transform: translateY(-6px);
}
.seztop10_rank {
  position: absolute;
  top: -14px;
  left: -14px;
  background: white;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 0 0 2px #e2e8f0;
}
.seztop10_card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.seztop10_info strong {
  display: block;
  font-size: 1rem;
  color: #1e293b;
  font-weight: 700;
}
.seztop10_info p {
  font-size: 0.95rem;
  color: #475569;
  margin-top: 4px;
}


/*section sezpaymethods_section*/
/* SEZ: Ödeme alma ve para çekme bölümü */
.sezpaymethods_section {
  background: #f3f4f6;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.sezpaymethods_title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 12px;
}
.sezpaymethods_subtitle {
  font-size: 1.15rem;
  color: #475569;
  max-width: 680px;
  margin: 0 auto 48px;
}
.sezpaymethods_features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.sezpaymethods_card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  max-width: 300px;
  flex: 1 1 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sezpaymethods_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}
.sezpaymethods_icon {
  margin-bottom: 16px;
}
.sezpaymethods_label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4338ca;
  margin-bottom: 10px;
}
.sezpaymethods_card p {
  font-size: 0.95rem;
  color: #4b5563;
}
.sezpaymethods_note {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .sezpaymethods_features {
    flex-direction: column;
    gap: 24px;
  }
}


/*section free-account-section*/

.free-account-section {
  background: #f9fafc;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif, Arial, sans-serif;
}
.free-account-title {
  font-weight: 900;
  font-size: 2.8rem;
  color: #4338ca;
  margin-bottom: 10px;
  user-select: none;
}
.free-account-desc {
  font-weight: 500;
  font-size: 1.2rem;
  color: #475569;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.steps-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 280px;
  flex: 1 1 280px;
  box-shadow: 0 15px 40px rgb(67 56 202 / 0.12);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgb(67 56 202 / 0.22);
}
.step-icon {
  margin-bottom: 20px;
}
.step-title {
  font-weight: 700;
  font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 10px;
  user-select: text;
}
.step-desc {
  font-weight: 500;
  font-size: 1rem;
  color: #4b5563;
  user-select: text;
}
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .step-card {
    max-width: 100%;
  }
}


/*section sez_earnings_section*/

.sez_earnings_section {
  background: #4338ca;
  color: white;
  padding: 80px 20px 100px;
  text-align: center;
  border-radius: 20px;
  margin: 80px auto;
 /* max-width: 1100px;*/
  box-shadow: 0 25px 60px rgb(67 56 202 / 0.3);
}

.sez_earnings_title {
  font-weight: 900;
  font-size: 2.8rem;
  margin-bottom: 16px;
  user-select: none;
}

.sez_earnings_subtitle {
  font-weight: 500;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 48px;
  opacity: 0.85;
}

.sez_earnings_cards {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.sez_earning_card {
  background: rgba(255 255 255 / 0.1);
  border-radius: 16px;
  padding: 36px 28px;
  max-width: 350px;
  flex: 1 1 320px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.sez_earning_card:hover {
  background: rgba(255 255 255 / 0.2);
  transform: translateY(-10px);
}

.sez_earning_icon {
  font-size: 3.8rem;
  margin-bottom: 18px;
  user-select: none;
}

.sez_earning_card_title {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.sez_earning_desc {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.9;
}

.sez_earning_example {
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(255 255 255 / 0.15);
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  user-select: none;
}

.sez_earning_example span {
  color: #fbbf24; /* altın sarısı */
}

.sez_earnings_note {
  margin-top: 56px;
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0.85;
  user-select: none;
}

/* Responsive */
@media (max-width: 900px) {
  .sez_earnings_cards {
    flex-direction: column;
    gap: 32px;
  }
}

.sez_earning_icon svg {
  display: block;
  margin: 0 auto 18px auto;
  width: 64px;
  height: 64px;
  user-select: none;
}


/*section sez_browsers_section*/
.sez_browsers_section {
  background: #f9fafc;
  padding: 80px 20px 100px;
  text-align: center;
}

.sez_browsers_title {
  font-weight: 900;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 48px;
  user-select: none;
}

.sez_browsers_list {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.sez_browser_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100px;
  cursor: default;
  user-select: none;
  transition: transform 0.3s ease;
}

.sez_browser_item:hover {
  transform: translateY(-8px);
}

.sez_browser_icon {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.sez_browser_item span {
  font-weight: 700;
  font-size: 1rem;
  color: #475569;
}

/* Responsive */
@media (max-width: 600px) {
  .sez_browsers_list {
    gap: 32px;
  }
  .sez_browser_item {
    max-width: 80px;
  }
  .sez_browser_icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
  .sez_browser_item span {
    font-size: 0.9rem;
  }
}

/*section api*/
.sez_api_support_section {
  background: #f0f9ff;
  padding: 80px 20px 100px;
  text-align: center;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
}

.api_title {
  font-weight: 900;
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.api_subtitle {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 48px;
  color: #475569;
}

.api_features {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto 48px;
}

.api_feature_card {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgb(79 70 229 / 0.07);
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.api_feature_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgb(79 70 229 / 0.12);
}

.api_icon {
  margin-bottom: 20px;
  stroke-width: 2.5;
}

.api_feature_card h3 {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #1e293b;
}

.api_feature_card p {
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.5;
}

/* CTA Butonu */
.api_cta .btn_primary {
  padding: 18px 54px;
  font-size: 1.2rem;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgb(67 56 202 / 0.35);
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  user-select: none;
}

.api_cta .btn_primary:hover,
.api_cta .btn_primary:focus {
  background-color: #4338ca;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .api_features {
    flex-direction: column;
    gap: 32px;
  }
}


/*section sez_viewerstats_section*/
.sez_viewerstats_section {
  padding: 60px 20px;
  background: #f9fafb;
}
.sez_viewerstats_title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 40px;
}
.sez_viewerstats_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.sez_vstat_card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.3s ease;
}
.sez_vstat_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.vstat_icon {
  background: #eef2ff;
  padding: 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vstat_content h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
}
.vstat_content p {
  margin: 2px 0 0;
  font-size: 0.95rem;
  color: #6b7280;
}

/*section sez_cta_section*/
.sez_cta_section {
  background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%);
  color: white;
  padding: 100px 20px 120px;
  text-align: center;
  border-radius: 20px;
  margin: 80px 0;
}
.sez_cta_container {
  max-width: 700px;
  margin: 0 auto;
}
.sez_cta_title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 16px;
  user-select: none;
}
.sez_cta_text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 40px;
  opacity: 0.9;
}
.sez_btn_primary {
  background-color: white;
  color: #4338ca;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 18px 56px;
  border-radius: 40px;
  box-shadow: 0 6px 20px rgb(67 56 202 / 0.35);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}
.sez_btn_primary:hover,
.sez_btn_primary:focus {
  background-color: #4338ca;
  color: white;
}

/* Responsive */
@media (max-width: 960px) {
  .sez_stats_cards {
    gap: 32px;
  }
  .sez_stat_card {
    max-width: 100%;
  }
  .sez_partners_logos {
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .sez_cta_title {
    font-size: 2.4rem;
  }
  .sez_cta_text {
    font-size: 1.1rem;
  }
  .sez_btn_primary {
    padding: 16px 48px;
    font-size: 1.1rem;
  }
}


/*section apps*/
  .app_download_compact {
    background: #f5f7ff;
    padding: 40px 20px;
    text-align: center;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
  }

  .section_title {
    font-size: 2rem;
    font-weight: 900;
    color: #4338ca;
    margin-bottom: 10px;
  }

  .app_download_text {
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 28px;
    color: #64748b;
    font-weight: 600;
  }

  .app_icons {
    display: inline-flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }

  .app_icon_link {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    outline-offset: 4px;
    cursor: pointer;
    position: relative;
  }

  .app_icon_link:focus-visible,
  .app_icon_link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(67, 56, 202, 0.35);
    outline: none;
    border-radius: 12px;
    z-index: 10;
  }

  .app_icon {
    height: 48px;
    width: auto;
    user-select: none;
    pointer-events: auto;
  }

  /* Dinamik hafif yüzen animasyon efekti */
  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  .app_icon_link {
    animation: floatUpDown 4s ease-in-out infinite;
  }

  .app_icon_link:nth-child(2) {
    animation-delay: 2s;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .app_icons {
      flex-direction: column;
      gap: 18px;
    }
    .app_icon_link {
      animation: none;
      transform: none !important;
    }
  }
  
  
/*login*/
  .login_section {
    background: #f8fafc;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }

  .login_container {
    background: white;
    max-width: 480px;
    width: 100%;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgb(67 56 202 / 0.1);
    font-family: 'Inter', sans-serif;
  }

  .login_title {
    font-size: 2rem;
    font-weight: 900;
    color: #4338ca;
    margin-bottom: 16px;
    text-align: center;
    user-select: none;
  }

  .login_desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 32px;
    text-align: center;
  }

  .login_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .login_label {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .login_input {
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid #d1d5db;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
  }

  .login_input:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 8px rgb(67 56 202 / 0.4);
  }

  .password_wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .toggle_password_btn {
    position: absolute;
    right: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
  }

  .toggle_password_btn:focus {
    outline: 2px solid #4338ca;
    outline-offset: 2px;
    border-radius: 6px;
  }

  .login_btn {
    background-color: #4338ca;
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
  }

  .login_btn:hover,
  .login_btn:focus {
    background-color: #5c6ac4;
    outline: none;
  }

  .login_links {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 0.9rem;
  }

  .login_links a {
    color: #4338ca;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .login_links a:hover,
  .login_links a:focus {
    color: #6b72d9;
    text-decoration: underline;
    outline: none;
  }

  @media (max-width: 480px) {
    .login_container {
      padding: 32px 24px;
    }
  }
  
/*register*/  
  .register_section {
    background: #f8fafc;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }

  .register_container {
    background: white;
    max-width: 480px;
    width: 100%;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgb(67 56 202 / 0.1);
    font-family: 'Inter', sans-serif;
  }

  .register_title {
    font-size: 2rem;
    font-weight: 900;
    color: #4338ca;
    margin-bottom: 16px;
    text-align: center;
    user-select: none;
  }

  .register_desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 32px;
    text-align: center;
  }

  .register_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .register_label {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .register_input {
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid #d1d5db;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
  }

  .register_input:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 8px rgb(67 56 202 / 0.4);
  }

  .password_wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .toggle_password_btn {
    position: absolute;
    right: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
  }

  .toggle_password_btn:focus {
    outline: 2px solid #4338ca;
    outline-offset: 2px;
    border-radius: 6px;
  }

  .register_btn {
    background-color: #4338ca;
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
  }

  .register_btn:hover,
  .register_btn:focus {
    background-color: #5c6ac4;
    outline: none;
  }

  @media (max-width: 480px) {
    .register_container {
      padding: 32px 24px;
    }
  }
  
  
/*forgot_password_section*/
  .forgot_password_section {
    background: #f8fafc;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }

  .forgot_password_container {
    background: white;
    max-width: 480px;
    width: 100%;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgb(67 56 202 / 0.1);
    font-family: 'Inter', sans-serif;
    text-align: center;
  }

  .forgot_password_title {
    font-size: 2rem;
    font-weight: 900;
    color: #4338ca;
    margin-bottom: 16px;
    user-select: none;
  }

  .forgot_password_desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 32px;
  }

  .forgot_password_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .forgot_password_label {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 6px;
    text-align: left;
  }

  .forgot_password_input {
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid #d1d5db;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
  }

  .forgot_password_input:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 8px rgb(67 56 202 / 0.4);
  }

  .forgot_password_btn {
    background-color: #4338ca;
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
  }

  .forgot_password_btn:hover,
  .forgot_password_btn:focus {
    background-color: #5c6ac4;
    outline: none;
  }

  .forgot_password_message {
    margin-top: 20px;
    font-weight: 600;
    color: #2e7d32; /* yeşil ton, başarılı mesaj için */
  }

  @media (max-width: 480px) {
    .forgot_password_container {
      padding: 32px 24px;
    }
  }
  
/*contact*/

.sezcam-contact-section {
  max-width: 700px;
  margin: 60px auto 100px;
  padding: 0 20px;
}

.sezcam-contact-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgb(67 56 202 / 0.07);
}

.sezcam-contact-card .form-group {
  margin-bottom: 20px;
}

.sezcam-contact-card input,
.sezcam-contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #dbeafe;
  border-radius: 12px;
  font-size: 1rem;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
  transition: border 0.2s ease;
}

.sezcam-contact-card input:focus,
.sezcam-contact-card textarea:focus {
  outline: none;
  border-color: #4338ca;
}

.sezcam-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #4338ca;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 40px;
  border: none;
  transition: background-color 0.3s ease;
}

.sezcam-btn:hover {
  background-color: #3730a3;
}

.success-message {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  display: none;
}

/*alert error success*/
.form_errors, .form_success {
  max-width: 400px;
  margin: 15px auto;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  box-sizing: border-box;
}

.form_errors {
  background-color: #fdecea;
  color: #b71c1c;
  border: 1.5px solid #f44336;
  box-shadow: 0 2px 6px rgba(244, 67, 54, 0.25);
}

.form_errors p.error_item {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.form_success {
  background-color: #e6f4ea;
  color: #2e7d32;
  border: 1.5px solid #4caf50;
  box-shadow: 0 2px 6px rgba(76, 175, 80, 0.25);
}


/*language select*/
.language-selector {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  user-select: none;
}

.language-selector button {
  background: #4338ca;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 8px rgb(67 56 202 / 0.2);
  transition: background-color 0.3s ease;
}

.language-selector button:hover,
.language-selector button:focus {
  background: #6366f1;
  outline: none;
}

.language-selector ul {
  position: absolute;
  bottom: 38px;
  right: 0;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: white;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgb(0 0 0 / 0.15);
  min-width: 150px;
  max-height: calc(100vh - 60px); /* burayı değiştirdim */
  overflow-y: auto;
  z-index: 10000;
}


.language-selector ul::-webkit-scrollbar {
  width: 6px;
}

.language-selector ul::-webkit-scrollbar-thumb {
  background-color: #6366f1;
  border-radius: 3px;
}


.language-selector ul li {
  padding: 8px 16px;
}

.language-selector ul li a {
  color: #1e293b;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.language-selector ul li:hover,
.language-selector ul li:focus {
  background-color: #e0e7ff;
  outline: none;
}

.language-selector ul li[aria-selected="true"] {
  font-weight: 700;
  color: #4338ca;
}
/*sezcam logo*/
.sezcam-logo {
  width: 220px;
  height: auto;
  user-select: none;
  display: block;
}

.sezcam-logo svg {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* Canlı nokta yanıp sönme (pulse) */
.pulse-circle {
  fill: #ef4444;
  animation: pulse 2s infinite;
}

/* Dalga halkaları */
.ripple1, .ripple2 {
  fill: none;
  stroke: #ef4444;
  stroke-width: 2;
  opacity: 0.6;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  transform-origin: center;
}

.ripple1 {
  animation: ripple 3s infinite;
}

.ripple2 {
  animation: ripple 3s 1.5s infinite;
}

/* Pulse animasyonu */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 6px #ef4444);
  }
  50% {
    opacity: 0.5;
    filter: none;
  }
}

/* Dalga animasyonu */
@keyframes ripple {
  0% {
    r: 6;
    opacity: 0.6;
  }
  100% {
    r: 18;
    opacity: 0;
  }
}