* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #111;
}
/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 22px;
  border-bottom: 1px solid #ececec;
}

/* Center Title */
.header h1 {
  font-size: 26px;
  font-weight: 730;
  letter-spacing: 1px;
}

/* Menu Icon */
.menu-icon {
  position: absolute;
  left: 25px;
  font-size: 28px;
  cursor: pointer;
  color: #3f78bf;
}

/* Login Button */
.login-btn {
  position: absolute;
  right: 25px;
  text-decoration: none;
  background: #4f86d8;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}

.login-btn:hover {
  background: #3b6fc4;
}


/* Top Bar */
.top-bar {
  background: #4e89d4;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
}

/* Mobile Menu */
#mobileMenu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  padding: 25px;
  transition: 0.3s ease;
  z-index: 1000;
}

#mobileMenu.active {
  left: 0;
}

#mobileMenu a {
  display: block;
  text-decoration: none;
  color: #3f78bf;
  font-size: 18px;
  font-weight: 550;
  margin: 20px 0;
}

.close-btn {
  font-size: 38px;
  cursor: pointer;
  color: red;
}

/* Overlay */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 900;
}

#overlay.active {
  display: block;
}

/* Hero */
.hero img {
  width: 100%;
  display: block;
}

/* Desktop */
@media (max-width: 576px) {

  /* #mobileMenu,
  #overlay {
    display: none;
    } */
  .login-btn {
    display: none;
  }

  .header h1 {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .header h1 {
    font-size: 15px;
  }
}

/* Today Winner Section */
.winner-section {
  padding: 80px 20px;
  text-align: center;
}

.winner-title {
  font-size: 37px;
  font-weight: 720;
  color: #4f86d8;
  margin-bottom: 30px;
}

.winner-title span {
  margin: 0 10px;
}

/* Prediction Badge */
.winner-badge {
  background: #4f86d8;
  color: #fff;
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

/* Buttons */
.winner-buttons {
  max-width: 420px;
  margin: auto;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn img {
  width: 22px;
}

/* Button Colors */
.telegram.light {
  background: linear-gradient(135deg, #1da1f2, #3ab7ff);
}

.telegram.dark {
  background: linear-gradient(135deg, #0077b5, #009adf);
}

.telegram.join {
  background: linear-gradient(135deg, #0088cc, #00aaff);
}

.whatsapp {
  background: linear-gradient(135deg, #25d366, #2ee874);
}

/* Mobile */
@media (max-width: 600px) {
  .winner-title {
    font-size: 26px;
  }
}
  

/* Toss Section */
.toss-section {
  padding: 80px 20px;
  background: #fff;
}

.toss-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #4f86d8;
  margin-bottom: 50px;
}

/* Horizontal Slider */
.toss-slider {
  overflow-x: auto;
  scrollbar-width: none;
}

.toss-slider::-webkit-scrollbar {
  display: none;
}

.toss-track {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
}

/* Image Cards */
.toss-item {
  min-width: 240px;
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  overflow: hidden;
}

.toss-item img {
  width: 100%;
  display: block;
}

/* Desktop */
@media (min-width: 768px) {
  .toss-item {
    min-width: 280px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .toss-title {
    font-size: 24px;
  }
}

/* Fans Section */
.fans-section {
  padding: 90px 20px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('bg.webp') center/cover no-repeat;
  text-align: center;
}

.fans-title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Cards */
.fans-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

.fan-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
/* Mobile Horizontal Scroll for Testimonials */
@media (max-width: 768px) {

  .fans-cards {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .fans-cards::-webkit-scrollbar {
    display: none;
  }

  .fan-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}


.fan-avatar {
  width: 90px;
  margin-bottom: 15px;
}

.stars {
  color: #f5c518;
  font-size: 20px;
  margin-bottom: 15px;
}

.fan-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.fan-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.fan-name {
  font-size: 14px;
  color: #666;
}

/* Mobile */
@media (max-width: 600px) {
  .fans-title {
    font-size: 26px;
  }
}

/* Footer */
.site-footer {
  background: #f1f1f1;
  padding: 70px 20px 30px;
  text-align: center;
  position: relative;
}

/* Top Shape */
.footer-shape {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 15px solid #f1f1f1;
}

/* Footer Nav */
.footer-nav {
  margin-bottom: 40px;
}

.footer-nav a {
  color: #2c6ed5;
  text-decoration: none;
  font-size: 16px;
  margin: 0 15px;
  font-weight: 700;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Thank Text */
.footer-thank {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

/* Bottom Row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  font-size: 14px;
  color: #666;
}




/* Mobile */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-nav a {
    display: inline-block;
    margin: 8px 10px;
  }
}

