/* Общие стили для страницы настольных игр */
.khelkshetra-global-padding {
  padding: 0 2rem;
}

.khelkshetra-section-large {
  padding: 5rem 0;
}

.khelkshetra-section-medium {
  padding: 4rem 0;
}

.khelkshetra-large-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.khelkshetra-medium-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.khelkshetra-heading-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.khelkshetra-heading-large i {
  color: var(--primary-accent);
}

/* Приветственная секция */
.khelkshetra-welcome-section {
  background-color: white;
  background-image: radial-gradient(circle at 90% 10%, rgba(38, 109, 240, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.khelkshetra-welcome-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.khelkshetra-welcome-text {
  animation: fadeInLeft 1s ease-out;
}

.khelkshetra-welcome-text h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.2;
}

.khelkshetra-welcome-text h1 i {
  color: var(--primary-accent);
  font-size: 2.5rem;
}

.khelkshetra-welcome-text p {
  color: var(--secondary-text-color);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.khelkshetra-welcome-text p i {
  color: var(--primary-accent);
}

.khelkshetra-welcome-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.khelkshetra-welcome-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.15);
  transform: rotate(2deg);
  transition: all 0.5s ease;
}

.khelkshetra-welcome-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

.khelkshetra-shop-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background-color: var(--primary-accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(38, 109, 240, 0.2);
  margin-top: 1rem;
}

.khelkshetra-shop-button:hover {
  background-color: #1e5cd8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(38, 109, 240, 0.3);
}

.khelkshetra-shop-button i {
  font-size: 1.1rem;
}

/* Секция избранных игр */
.khelkshetra-featured-section {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.khelkshetra-featured-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  opacity: 0.2;
  z-index: 0;
}

.khelkshetra-featured-section p {
  color: var(--secondary-text-color);
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-size: 1.05rem;
  text-align: center;
}

.khelkshetra-featured-section .khelkshetra-heading-large {
  text-align: center;
}

.khelkshetra-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.khelkshetra-featured-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.khelkshetra-featured-item:nth-child(2) {
  animation-delay: 0.2s;
}

.khelkshetra-featured-item:nth-child(3) {
  animation-delay: 0.4s;
}

.khelkshetra-featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-placeholder {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.khelkshetra-featured-item:hover .khelkshetra-placeholder {
  transform: scale(1.05);
}

.khelkshetra-featured-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 1.25rem 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.khelkshetra-featured-item h3 i {
  color: var(--primary-accent);
}

.khelkshetra-featured-item p {
  color: var(--secondary-text-color);
  margin: 0 1.25rem 1.25rem;
  line-height: 1.5;
  font-size: 1rem;
  text-align: left;
}

.khelkshetra-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(38, 109, 240, 0.2);
  margin: 0 1.25rem 1.25rem;
  align-self: flex-start;
}

.khelkshetra-button:hover {
  background-color: #1e5cd8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(38, 109, 240, 0.3);
}

/* Секция категорий */
.khelkshetra-categories-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.khelkshetra-categories-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(38, 109, 240, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.khelkshetra-categories-section .khelkshetra-heading-large {
  text-align: center;
}

.khelkshetra-categories-section p {
  color: var(--secondary-text-color);
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-size: 1.05rem;
  text-align: center;
}

.khelkshetra-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.khelkshetra-category-item {
  background-color: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInCategory 0.6s ease-out forwards;
}

.khelkshetra-category-item:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-category-item:nth-child(2) {
  animation-delay: 0.2s;
}

.khelkshetra-category-item:nth-child(3) {
  animation-delay: 0.3s;
}

.khelkshetra-category-item:nth-child(4) {
  animation-delay: 0.4s;
}

.khelkshetra-category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-category-item img {
  width: 100%;
  height: 200px;
  transition: transform 0.5s ease;
}

.khelkshetra-category-item:hover img {
  transform: scale(1.05);
}

.khelkshetra-category-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.khelkshetra-category-link:hover {
  color: var(--primary-accent);
}

.khelkshetra-category-link i {
  color: var(--primary-accent);
}

.khelkshetra-category-item p {
  padding: 0 1rem 1.25rem;
  margin: 0;
  font-size: 0.95rem;
  text-align: left;
}

/* Фестивальная секция */
.khelkshetra-festive-section {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.khelkshetra-festive-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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"><polygon points="50,15 61,40 90,40 65,55 75,80 50,65 25,80 35,55 10,40 39,40" fill="%23266DF0"/></svg>');
  background-size: 200px;
  opacity: 0.1;
  z-index: 0;
}

.khelkshetra-festive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.khelkshetra-festive-content {
  display: flex;
  flex-direction: column;
  animation: fadeInLeft 0.8s ease-out;
}

.khelkshetra-festive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(38, 109, 240, 0.1);
  color: var(--primary-accent);
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.khelkshetra-festive-badge i {
  color: var(--primary-accent);
}

.khelkshetra-festive-lead {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.khelkshetra-festive-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.khelkshetra-festive-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
  line-height: 1.5;
}

@media (max-width: 425px) {
  .khelkshetra-festive-features li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.khelkshetra-festive-features li i {
  color: var(--primary-accent);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.khelkshetra-festive-description {
  color: var(--secondary-text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.khelkshetra-festive-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.khelkshetra-festive-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background-color: #FF6B6B;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.khelkshetra-festive-button:hover {
  background-color: #FF5252;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

.khelkshetra-festive-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.khelkshetra-festive-timer i {
  color: #FF6B6B;
}

.khelkshetra-festive-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1.25rem;
  height: 100%;
  animation: fadeInRight 0.8s ease-out;
}

.khelkshetra-festive-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.khelkshetra-festive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-festive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.khelkshetra-festive-card:hover img {
  transform: scale(1.05);
}

.khelkshetra-festive-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  background-color: rgba(29, 30, 32, 0.8);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.khelkshetra-festive-card-1 {
  grid-column: span 2;
}

.khelkshetra-festive-card-2 {
  grid-column: 1;
  grid-row: 2;
}

.khelkshetra-festive-card-3 {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 425px) {
  .khelkshetra-festive-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* Секция сообщества */
.khelkshetra-community-section {
  background-color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.khelkshetra-community-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 90% 10%, rgba(38, 109, 240, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.khelkshetra-community-section .khelkshetra-medium-container {
  position: relative;
  z-index: 1;
}

.khelkshetra-community-section p {
  color: var(--secondary-text-color);
  max-width: 900px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.khelkshetra-community-section p i {
  color: var(--primary-accent);
}

.khelkshetra-community-section .khelkshetra-button {
  margin-top: 1rem;
}

/* Секция каталога */
.khelkshetra-catalog-section {
  background-color: var(--bg-color);
  position: relative;
}

.khelkshetra-catalog-limiter {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.khelkshetra-catalog-section p {
  color: var(--secondary-text-color);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.khelkshetra-catalog-list {
  position: relative;
}

.khelkshetra-catalog-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.khelkshetra-catalog-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.khelkshetra-catalog-item:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-catalog-item:nth-child(2) {
  animation-delay: 0.2s;
}

.khelkshetra-catalog-item:nth-child(3) {
  animation-delay: 0.3s;
}

.khelkshetra-catalog-item:nth-child(4) {
  animation-delay: 0.4s;
}

.khelkshetra-catalog-item:nth-child(5) {
  animation-delay: 0.5s;
}

.khelkshetra-catalog-item:nth-child(6) {
  animation-delay: 0.6s;
}

.khelkshetra-catalog-item:nth-child(7) {
  animation-delay: 0.7s;
}

.khelkshetra-catalog-item:nth-child(8) {
  animation-delay: 0.8s;
}

.khelkshetra-game-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.khelkshetra-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-game-image {
  display: block;
  overflow: hidden;
}

.khelkshetra-game-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.khelkshetra-game-card:hover .khelkshetra-game-image img {
  transform: scale(1.05);
}

.khelkshetra-game-text {
  padding: 1rem;
}

.khelkshetra-game-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.khelkshetra-game-tags {
  display: flex;
  justify-content: center;
  align-items: center;
}

.khelkshetra-tag-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--primary-accent);
  font-weight: 500;
  transition: all 0.3s ease;
}

.khelkshetra-tag-order:hover {
  transform: translateX(5px);
}

.khelkshetra-divider {
  position: relative;
  height: 1px;
  background-color: rgba(85, 94, 103, 0.1);
  margin: 3rem 0;
}

.khelkshetra-divider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-color);
  padding: 0 1.5rem;
}

.khelkshetra-padding-bottom {
  padding-bottom: 2rem;
}

/* Секция событий */
.khelkshetra-events-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.khelkshetra-events-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(38, 109, 240, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.khelkshetra-events-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.khelkshetra-events-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(38, 109, 240, 0.1);
  color: var(--primary-accent);
  font-weight: 600;
  border-radius: 30px;
  margin-top: 0.5rem;
}

.khelkshetra-events-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.khelkshetra-india-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  animation: fadeInLeft 0.8s ease-out;
}

.khelkshetra-india-map img {
  width: 100%;
  height: auto;
  display: block;
}

.khelkshetra-events-upcoming {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: fadeInRight 0.8s ease-out;
}

.khelkshetra-events-list-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.khelkshetra-events-list-title i {
  color: var(--primary-accent);
}

.khelkshetra-event-item {
  display: flex;
  gap: 1rem;
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.khelkshetra-event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 0.75rem;
  background-color: var(--primary-accent);
  color: white;
  border-radius: 8px;
  text-align: center;
}

.khelkshetra-event-month {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.khelkshetra-event-day {
  font-size: 1.5rem;
  font-weight: 700;
}

.khelkshetra-event-details {
  flex: 1;
}

.khelkshetra-event-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.khelkshetra-event-details p {
  color: var(--secondary-text-color);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.khelkshetra-event-details p i {
  color: var(--primary-accent);
}

.khelkshetra-event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.khelkshetra-event-tags span {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(38, 109, 240, 0.1);
  color: var(--primary-accent);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

.khelkshetra-events-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.khelkshetra-event-feature {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--bg-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.khelkshetra-event-feature:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-event-feature:nth-child(2) {
  animation-delay: 0.3s;
}

.khelkshetra-event-feature:nth-child(3) {
  animation-delay: 0.5s;
}

.khelkshetra-event-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-event-feature i {
  font-size: 2.5rem;
  color: var(--primary-accent);
  margin-bottom: 1rem;
  display: block;
}

.khelkshetra-event-feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.khelkshetra-event-feature p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.khelkshetra-events-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.85rem 1.75rem;
  background-color: var(--primary-accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(38, 109, 240, 0.2);
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Секция отзывов */
.khelkshetra-reviews-section {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(38, 109, 240, 0.03) 0%, transparent 70%);
}

.khelkshetra-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.khelkshetra-reviews-title-container {
  flex: 1;
  min-width: 300px;
}

@media (max-width: 425px) {
  .khelkshetra-reviews-title-container {
    min-width: 0;
  }
}

.khelkshetra-reviews-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(38, 109, 240, 0.1);
  color: var(--primary-accent);
  font-weight: 600;
  border-radius: 30px;
  margin-top: 0.5rem;
}

.khelkshetra-reviews-overall {
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-width: 250px;
}

.khelkshetra-reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.khelkshetra-rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.khelkshetra-rating-stars {
  color: #FFC107;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.khelkshetra-rating-count {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
}

.khelkshetra-reviews-carousel {
  margin-bottom: 2.5rem;
}

.khelkshetra-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.khelkshetra-review-card {
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.khelkshetra-review-card:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-review-card:nth-child(2) {
  animation-delay: 0.3s;
}

.khelkshetra-review-card:nth-child(3) {
  animation-delay: 0.5s;
}

.khelkshetra-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-featured-review {
  border: 2px solid var(--primary-accent);
  position: relative;
}

.khelkshetra-featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--primary-accent);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  font-size: 0.9rem;
}

.khelkshetra-review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.khelkshetra-reviewer-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.khelkshetra-reviewer-info {
  flex: 1;
}

.khelkshetra-reviewer-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.khelkshetra-reviewer-location {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.khelkshetra-reviewer-location i {
  color: var(--primary-accent);
}

.khelkshetra-reviewer-games {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.khelkshetra-reviewer-games span {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background-color: rgba(38, 109, 240, 0.1);
  color: var(--primary-accent);
  border-radius: 4px;
  font-size: 0.8rem;
}

.khelkshetra-review-content {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.khelkshetra-review-rating {
  color: #FFC107;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.khelkshetra-review-date {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--secondary-text-color);
  text-align: right;
}

.khelkshetra-reviews-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.khelkshetra-reviews-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background-color: var(--primary-accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(38, 109, 240, 0.2);
}

.khelkshetra-reviews-button:hover {
  background-color: #1e5cd8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(38, 109, 240, 0.3);
}

.khelkshetra-review-write-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background-color: white;
  color: var(--primary-accent);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(38, 109, 240, 0.2);
}

.khelkshetra-review-write-button:hover {
  background-color: rgba(38, 109, 240, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Секция о нас */
.khelkshetra-about-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.khelkshetra-about-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}

.khelkshetra-about-story {
  animation: fadeInLeft 0.8s ease-out;
  padding: 0 20px;
}

.khelkshetra-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(38, 109, 240, 0.1);
  color: var(--primary-accent);
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.khelkshetra-heading-about {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.khelkshetra-heading-about i {
  color: var(--primary-accent);
}

.khelkshetra-about-quote {
  background-color: var(--bg-color);
  border-left: 4px solid var(--primary-accent);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 12px 12px 0;
}

.khelkshetra-about-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.khelkshetra-about-quote cite {
  font-size: 0.95rem;
  color: var(--secondary-text-color);
  font-style: normal;
}

.khelkshetra-about-milestones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.khelkshetra-milestone {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.khelkshetra-milestone-year {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-accent);
}

.khelkshetra-milestone p {
  color: var(--secondary-text-color);
  line-height: 1.5;
}

.khelkshetra-about-impact {
  margin-bottom: 2rem;
}

.khelkshetra-about-impact h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.khelkshetra-about-impact h3 i {
  color: var(--primary-accent);
}

.khelkshetra-about-impact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.khelkshetra-about-impact li {
  color: var(--secondary-text-color);
  line-height: 1.5;
}

.khelkshetra-about-impact li strong {
  color: var(--text-color);
}

.khelkshetra-about-team {
  margin-bottom: 2rem;
}

.khelkshetra-about-team h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.khelkshetra-about-team h3 i {
  color: var(--primary-accent);
}

.khelkshetra-about-team p {
  color: var(--secondary-text-color);
  line-height: 1.6;
}

.khelkshetra-about-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background-color: var(--primary-accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(38, 109, 240, 0.2);
}

.khelkshetra-about-button:hover {
  background-color: #1e5cd8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(38, 109, 240, 0.3);
}

.khelkshetra-about-visuals {
  animation: fadeInRight 0.8s ease-out;
}

.khelkshetra-about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.khelkshetra-about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.khelkshetra-about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.khelkshetra-about-image:hover img {
  transform: scale(1.05);
}

.khelkshetra-about-image span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  background-color: rgba(29, 30, 32, 0.8);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
}

.khelkshetra-about-stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.khelkshetra-about-stat {
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.khelkshetra-about-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.khelkshetra-stat-label {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

/* Секция обучения */
.khelkshetra-tutorials-section {
  background-color: var(--bg-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.khelkshetra-tutorials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 90% 10%, rgba(38, 109, 240, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.khelkshetra-tutorials-section .khelkshetra-medium-container {
  position: relative;
  z-index: 1;
}

.khelkshetra-tutorials-section p {
  color: var(--secondary-text-color);
  max-width: 900px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.khelkshetra-tutorials-section p i {
  color: var(--primary-accent);
}

.khelkshetra-tutorials-section .khelkshetra-button {
  margin-top: 1rem;
}

/* Секция поддержки */
.khelkshetra-support-section {
  background-color: white;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(38, 109, 240, 0.03) 0%, transparent 70%);
}

.khelkshetra-support-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

.khelkshetra-support-info {
  animation: fadeInLeft 0.8s ease-out;
}

.khelkshetra-heading-support {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.3;
}

.khelkshetra-heading-support i {
  color: var(--primary-accent);
}

.khelkshetra-support-accent {
  color: var(--primary-accent);
}

.khelkshetra-support-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.khelkshetra-stat-item {
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.khelkshetra-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.khelkshetra-stat-label {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
  line-height: 1.4;
}

.khelkshetra-support-channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.khelkshetra-channel-item {
  display: flex;
  gap: 1.25rem;
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.khelkshetra-channel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(38, 109, 240, 0.1);
}

.khelkshetra-channel-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-accent);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
}

.khelkshetra-channel-details {
  flex: 1;
}

.khelkshetra-channel-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.khelkshetra-channel-details p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.khelkshetra-regional-support {
  margin-bottom: 2rem;
}

.khelkshetra-regional-support h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.khelkshetra-regional-support h4 i {
  color: var(--primary-accent);
}

.khelkshetra-regional-support p {
  color: var(--secondary-text-color);
  line-height: 1.6;
}

.khelkshetra-support-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background-color: var(--primary-accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(38, 109, 240, 0.2);
}

.khelkshetra-support-button:hover {
  background-color: #1e5cd8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(38, 109, 240, 0.3);
}

.khelkshetra-support-resources {
  animation: fadeInRight 0.8s ease-out;
}

.khelkshetra-support-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.khelkshetra-faq-card {
  padding: .5rem .5rem 2.5rem;
}

.khelkshetra-faq-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.khelkshetra-faq-card h3 i {
  color: var(--primary-accent);
}

.khelkshetra-faq-card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.khelkshetra-faq-card li {
  border-bottom: 1px solid rgba(85, 94, 103, 0.1);
  padding-bottom: 1rem;
}

.khelkshetra-faq-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.khelkshetra-faq-question {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0;
  font-weight: 600;
  color: var(--text-color);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.khelkshetra-faq-question:hover {
  color: var(--primary-accent);
}

.khelkshetra-faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--primary-accent);
}

.khelkshetra-faq-answer {
  padding: 0.75rem 0 0.25rem;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Анимации */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInCategory {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивные стили */
@media (max-width: 1200px) {
  .khelkshetra-reviews-header {
    flex-direction: column;
    align-items: center;
  }

  .khelkshetra-reviews-title-container {
    text-align: center;
  }

  .khelkshetra-reviews-overall {
    width: 100%;
    max-width: 400px;
  }

  .khelkshetra-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .khelkshetra-catalog-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .khelkshetra-events-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .khelkshetra-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 990px) {
  .khelkshetra-global-padding {
    padding: 0 1.5rem;
  }

  .khelkshetra-section-large {
    padding: 4rem 0;
  }

  .khelkshetra-section-medium {
    padding: 3rem 0;
  }

  .khelkshetra-welcome-grid {
    grid-template-columns: 1fr;
  }

  .khelkshetra-welcome-text h1 {
    font-size: 2.25rem;
  }

  .khelkshetra-welcome-text h1 i {
    font-size: 2rem;
  }

  .khelkshetra-welcome-image {
    display: none;
  }

  .khelkshetra-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .khelkshetra-festive-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .khelkshetra-festive-showcase {
    max-width: 600px;
    margin: 0 auto;
  }

  .khelkshetra-catalog-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .khelkshetra-events-map-container {
    grid-template-columns: 1fr;
  }

  .khelkshetra-events-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .khelkshetra-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .khelkshetra-about-container {
    grid-template-columns: 1fr;
  }

  .khelkshetra-about-visuals {
    max-width: 600px;
    margin: 0 auto;
  }

  .khelkshetra-support-container {
    grid-template-columns: 1fr;
  }

  .khelkshetra-support-resources {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .khelkshetra-global-padding {
    padding: 0 1rem;
  }

  .khelkshetra-section-large {
    padding: 3.5rem 0;
  }

  .khelkshetra-section-medium {
    padding: 2.5rem 0;
  }

  .khelkshetra-heading-large {
    font-size: 2rem;
  }

  .khelkshetra-heading-large i {
    font-size: 1.8rem;
  }

  .khelkshetra-welcome-text h1 {
    font-size: 2rem;
  }

  .khelkshetra-welcome-text h1 i {
    font-size: 1.8rem;
  }

  .khelkshetra-featured-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-categories-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-events-features {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 2rem;
  }

  .khelkshetra-heading-about {
    font-size: 2rem;
  }

  .khelkshetra-heading-about i {
    font-size: 1.8rem;
  }

  .khelkshetra-about-milestones {
    grid-template-columns: 1fr;
  }

  .khelkshetra-about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .khelkshetra-about-stats-container {
    grid-template-columns: 1fr;
  }

  .khelkshetra-heading-support {
    font-size: 2rem;
  }

  .khelkshetra-heading-support i {
    font-size: 1.8rem;
  }

  .khelkshetra-support-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .khelkshetra-catalog-items {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .khelkshetra-featured-item h3 {
    font-size: 1.2rem;
  }

  .khelkshetra-featured-item h3 i {
    font-size: 1.1rem;
  }

  .khelkshetra-event-date {
    min-width: 60px;
    padding: 0.5rem;
  }

  .khelkshetra-event-day {
    font-size: 1.2rem;
  }

  .khelkshetra-event-details h4 {
    font-size: 1.1rem;
  }

  .khelkshetra-channel-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .khelkshetra-channel-icon {
    margin-bottom: 1rem;
  }

  .khelkshetra-reviews-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .khelkshetra-reviews-button,
  .khelkshetra-review-write-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .khelkshetra-welcome-text h1 {
    font-size: 1.75rem;
  }

  .khelkshetra-welcome-text h1 i {
    font-size: 1.6rem;
  }

  .khelkshetra-heading-large {
    font-size: 1.75rem;
  }

  .khelkshetra-heading-large i {
    font-size: 1.6rem;
  }

  .khelkshetra-heading-about {
    font-size: 1.75rem;
  }

  .khelkshetra-heading-about i {
    font-size: 1.6rem;
  }

  .khelkshetra-heading-support {
    font-size: 1.75rem;
  }

  .khelkshetra-heading-support i {
    font-size: 1.6rem;
  }
}

.khelkshetra-game-price {
  color: var(--primary-accent);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
  display: block;
}

.khelkshetra-community-section .khelkshetra-heading-large,
.khelkshetra-catalog-section .khelkshetra-heading-large,
.khelkshetra-events-section .khelkshetra-heading-large,
.khelkshetra-tutorials-section .khelkshetra-heading-large {
  justify-content: center;
  text-align: center;
}