.khelkshetra-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.khelkshetra-padding-large {
  padding: 5rem 2rem;
}

.khelkshetra-padding-medium {
  padding: 4rem 2rem;
}

.khelkshetra-heading-large {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw + 1.5rem, 2.5rem);
}

.khelkshetra-heading-large i {
  color: var(--primary-accent);
}

.khelkshetra-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(38, 109, 240, 0.2);
  color: white;
  font-weight: 600;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.khelkshetra-button:hover {
  box-shadow: 0 6px 16px rgba(38, 109, 240, 0.3);
  background-color: #1e5cd8;
  transform: translateY(-3px);
}

.khelkshetra-button i {
  font-size: 1.1rem;
}


.khelkshetra-hero-section {
  position: relative;
  overflow: hidden;
  background-color: white;
  background-image: radial-gradient(circle at 10% 20%, rgba(230, 234, 241, 0.4) 0%, rgba(255, 255, 255, 0.1) 90%);
}

.khelkshetra-welcome-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 3rem;
}

.khelkshetra-welcome-text {
  animation: fadeInLeft 1s ease-out;
}

.khelkshetra-welcome-text h1 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: clamp(1.2rem, 4vw + 1rem, 3rem);
  line-height: 1.2;
}

.khelkshetra-welcome-text h1 i {
  color: var(--primary-accent);
  font-size: 2.5rem;
}

.khelkshetra-welcome-text p {
  margin-bottom: 1.25rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-welcome-text p i {
  color: var(--primary-accent);
}

.khelkshetra-welcome-text .khelkshetra-button {
  margin-top: 1rem;
}

.khelkshetra-welcome-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.khelkshetra-welcome-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.15);
  transition: all 0.5s ease;
  transform: rotate(2deg);
}

.khelkshetra-welcome-image img:hover {
  transform: rotate(0deg) scale(1.02);
}


.khelkshetra-community-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: var(--bg-color);
}

.khelkshetra-community-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 90% 10%, rgba(38, 109, 240, 0.05) 0%, transparent 70%);
}

.khelkshetra-community-section .khelkshetra-container {
  position: relative;
  z-index: 1;
}

.khelkshetra-community-section p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-community-section .khelkshetra-button {
  margin-top: 1rem;
}


.khelkshetra-slider-section {
  position: relative;
  height: 500px;
  padding: 0;
  overflow: hidden;
  background-color: white;
}

.khelkshetra-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.khelkshetra-slide {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 1s ease;
}

.khelkshetra-slide.active {
  z-index: 2;
  opacity: 1;
}

.khelkshetra-slide-ludo {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/home/first-slide.jpg');
}

.khelkshetra-slide-catan {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/home/second-slide.jpg');
}

.khelkshetra-slide-dixit {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/home/third-slide.jpg');
}

.khelkshetra-slide-azul {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/home/fourth-slide.jpg');
}

.khelkshetra-overlay {
  max-width: 800px;
  padding: 2rem;
  color: white;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.khelkshetra-overlay h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw + 1rem, 3rem);
}

.khelkshetra-overlay h2 i {
  color: var(--primary-accent);
}

.khelkshetra-overlay p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.khelkshetra-overlay p i {
  color: var(--primary-accent);
}

.khelkshetra-overlay .khelkshetra-button {
  border: 2px solid var(--primary-accent);
  background-color: var(--primary-accent);
}

.khelkshetra-overlay .khelkshetra-button:hover {
  color: white;
  background-color: transparent;
}


.khelkshetra-category-section {
  position: relative;
  background-color: var(--bg-color);
}

.khelkshetra-category-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.khelkshetra-category-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.khelkshetra-category-text p {
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.khelkshetra-category-item {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: white;
  transition: all 0.3s ease;
}

.khelkshetra-category-item:hover {
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
  transform: translateY(-5px);
}

.khelkshetra-image-holder {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.khelkshetra-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.khelkshetra-category-item:hover .khelkshetra-image-holder img {
  transform: scale(1.1);
}

.khelkshetra-category-link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem;
  color: var(--text-color);
  font-weight: 600;
  text-align: center;
  background-color: white;
  transition: all 0.3s ease;
}

.khelkshetra-category-link:hover {
  color: var(--primary-accent);
}

.khelkshetra-category-link i {
  margin-right: 0.5rem;
  color: var(--primary-accent);
}


.khelkshetra-about-section {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.khelkshetra-about-section::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(38, 109, 240, 0.05);
}

.khelkshetra-about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 3rem;
}

.khelkshetra-about-text {
  position: relative;
  z-index: 1;
}

.khelkshetra-about-text h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw + 1rem, 2.5rem);
}

.khelkshetra-about-text h2 i {
  color: var(--primary-accent);
}

.khelkshetra-about-text h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw + 1rem, 1.5rem);
}

.khelkshetra-about-text h3 i {
  color: var(--primary-accent);
}

.khelkshetra-about-text p {
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-about-image {
  position: relative;
  z-index: 1;
}

.khelkshetra-about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.15);
  transition: all 0.5s ease;
  transform: rotate(-2deg);
}

.khelkshetra-about-image img:hover {
  transform: rotate(0deg) scale(1.02);
}


.khelkshetra-tutorials-section {
  position: relative;
  text-align: center;
  background-color: var(--bg-color);
  background-image: linear-gradient(135deg, rgba(38, 109, 240, 0.05) 0%, transparent 100%);
}

.khelkshetra-tutorials-section p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-tutorials-section .khelkshetra-button {
  margin-top: 1rem;
}


.khelkshetra-festive-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: white;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="20" fill="%23266DF0"/></svg>');
  background-size: 300px;
}

.khelkshetra-festive-section p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-festive-btn {
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
  background-color: #FF6B6B;
}

.khelkshetra-festive-btn:hover {
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
  background-color: #FF5252;
}


.khelkshetra-review-section {
  position: relative;
  background-color: var(--bg-color);
}

.khelkshetra-review-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.khelkshetra-review-grid h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw + 1rem, 2.5rem);
}

.khelkshetra-review-grid h2 i {
  color: var(--primary-accent);
}

.khelkshetra-review-grid>p {
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-review-grid>p i {
  color: var(--primary-accent);
}

.khelkshetra-reviews {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: auto;
  min-height: 200px;
  margin: 2rem 0;
}

.khelkshetra-review-item {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  width: 100%;
  min-height: 160px;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  text-align: left;
  background-color: white;
  transition: all 0.5s ease;
  transform: translateX(50px);
  pointer-events: none;
}

.khelkshetra-review-item.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.khelkshetra-review-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.khelkshetra-review-item p {
  margin-bottom: 0.5rem;
  color: var(--secondary-text-color);
  line-height: 1.6;
}

.khelkshetra-review-item p:first-child {
  color: #FFC107;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.khelkshetra-review-item strong {
  color: var(--text-color);
}

.khelkshetra-dots {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0 2rem;
}

.khelkshetra-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(38, 109, 240, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.khelkshetra-dot.active {
  background-color: var(--primary-accent);
  transform: scale(1.2);
}


.khelkshetra-events-section {
  position: relative;
  text-align: center;
  background-color: white;
  background-image: linear-gradient(45deg, rgba(38, 109, 240, 0.02) 0%, transparent 100%);
}

.khelkshetra-events-section p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-events-section .khelkshetra-button {
  margin-top: 1rem;
}


.khelkshetra-support-section {
  position: relative;
  text-align: center;
  background-color: var(--bg-color);
}

.khelkshetra-support-section p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.khelkshetra-support-card {
  position: relative;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: white;
  transition: all 0.3s ease;
}

.khelkshetra-support-card:hover {
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
  transform: translateY(-5px);
}

.khelkshetra-support-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  opacity: 0;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.khelkshetra-support-card:hover::before {
  opacity: 1;
}

.khelkshetra-support-card i {
  display: block;
  margin-bottom: 1rem;
  color: var(--primary-accent);
  font-size: 2rem;
}

.khelkshetra-support-card h3 {
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.khelkshetra-support-card p {
  margin-bottom: 0;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
}

.khelkshetra-support-card p i {
  display: inline;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.khelkshetra-support-btn {
  margin-top: 1rem;
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px) rotate(2deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(2deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.khelkshetra-community-section .khelkshetra-heading-large,
.khelkshetra-tutorials-section .khelkshetra-heading-large,
.khelkshetra-festive-section .khelkshetra-heading-large,
.khelkshetra-events-section .khelkshetra-heading-large,
.khelkshetra-support-section .khelkshetra-heading-large {
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {

  .khelkshetra-welcome-grid,
  .khelkshetra-category-header,
  .khelkshetra-about-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 450px) {
  .khelkshetra-reviews {
    min-height: 400px;
  }

  .khelkshetra-review-item {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 375px) {
  .khelkshetra-reviews {
    min-height: 500px;
  }
}