*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Google Fonts for futuristic look */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

.slogan {
    text-align: center;
    padding: 20px 10px;
    margin-top: 10px;
    background: #fdfdfd;
    border-radius: 10px;
}

.slogan h1 {
    color: #dab40b;
    margin-bottom: 10px;
}

.slogan h1:hover {
  color: #dab40b; /* Or a bright color */
  text-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px rgb(217, 255, 0), /* Neon color */
    0 0 82px rgb(217, 255, 0),
    0 0 92px rgb(208, 255, 0),
    0 0 102px rgb(255, 251, 0),
    0 0 151px rgb(255, 238, 0);
}

.slogan p {
    color: #03090a;
    margin: 5px 0;
}

.slogan p:hover {
  color: #0d0442; /* Or a bright color */
  text-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px rgb(0, 255, 200), /* Neon color */
    0 0 82px rgb(0, 247, 255),
    0 0 92px rgb(0, 217, 255),
    0 0 102px rgb(0, 217, 255),
    0 0 151px rgb(0, 255, 221);
}

/* Top Header with Indian Tricolor + Glass Look */
.top-header {
  background: linear-gradient(to bottom, #FF9933 0%, #FF9933 33.33%, white 33.33%, white 66.66%, #138808 66.66%, #138808 100%);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Logo Styling */
.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000;
  background-color: #fff;
}

/* Title Styling */
.title h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #000080;
  margin: 0;
  text-shadow: 1px 1px 2px white;
}

/* Search Styling */
.search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search input[type="text"] {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #999;
  background-color: rgba(255, 255, 255, 0.9);
  width: 200px;
  transition: width 0.3s ease, border-color 0.3s ease;
}

.search input[type="text"]:focus {
  width: 300px;
  border-color: #138808;
  outline: none;
}

.search button {
  padding: 8px 16px;
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  border: none;
  color: #000;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 200, 0, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  &::hover {
    background: #ff9900;
    box-shadow: 0 0 20px rgba(255, 200, 0, 1);
    transform: scale(1.05);
  }
}

.search button:hover {
  background: #ffea00;
  box-shadow: 0 0 20px rgba(255, 255, 0, 1);
}

.navbar {
    background: #222e61;
    box-shadow: 0 0 10px #04e229;
    border-top: 1px solid #04e229;
    border-bottom: 1px solid #04e229;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px 0;
    margin: 0;
    flex-wrap: wrap;
}

.navbar nav ul li a {
    padding: 8px 16px;
    color: #00f0ff;
    background: transparent;
    border: 1px solid #2c9722;
    border-radius: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.navbar nav ul li a:hover {
    background: #1fad12;
    color: #000;
    box-shadow: 0 0 12px #00f0ff;
}

.navbar nav ul li a.active {
  background: #00f0ff;
  color: #000;
  box-shadow: 0 0 12px #00f0ff;
  font-weight: bold;
}

.ad-space {
  position: fixed;
  right: 10px;
  top: 150px;
  width: 80px;
  height: 400px;
  border: 2px dashed gold;
  color: gold;
  writing-mode: vertical-rl;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
    }
    .logo img {
        width: 50px;
        height: 50px;
    }
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .search input[type="text"] {
        width: 100%; /* Full width on smaller screens */
    }
    .teams, .rankings, .contact{
        width: 90%; /* Adjust width for smaller screens */
    }
}

@media (max-width: 480px) {
    .top-header {
        flex-direction: column;
        font-size: 0.8rem; /* Smaller font size */
    }
    .title {
        font-size: 1.2rem; /* Smaller title font size */
    }
    .search input[type="text"] {
        width: 100%; /* Full width on very small screens */
    }
    .teams, .rankings, .contact{
        width: 100%; /* Full width on very small screens */
    }
}
@media (max-width: 320px) {
    .top-header {
        font-size: 0.7rem; /* Even smaller font size */
    }
    .title {
        font-size: 1rem; /* Even smaller title font size */
    }
    .search input[type="text"] {
        width: 100%; /* Full width on very small screens */
    }
    .teams, .rankings, .contact{
        width: 100%; /* Full width on very small screens */
    }
}
@media (max-width: 240px) {
    .top-header {
        font-size: 0.6rem; /* Very small font size */
    }
    .title {
        font-size: 0.8rem; /* Very small title font size */
    }
    .search input[type="text"] {
        width: 100%; /* Full width on very small screens */
    }
    .teams, .rankings, .contact{
        width: 100%; /* Full width on very small screens */
    }
}
@media (max-width: 160px) {
    .top-header {
        font-size: 0.5rem; /* Extremely small font size */
    }
    .title {
        font-size: 0.6rem; /* Extremely small title font size */
    }
    .search input[type="text"] {
        width: 100%; /* Full width on extremely small screens */
    }
    .teams, .rankings, .contact{
        width: 100%; /* Full width on extremely small screens */
    }
}
@media (max-width: 120px) {
    .top-header {
        font-size: 0.4rem; /* Minuscule font size */
    }
    .title {
        font-size: 0.5rem; /* Minuscule title font size */
    }
    .search input[type="text"] {
        width: 100%; /* Full width on minuscule screens */
    }
    .teams, .rankings, .contact{
        width: 100%; /* Full width on minuscule screens */
    }
}
@media (max-width: 80px) {
    .top-header {
        font-size: 0.3rem; /* Almost unreadable font size */
    }
    .title {
        font-size: 0.4rem; /* Almost unreadable title font size */
    }
    .search input[type="text"] {
        width: 100%; /* Full width on almost unreadable screens */
    }
    .teams, .rankings, .contact{
        width: 100%; /* Full width on almost unreadable screens */
    }
}
@media (max-width: 60px) {
    .top-header {
        font-size: 0.2rem; /* Nearly invisible font size */
    }
    .title {
        font-size: 0.3rem; /* Nearly invisible title font size */
    }
    .search input[type="text"] {
        width: 100%; /* Full width on nearly invisible screens */
    }
    .teams, .rankings, .contact {
        width: 100%; /* Full width on nearly invisible screens */
    }
}
.footer {
  background: rgb(20, 30, 85);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 -4px 20px rgba(0, 255, 255, 0.1);
  position: relative;
  width: 100%;
  margin-top: 60px;
  border-radius: 20px 20px 0 0;
}

.footer .social-media {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.footer .social-media a {
  font-size: 1.5rem;
  color: #00f0ff;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 50%;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

.footer .social-media a:hover {
  color: #ffffff;
  background: #00f0ff;
  box-shadow: 0 0 20px #00f0ff;
  transform: scale(1.1);
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer .footer-links a {
  color: #aad8ff;
  font-size: 0.95rem;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer .footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #00f0ff;
}

.footer .footer-text {
  font-size: 0.85rem;
  color: #cccccc;
  margin: 5px 0;
}

.footer .brand-name {
  color: #00f9ff;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer .designer {
  color: #fff;
  background: linear-gradient(to right, #00f0ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer {
  animation: glowFooter 5s infinite alternate;
}

@keyframes glowFooter {
  from {
    box-shadow: 0 -4px 15px rgba(0, 255, 255, 0.2);
  }
  to {
    box-shadow: 0 -4px 25px rgba(0, 255, 255, 0.5);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 15px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #00ffe7;
  box-shadow: 0 -2px 10px rgba(0, 255, 231, 0.1);
  z-index: 999;
}
.cookie-banner p { margin: 0; }

.cookie-banner button {
  background: linear-gradient(90deg, #00f0ff, #0072ff);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 12px #00f0ff;
  transition: 0.3s ease;
}
.cookie-banner button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00f0ff;
}


.akash{
    text-decoration: none;
}

.akash:hover{
  color: #000000;
  background-color: #18647e;
  box-shadow: 0 0 20px #00f0ff;
  transform: scale(1.1);
}

/* Hover effect for all links */
a {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

a:hover {
    color: #00cfff; /* cyan hover color */
    transform: scale(1.05);
}

/* Hover effect for buttons */
button, .btn {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover, .btn:hover {
    background-color: #0099cc; /* darker cyan */
    transform: translateY(-2px);
}
