/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0e0e10;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

/* Import a gaming-style font (optional) */


.gaming-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1d;

  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  border-bottom: 2px solid #00ffff;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffff;
  
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00ffff;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .gaming-navbar {
 
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: row; /* <-- change from column to row */
    flex-wrap: wrap;     /* optional: wrap if screen is too narrow */
    width: 100%;
    margin-top: 10px;
    gap: 15px;           /* adjust spacing */
  }

  .nav-links li {
    padding: 5px 0;
  }
}
.playing-section {
  background: linear-gradient(135deg, #111 0%, #1a1a1d 100%);
  color: #ffffff;
  padding: 7px 5px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  border-top: 2px solid #00ffff;
  border-bottom: 2px solid #00ffff;
}

.playing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.playing-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: #ccc;
}

.play-button {
  display: inline-block;
  background-color: #00ffff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ffff;
  transition: background 0.3s ease, transform 0.2s;
}

.play-button:hover {
  background-color: #00cccc;
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffff;
}
/* Section Styling */
.result-section {
  background: #0e0e10;
  padding: 10px 10px;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

/* Title */
.section-title {
  text-align: center;
  color: #00ffff;
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #00ffff;
}

/* Container */
.result-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Card Style */
.result-card {
  background: #1a1a1d;
  border: 1px solid #00ffff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  transition: transform 0.2s ease;
}

.result-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #00ffff;
}

/* Left Side (Game Name + Time) */
.card-left .game-name {
  font-weight: bold;
  color: #00ffff;
  font-size: 1.2rem;
}

.card-left .game-time {
  color: #ff4d4d;
  font-size: 0.95rem;
}

/* Center (Old/New Result) */
.card-center {
  text-align: center;
}

.old-result, .new-result {
  font-size: 1rem;
  margin: 5px 0;
}

.old-result span {
  color: #0099ff;
  font-weight: bold;
}

.new-result span {
  color: #00cc66;
  font-weight: bold;
}

/* Right (Chart Link) */
.card-right .chart-link {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.card-right .chart-link:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 10px #00ffff;
}

/* Responsive */
@media (max-width: 768px) {
  .result-card {
 
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
  }

  .card-left, .card-center, .card-right {
    width: 100%;
    text-align: left;
  }

  .card-right {
    text-align: right;
  }
}
.footer {
  background-color: #111;
  color: #ccc;
  padding: 30px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-logo h2 {
  color: #fff;
  margin-bottom: 5px;
}

.footer-links a,
.footer-social a {
  display: inline-block;
  margin-right: 15px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}
 .satta-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #a7cda2;
  }

  .satta-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
    text-align: center;
  }

  .satta-content h2 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #222;
  }

  .satta-content p {
    font-size: 16px;
    margin-bottom: 15px;
  }
