body {
  background: yellow;
  color: #eaff00;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}


a {
  color: #00ffe7;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #ff0;
  text-shadow: 0 0 6px #ff0;
}
/* Full Width Navigation */
.main-nav {
  width: 100%;
  background: #000;
  border-bottom: 3px solid #ffeb3b;
}
.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding: 10px 0;
}
.main-nav ul li a {
  color: #ffeb3b;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.main-nav ul li a:hover {
  color: #fff;
  text-shadow: 0 0 10px #ffeb3b;
}
.home-icon {
  font-size: 18px;
  color: #ffeb3b;
}

/* Full Width Header */
.site-header {
  width: 100%;
  background: linear-gradient(90deg, #000, #1a1a1a);
  padding: 15px 0;
  text-align: center;
  color: #ffeb3b;
  border-bottom: 3px solid #ffeb3b;
}
 .satta-heading .sub-text {
    font-size: 14px;            /* Small size (instead of <font size="1">) */
    color: yellow;               /* Black text */
    margin: 0;
  }
  .satta-heading h1 {
    font-size: 16px;            /* H1 ka proper size */
    color: yellow;
    margin-top: 5px;
  }
.site-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #ffeb3b;
}
.site-subtitle {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
}

.header {
    background-color: #ffeb3b; /* येलो */
    padding: 0;       /* कोई padding नहीं */
    margin: 0;        /* कोई margin नहीं */
    text-align: center;
  }
  .header img {
    max-height: 160px;  /* हाइट कम */
    width: auto;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;  /* image के चारों तरफ कोई space नहीं */
  }

  @media (min-width: 600px) {
    .header img {
      max-height: 40px;
      max-width: 250px;
    }
  }
  
.satta-keywords {
    background-color: yellow;   
    color: black;           
    text-align: center;       
              
    border-radius: 8px;       
  }

  .satta-keywords h2 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .satta-keywords p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  /* Mobile responsive */
  @media (max-width: 600px) {
    .satta-keywords h2 {
      font-size: 14px;
    }
    .satta-keywords p {
      font-size: 10px;
    }
  }
  .satta-chart-heading {
  font-size: 14px;
  color: #33691e;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 1px 1px #ffffff;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  .satta-chart-heading {
    font-size: 12px;
  }
}

.refresh-btn-mini {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff176, #fbc02d);
  color: #000;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 10px rgba(255, 235, 59, 0.5), 0 3px 6px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.refresh-btn-mini:hover {
  background: linear-gradient(135deg, #fff59d, #fdd835);
  box-shadow: 0 0 16px rgba(255, 255, 0, 0.6);
  transform: scale(1.1);
}

button,
input[type="submit"],
input[type="button"] {
  background-color: #1b1b1d;
  color: #eaff00;
  border: 2px solid #00ff99;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 8px #00ff66;
  transition: all 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background-color: #00ff66;
  color: #000;
  box-shadow: 0 0 12px #00ffcc;
}

.container,
.card,
.box {
  background-color: #1a1a1d;
  border: 2px solid #00ff99;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.2);
}

.table-gaming {
  width: 100%;
  border-collapse: collapse;
  background-color: #111;
  color: #eaff00;
  font-weight: bold;
}

.table-gaming th,
.table-gaming td {
  border: 1px solid #00ff99;
  padding: 10px;
  text-align: center;
}

.table-gaming tr:nth-child(even) {
  background-color: #1e1e22;
}

.table-gaming tr:hover {
  background-color: #2a2a2e;
  color: #00ffe7;
}

.blinking {
  animation: blinkText 1s infinite;
  color: #ff0;
}

@keyframes blinkText {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}



.game-result-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 15px;
  background: linear-gradient(135deg, #fffde7, #ffff8d);
}

.game-card {
  background-color: #ffffcc;
  border: 2px solid #fdd835;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(255, 235, 59, 0.3);
  width: 300px;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  transition: 0.3s ease-in-out;
}

.game-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(255, 213, 0, 0.4);
}

.game-name {
  font-size: 14px;
  font-weight: bold;
  color: #f57f17;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.game-time {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-bottom: 12px;
}

.game-results {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.old-result {
  color: #c62828;
}

.new-result {
  color: #2e7d32;
  font-weight: bold;
}

/* Gaming Style Result Banner with Yellow Mix */
.gaming-banner-mixed {
  width: 95%;
  padding: 30px 20px;
  background: linear-gradient(135deg, #0e0f11, #fff59d, #1f1f1f);
  text-align: center;
  border-top: 4px solid #ffd600;
  border-bottom: 4px solid #ffd600;
  box-shadow: 0 0 30px rgba(255, 255, 0, 0.1);
}

.gaming-title-mixed {
  font-size: 16px;
  font-weight: 800;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 12px #ffea00;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
}

.gaming-result-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  flex-wrap: wrap;
}

.gaming-game-name {
  color: #000;
  text-shadow: 0 0 6px #ffff8d;
}

.gaming-arrow {
  color: red;
  font-size: 22px;
  text-shadow: 0 0 6px #fff;
}

.gaming-result-number {
  color: #000;
  text-shadow: 0 0 10px #ff5722;
  font-size: 22px;
}
/* Time & Date Gaming Style */
.satta-datetime {
  text-align: center;
  padding: 10px 10px;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  border-top: 3px solid #ffee58;
  border-bottom: 3px solid #ffee58;
  box-shadow: 0 0 20px rgba(255, 235, 59, 0.1);
  font-family: 'Orbitron', sans-serif;
}

.satta-time {
  font-size: 12px;
  color: #000;
  font-weight: 700;
  text-shadow: 0 0 10px #ffff00;
  margin-bottom: 5px;
}

.satta-date {
  font-size: 12px;
  color: #000;
  letter-spacing: 1px;
}

.chart-heading {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 30px;
  color: #ffeb3b;
  text-shadow: 1px 1px #000;
  margin-top: 30px;
}
.gaming-footer {
  background: #ffffff;
  padding: 25px 15px;
  text-align: center;
  border-top: 3px solid #cddc39;
  box-shadow: 0 0 15px rgba(255, 235, 59, 0.15);
  font-family: 'Orbitron', sans-serif;
  border-radius: 0 0 16px 16px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-link {
  color: #33691e;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin: 0 12px;
  transition: 0.3s;
}

.footer-link:hover {
  color: #1b5e20;
  text-shadow: 0 0 5px rgba(255, 235, 59, 0.4);
}

.footer-copy {
  font-size: 13px;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 12px;
  font-style: italic;
  color: #aa0000;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}
.vikram-credit-box {
  background: #ffffff;
  padding: 20px;
  margin: 40px auto 20px;
  border: 2px dashed #ffeb3b;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 235, 59, 0.2);
  max-width: 400px;
  font-family: 'Orbitron', sans-serif;
}

.vikram-text {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.vikram-whatsapp-btn {
  display: inline-block;
  background: linear-gradient(90deg, #fbc02d, #ffee58);
  color: #000;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 235, 59, 0.6);
  transition: all 0.3s ease-in-out;
}

.vikram-whatsapp-btn:hover {
  background: #fff176;
  color: #222;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 235, 59, 0.8);
}
.nav-footer-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  text-align: center;
}

.nav-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-footer-links li a {
  display: inline-block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #ffeb3b;
  color: #000;
  border: 2px solid red;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
  font-family: 'Orbitron', sans-serif;
}

.nav-footer-links li a:hover {
  background-color: #fff176;
  color: #d32f2f;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  transform: scale(1.05);
}
.main-nav {
  background: #111;
  border-bottom: 4px solid #ffeb3b;
  box-shadow: 0 0 12px rgba(255, 255, 0, 0.4);
  padding: 12px 0;
  font-family: 'Orbitron', sans-serif;
  z-index: 999;
  position: relative;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
 
}

.main-nav li a {
  color: #fff200;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}

.main-nav li a:hover {
  background-color: #ffeb3b;
  color: #000;
  box-shadow: 0 0 10px #fff200, 0 0 15px #ffeb3b;
  border: 2px solid #fff200;
}

.main-nav .home-icon {
  font-size: 18px;
  margin-right: 5px;
  color: #fff200;
}

/* Telegram Notice Box */
.telegram-notice {
  max-width: 800px;
  margin: 20px auto;
  background: #fff9c4;
  border: 1px solid #fbc02d;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.telegram-notice h3 {
  color: #e65100;
  margin-bottom: 10px;
}

.telegram-notice p {
  font-size: 17px;
  color: #444;
  margin-bottom: 20px;
}

/* Telegram Button */
.telegram-btn {
  display: inline-block;
  background: #0088cc;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s;
}

.telegram-btn:hover {
  background: #006699; /* Hover effect */
}

