html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-size: cover;
  overscroll-behavior: none;
  scrollbar-width: none; 
  overscroll-behavior-y: none;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: transparent;
  font-family: 'League Spartan', sans-serif;
  overscroll-behavior-y: none;
  overscroll-behavior-x: none;
}

html {
  background: linear-gradient(
    to bottom,
    #141E31 0%,
    #243b55 100%
  ) fixed no-repeat;
}
.navbar {
  background: linear-gradient(to bottom, #11336a 0%, #395483 100%);
}


/* Logo */
.logo {
  width: 180px;
  height: auto;
  border-radius: 16px;
  cursor: pointer;
  margin-right: 30px; 
}

/* Nav link listesi */
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
}

.navbar-right {
  margin-left: auto; 
  display: flex;
  align-items: center;
}
.user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-balance {
  background: transparent;
  color: #fff;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: 'League Spartan', sans-serif;
  font-size: 23px;
}


.username {
  color: #fff;
  font-weight: bolder;
  font-size: 26px;
}
.profile-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  cursor: pointer;
}


.navbar {
  display: flex;
  align-items: center;
  padding: 16px 32px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo {
  width: 200px;
  cursor: pointer;
  margin-right: 30px;
}


.navbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-profile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: linear-gradient(to bottom, #11336a 0%, #395483 100%);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  display: none;
  min-width: 140px;
  z-index: 10;
  border: 1px solid #1a00ff;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.2);
  border-bottom: 1px solid #0200ff;
}

.dropdown-menu a:hover {
  background: rgb(255 255 255 / 15%);
}

.btn-signin,
.btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.btn-signin {
  background: #5671a0;
  color: #fff;
}

.btn-signup {
  background: #fff;
  color: #182338;
}


.btn-signin:hover,
.btn-signup:hover {
  opacity: 0.9;
}

.user-balance-box {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4); 
  border-radius: 4px;
  margin-left: 12px;              
}

.balance-icon {
  width: 54px;
  height: auto;
  /* margin-right: 6px; */
  background: #0000004f;
  border-radius: 3px;
  padding: 2px;
}



.card-container-hotoffers {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  height: 200px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-left: 32px;
  margin-right: 32px;
}

.card-container-offers {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  height: 200px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-left: 32px;
  margin-right: 32px;
}

.card-container-surveys {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  height: 200px;
  border-radius: 12px;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin: 16px 32px 0 32px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.card-container-surveys > .survey-card {
  flex: 0 0 auto;
}


.card-container-surveyproviders {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  height: 200px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-left: 32px;
  margin-right: 32px;
  margin-bottom: 40px;
}


.card-container-offerproviders {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  height: 200px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-left: 32px;
  margin-right: 32px;
  margin-bottom: 50px;
}

.card {
  background: #111;              
  border-radius: 12px;
  overflow: hidden;
  width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: transform .2s, background .2s;
}
.card:hover {
  transform: translateY(-4px);
  background: #222;
}



.card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.card .card-title {
  margin: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.card .card-desc {
  margin: 0 12px 12px;
  color: #ddd;
  font-size: 14px;
  line-height: 1.4;
}

.section-title-surveys{
  color: #fff;
  margin-left: 48px;
  margin-top: 32px;
  font-size: 28px;
  align-items: center;
  display: flex;
  margin-bottom: 0;
}

.section-title-hotoffers{
  color: #fff;
  margin-left: 48px;
  margin-top: 32px;
  font-size: 28px;
  margin-bottom: 0;
}

.section-title-offerprov{
  color: #fff;
  margin-left: 48px;
  margin-top: 25px;
  font-size: 28px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.section-title-surveyprov{
  color: #fff;
  margin-left: 48px;
  /* margin-top: 32px; */
  font-size: 28px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.survey-card {
  display: flex;
  flex-direction: column;    
  align-items: center;       
  justify-content: space-evenly; 
  width: 130px;
  height: 180px;
  background: linear-gradient(to bottom, #11336a 0%, #395483 100%);
  border-radius: 8px;
  padding: 4px;
  margin: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.survey-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.survey-icon {
  width: auto;     
  height: 100px;   
  object-fit: contain;
  margin: 0;
}

.survey-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex: none;
}

.survey-title {
  font-weight: 600;
  margin: 4px 0 0;
  color: #fff;
  text-align: center;
}

.survey-desc {
  font-weight: 700;
  margin: 7px 0;
  color: #fff;
  text-align: center;
}

.survey-btn {
  display: block;
  padding: 4px 8px;
  background: linear-gradient(to bottom, #11336a 0%, #395483 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 2px;
  text-align: center;
  width: auto;
  border: 1px solid #ffffff;
}

.survey-btn:hover {
  background: #46608e;
;
}

.notifications{
  display: flex;
  justify-self: center;
}



/* Offer Providers Container */
.card-container-offerproviders {
  display: flex;
  gap: 22px;
  margin-bottom: 0;
}

/* Ortak kart stili */
.provider-card-adgem {
  flex: 0 0 120px;
  background: #7359A5;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease;
}

.provider-card-timewall {
  flex: 0 0 120px;
  background: #1664C0;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease;
}


.provider-card-adgem img,
.provider-card-timewall img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}


.provider-card-adgem span,
.provider-card-timewall span {
  display: block;
  color: #fff;
  font-weight: 600;
}

/* Hover efekti */
.provider-card-adgem:hover,
.provider-card-timewall:hover {
  transform: translateY(-4px);
}

/* --- Modal Overlay --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.modal-overlay.active {
  display: flex;
}
.modal-inner {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 80%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}
#provider-iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.landing-main {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 20px;
  color: #fff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 20px 0 30px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.btn-primary {
  display: inline-block;
  background: #05c134;
  color: #fff;
  padding: 14px 70px;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary:hover{
  background: #02d938;
}

.btn-primary2 {
  color: #00da16;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.bxs-arrow-right-stroke{
  color: #00da16;
  font-size: 28px;
}

/* Divider */
.divider {
  height: 2px;
  background: #ffffff;
  margin: 40px 0;
}

/* Discover Ways to Earn */
.discover {
  text-align: center;
}
.discover h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.discover p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}
.discover-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;  
  gap: 24px;
  margin: 40px auto;             
  max-width: 1200px;             
}

.discover-cards .card {
  box-sizing: border-box;
  flex: 0 1 calc(33.333% - 16px); 
  max-width: calc(33.333% - 16px);
  background: #e8e8e8;
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  color: #000;
}

@media (max-width: 1024px) {
  .discover-cards .card {
    flex: 0 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .discover-cards .card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

.discover-cards .card h3 {
  font-size: 1.5rem;
  margin: 16px 0 8px;
}
.discover-cards .card p {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* FAQ */
.faq {
  padding-bottom: 0px;
}
.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
}
.faq-item {
  margin-bottom: 40px;
}
.faq-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.faq-item p,
.faq-item ol,
.faq-item ul {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-left: 18px;
  padding-left: 0px;
}

.faq-item ul {
  list-style: disc inside;
}
.faq-item ol li,
.faq-item ul li {
  margin-bottom: 8px;
}

.kedi{
  display: flex;
  align-items: center;
}

.bxs-gaming{
  font-size: 32px;
  margin-right: 6px;
}

.bxs-file-detail{
  font-size: 32px;
  margin-right: 6px;
}

.fa-app-store{
  font-size: 32px;
  margin-right: 6px;
}

.bxs-user-plus{
  font-size: 35px;
  margin-right: 6px;
}

.fa-sack-dollar{
  font-size: 28px;
  margin-right: 6px;
}

.bxs-trophy{
  font-size: 28px;
  margin-right: 6px;
}

.hero {
  position: relative;
  background: url('../images/main_image.png') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  margin-top: 28px; 
  overflow: hidden;
  border-radius: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 43%);
  z-index: 1;
  border-radius: 20px;
}

.hero h1,
.hero .btn-primary {
  position: relative;
  z-index: 500;
}

.hero--highlight {
  color: #00fe40; 
}


.nav-links .nav-item {
  display: flex;
  align-items: center;
  gap: 6px;            
  padding: 4px 0;      
  line-height: 1;      
}

.nav-links .nav-item a {
  line-height: 1;      
}

.nav-icon {
  display: block;
  height: auto;
}

.nav-icon-earn       {width: 28px;}
.nav-icon-surveys    {width: 30px;}
.nav-icon-offers     {width: 28px;}
.nav-icon-cashout    {width: 27px;}
.nav-icon-referrals  {width: 34px;}

.den123{
  display: flex;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  padding-top: 8px;
}

.hoticon{
  width: 24px;
  /* margin-right: 8px; */
}

.surveyy{
  width: 32px;
  display: flex;
  margin-right: 8px;
  align-self: center;
}


.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-arrows {
  display: flex;
  gap: 12px;
  margin-right: 48px;
  margin-top: 32px;
}

.arrow {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  /* padding: 0; */
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  line-height: 1;
  transition: opacity .2s;
}


.arrow:hover {
  opacity: .7;
}


/*Sosyal medya*/

.contact .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 1rem 0 2rem;
}

.contact .social-links2 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.social-btn img {
  width: 40px;
  height: auto;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.social-btn .twitter-logo {
  width: 30px;
}

.contactustext{
  font-size: 1.3rem;
  color: #ffffff;
  border-bottom: 1px solid;
  text-align: center;
}


.logo-mobile,
.navbar-center,
.notification-icon,
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 600px) {
  .logo {
    display: none !important;
  }
  .logo-mobile {
    display: block !important;
    width: 145px;
    height: auto;
    /* margin-right: 16px; */
  }

  .nav-links {
    display: none !important;
  }

  .navbar-right .user-profile{
    display: none !important;
  }

  .navbar-right {
    margin-left: 20px !important;
  }

  /* d) Ortada mobil bakiye kutusunu gÃ¶ster */
  .navbar-center {
    display: flex;
    align-items: center;
    margin-left: 16px;
  }
  .user-balance-box-mobile {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    /* padding: 8px 12px; */
  }
  .user-balance-box-mobile .balance-icon-mobile {
    width: 32px;
    /* margin-right: 8px; */
    background: #0000004f;
    border-radius: 3px;
    padding: 10px;
  }
  .user-balance-box-mobile .user-balance-mobile {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 9px;
  }

  .navbar{
    display: flex;
    justify-content: center;
    height: auto;
    padding: 10px;
  }

  .notification-icon {
    display: block !important;
    width: 24px;
    height: auto;
    margin-left: auto;
    cursor: pointer;
  }

  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    background: linear-gradient(to top, #11336a 0%, #395483 100%);
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
  }
  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    padding: 8px 0px;
  }
  .mobile-bottom-nav img {
    width: 25px;
    margin-bottom: 6px;
    /* border-radius: 50%; */
    /* padding-top: 10px; */
  }

  body {
    padding-bottom: 56px;
  }

  .card-container-hotoffers {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    height: 200px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .card-container-offers {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    height: 200px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
    margin-left: 32px;
    margin-right: 32px;
  }

  .card-container-surveys {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    height: 200px;
    border-radius: 12px;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 16px 16px 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .card-container-offerproviders {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    height: 200px;
    border-radius: 12px;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 16px 16px 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .card-container-surveyproviders {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    height: 200px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 40px;
  }

  .section-title-surveys{
    color: #fff;
    margin-left: 38px;
    margin-top: 32px;
    font-size: 28px;
    align-items: center;
    display: flex;
    margin-bottom: 0;
  }
  
  .section-title-hotoffers{
    color: #fff;
    margin-left: 38px;
    margin-top: 32px;
    font-size: 28px;
    margin-bottom: 0;
  }
  
  .section-title-offerprov{
    color: #fff;
    margin-left: 38px;
    margin-top: 25px;
    font-size: 28px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
  .section-title-surveyprov{
    color: #fff;
    margin-left: 38px;
    /* margin-top: 32px; */
    font-size: 28px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }

}


@media (max-width: 600px) {
  .arrow {
    display: none !important;
  }
}



@media (max-width: 600px) {

  /* Hero */
  .hero {
    padding: 60px 12px;
    margin-top: 16px;
  }
  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  .btn-primary {
    padding: 12px 32px;
    font-size: 16px;
  }

  /* Divider */
  .divider { margin: 24px 0; }

  /* Discover */
  .discover h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .discover p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .discover-cards {
    flex-direction: column;
    gap: 16px;
    padding: 0 12px;
  }
  .discover-cards .card {
    flex: 0 1 100%;
    width: 100%;
  }

  /* FAQ */
  .faq h2 { font-size: 24px; margin-bottom: 16px; }
  .faq-item h3 { font-size: 18px; }
  .faq-item p,
  .faq-item ul,
  .faq-item ol {
    font-size: 14px;
    margin-left: 12px;
  }

  .navbar-right .btn-signin,
  .navbar-right .btn-signup {
    display: inline-flex !important;
    margin: 0 4px;
    padding: 0 12px;
    /* height: 40px; */
    /* font-size: 14px; */
  }
}
