/* Общие стили для страницы редких игр */
.khelkshetra-global-padding {
  padding: 0 2rem;
}

.khelkshetra-section-large {
  padding: 5rem 0;
}

.khelkshetra-section-medium {
  padding: 4rem 0;
}

.khelkshetra-medium-container {
  max-width: 1200px;
  margin: 0 auto;
}

.khelkshetra-large-container {
  max-width: 1200px;
  margin: 0 auto;
}

.khelkshetra-heading-large {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.khelkshetra-heading-large i {
  color: var(--primary-accent);
}

/* Секция приветствия */
.khelkshetra-rare-welcome-section {
  position: relative;
  overflow: hidden;
  background-color: white;
  background-image: linear-gradient(135deg, rgba(38, 109, 240, 0.05) 0%, transparent 70%);
}

.khelkshetra-rare-welcome-section::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  z-index: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(38, 109, 240, 0.03);
}

.khelkshetra-rare-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 3rem;
}

.khelkshetra-rare-text {
  position: relative;
  z-index: 1;
  animation: fadeInLeft 0.8s ease-out;
}

.khelkshetra-rare-text h1 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: 2.8rem;
}

.khelkshetra-rare-text h1 i {
  color: #9c27b0;
}

.khelkshetra-rare-text p {
  margin-bottom: 1.25rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-rare-text p i {
  color: var(--primary-accent);
}

.khelkshetra-rare-text p:first-of-type {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 1.2rem;
}

.khelkshetra-rare-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  border-radius: 8px;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
  color: white;
  font-weight: 600;
  background-color: #9c27b0;
  transition: all 0.3s ease;
}

.khelkshetra-rare-button:hover {
  box-shadow: 0 6px 16px rgba(156, 39, 176, 0.4);
  background-color: #7b1fa2;
  transform: translateY(-3px);
}

.khelkshetra-rare-button i {
  font-size: 1.1rem;
}

.khelkshetra-rare-image {
  position: relative;
  z-index: 1;
  animation: fadeInRight 0.8s ease-out;
}

.khelkshetra-rare-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  transform: rotate(3deg);
}

.khelkshetra-rare-image img:hover {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.2);
  transform: rotate(0deg) scale(1.02);
}

/* Секция избранных редких игр */
.khelkshetra-featured-rare-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

.khelkshetra-featured-rare-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  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"><rect x="30" y="20" width="40" height="60" rx="5" fill="%239c27b0"/></svg>');
  background-size: 300px;
}

.khelkshetra-featured-rare-section p {
  max-width: 900px;
  margin: 0 auto 2rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
}

.khelkshetra-featured-rare-section .khelkshetra-heading-large {
  justify-content: center;
  text-align: center;
}

.khelkshetra-featured-rare-section .khelkshetra-heading-large i {
  color: #9c27b0;
}

.khelkshetra-featured-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.khelkshetra-featured-item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  overflow: hidden;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.khelkshetra-featured-item:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-featured-item:nth-child(2) {
  animation-delay: 0.3s;
}

.khelkshetra-featured-item:nth-child(3) {
  animation-delay: 0.5s;
}

.khelkshetra-featured-item:hover {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15);
  transform: translateY(-5px);
}

.khelkshetra-placeholder-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.khelkshetra-featured-item:hover .khelkshetra-placeholder-img {
  transform: scale(1.05);
}

.khelkshetra-featured-item h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.25rem 1.25rem 0.75rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.khelkshetra-featured-item h3 i {
  color: #9c27b0;
}

.khelkshetra-featured-item p {
  margin: 0 1.25rem 1.25rem;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

.khelkshetra-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin: 0 1.25rem 1.25rem;
  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-rare-categories-section {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.khelkshetra-rare-categories-section::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(156, 39, 176, 0.05);
}

.khelkshetra-rare-categories-section .khelkshetra-heading-large {
  justify-content: center;
  text-align: center;
}

.khelkshetra-rare-categories-section .khelkshetra-heading-large i {
  color: #9c27b0;
}

.khelkshetra-rare-categories-section p {
  max-width: 900px;
  margin: 0 auto 2rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
}

.khelkshetra-categories-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.khelkshetra-category-item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  overflow: hidden;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
  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 {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15);
  transform: translateY(-5px);
}

.khelkshetra-category-item img {
  width: 100%;
  height: auto;
  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;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.khelkshetra-category-link:hover {
  color: #9c27b0;
}

.khelkshetra-category-link i {
  color: #9c27b0;
}

.khelkshetra-category-item p {
  margin: 0;
  padding: 0 1rem 1.25rem;
  font-size: 0.95rem;
  text-align: left;
}

/* Секция каталога редких игр */
.khelkshetra-rare-catalog-section {
  position: relative;
  background-color: var(--bg-color);
}

.khelkshetra-catalog-limiter {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.khelkshetra-rare-catalog-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-rare-catalog-section .khelkshetra-heading-large i {
  color: #9c27b0;
}

.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 {
  display: flex;
  flex-direction: column;
  height: 100%;
  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-game-card:hover {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15);
  transform: translateY(-5px);
}

.khelkshetra-game-image {
  position: relative;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
}

.khelkshetra-game-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.khelkshetra-game-card:hover .khelkshetra-game-image img {
  transform: scale(1.05);
}

.khelkshetra-game-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem;
}

.khelkshetra-game-title {
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.khelkshetra-game-link:hover .khelkshetra-game-title {
  color: #9c27b0;
}

.khelkshetra-game-tags {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.khelkshetra-tag-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 30px;
  padding: 0.35rem 0.75rem;
  color: var(--secondary-text-color);
  font-size: 0.85rem;
  background-color: rgba(156, 39, 176, 0.1);
  transition: all 0.3s ease;
}

.khelkshetra-tag-category:hover {
  color: #9c27b0;
  background-color: rgba(156, 39, 176, 0.2);
}

.khelkshetra-tag-category i {
  color: #9c27b0;
}

.khelkshetra-tag-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9c27b0;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.khelkshetra-tag-order:hover {
  transform: translateX(5px);
}

.khelkshetra-divider {
  position: relative;
  height: 1px;
  margin: 3rem 0;
  background-color: rgba(85, 94, 103, 0.1);
}

.khelkshetra-divider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 1.5rem;
  background-color: var(--bg-color);
  transform: translate(-50%, -50%);
}

.khelkshetra-padding-bottom {
  padding-bottom: 2rem;
}

/* Фестивальная секция */
.khelkshetra-festive-section {
  position: relative;
  overflow: hidden;
  background-color: white;
  background-image: linear-gradient(45deg, rgba(156, 39, 176, 0.05) 0%, transparent 70%);
}

.khelkshetra-festive-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  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"><path d="M50 15 L90 85 L10 85 Z" fill="%239c27b0"/></svg>');
  background-size: 200px;
}

.khelkshetra-festive-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 3rem;
}

.khelkshetra-festive-content {
  animation: fadeInLeft 0.8s ease-out;
}

.khelkshetra-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  color: #9c27b0;
  font-weight: 600;
  background-color: rgba(156, 39, 176, 0.1);
}

.khelkshetra-festive-section .khelkshetra-heading-large i {
  color: #9c27b0;
}

.khelkshetra-festive-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.khelkshetra-festive-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.khelkshetra-festive-feature i {
  margin-top: 0.25rem;
  color: #9c27b0;
  font-size: 1.5rem;
}

.khelkshetra-festive-feature h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.khelkshetra-festive-feature p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.khelkshetra-cta-container {
  margin-top: 2rem;
}

.khelkshetra-cta-button {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
  color: white;
  font-weight: 600;
  background-color: #9c27b0;
  transition: all 0.3s ease;
}

.khelkshetra-cta-button:hover {
  box-shadow: 0 6px 16px rgba(156, 39, 176, 0.4);
  background-color: #7b1fa2;
  transform: translateY(-3px);
}

.khelkshetra-cta-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
}

.khelkshetra-cta-note i {
  color: #9c27b0;
}

.khelkshetra-festive-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

.khelkshetra-festive-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  transform: rotate(-3deg);
}

.khelkshetra-festive-image:hover img {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.2);
  transform: rotate(0deg) scale(1.02);
}

.khelkshetra-festive-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: #9c27b0;
}

/* Секция сообщества */
.khelkshetra-community-section {
  position: relative;
  overflow: hidden;
  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(156, 39, 176, 0.05) 0%, transparent 70%);
}

.khelkshetra-hub-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.khelkshetra-community-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 3rem;
}

.khelkshetra-community-content {
  animation: fadeInLeft 0.8s ease-out;
}

.khelkshetra-community-section .khelkshetra-heading-large i {
  color: #9c27b0;
}

.khelkshetra-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.khelkshetra-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 30px;
  padding: 0.4rem 0.9rem;
  color: #9c27b0;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: rgba(156, 39, 176, 0.1);
}

.khelkshetra-lead-text {
  margin-bottom: 1.25rem;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;
}

.khelkshetra-community-content p {
  margin-bottom: 2rem;
  color: var(--secondary-text-color);
  line-height: 1.6;
}

.khelkshetra-community-content p i {
  color: #9c27b0;
}

.khelkshetra-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.khelkshetra-primary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
  color: white;
  font-weight: 600;
  background-color: #9c27b0;
  transition: all 0.3s ease;
}

.khelkshetra-primary-button:hover {
  box-shadow: 0 6px 16px rgba(156, 39, 176, 0.4);
  background-color: #7b1fa2;
  transform: translateY(-3px);
}

.khelkshetra-outline-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(156, 39, 176, 0.3);
  border-radius: 8px;
  padding: 0.85rem 1.75rem;
  color: #9c27b0;
  font-weight: 600;
  background-color: transparent;
  transition: all 0.3s ease;
}

.khelkshetra-outline-button:hover {
  box-shadow: 0 6px 16px rgba(156, 39, 176, 0.1);
  background-color: rgba(156, 39, 176, 0.05);
  transform: translateY(-3px);
}

.khelkshetra-community-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

.khelkshetra-image-stack {
  position: relative;
  height: 300px;
}

.khelkshetra-image-card {
  position: absolute;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
}

.khelkshetra-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.khelkshetra-image-card-front {
  top: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-5deg);
}

.khelkshetra-image-card-front:hover {
  z-index: 3;
  transform: rotate(0deg) scale(1.05);
}

.khelkshetra-image-card-back {
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: rotate(5deg);
}

.khelkshetra-image-card-back:hover {
  z-index: 3;
  transform: rotate(0deg) scale(1.05);
}

/* Секция сохранения коллекции */
.khelkshetra-preservation-section {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.khelkshetra-preservation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  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"><rect x="25" y="25" width="50" height="50" rx="8" fill="%239c27b0"/></svg>');
  background-size: 250px;
}

.khelkshetra-preservation-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.khelkshetra-preservation-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #9c27b0;
  font-size: 2.5rem;
  background-color: rgba(156, 39, 176, 0.1);
}

.khelkshetra-preservation-title {
  flex: 1;
}

.khelkshetra-preservation-title .khelkshetra-heading-large {
  justify-content: center;
  margin-bottom: 0.5rem;
  text-align: center;
}

.khelkshetra-preservation-title .khelkshetra-heading-large i {
  color: #9c27b0;
}

.khelkshetra-preservation-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-text-color);
  font-weight: 500;
  font-size: 1.1rem;
}

.khelkshetra-preservation-subtitle i {
  color: #9c27b0;
}

.khelkshetra-preservation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.khelkshetra-preservation-card {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  overflow: hidden;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.khelkshetra-preservation-card:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-preservation-card:nth-child(2) {
  animation-delay: 0.3s;
}

.khelkshetra-preservation-card:nth-child(3) {
  animation-delay: 0.5s;
}

.khelkshetra-preservation-card:hover {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15);
  transform: translateY(-5px);
}

.khelkshetra-preservation-card-image {
  overflow: hidden;
}

.khelkshetra-preservation-card-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.khelkshetra-preservation-card:hover .khelkshetra-preservation-card-image img {
  transform: scale(1.05);
}

.khelkshetra-preservation-card-content {
  padding: 1.5rem;
}

.khelkshetra-preservation-card-content h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.khelkshetra-preservation-card-content h3 i {
  color: #9c27b0;
}

.khelkshetra-preservation-card-content p {
  margin-bottom: 1.25rem;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.khelkshetra-preservation-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9c27b0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.khelkshetra-preservation-link:hover {
  transform: translateX(5px);
}

.khelkshetra-preservation-workshop {
  position: relative;
  z-index: 1;
  border-radius: 0 12px 12px 0;
  border-left: 4px solid #9c27b0;
  padding: 1.5rem;
  background-color: rgba(156, 39, 176, 0.05);
}

.khelkshetra-workshop-date {
  display: inline-block;
  margin-bottom: 1rem;
  border-radius: 30px;
  padding: 0.35rem 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: #9c27b0;
}

.khelkshetra-preservation-workshop h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.khelkshetra-preservation-workshop h3 i {
  color: #9c27b0;
}

.khelkshetra-preservation-workshop p {
  margin-bottom: 1.25rem;
  color: var(--secondary-text-color);
  line-height: 1.6;
}

.khelkshetra-workshop-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
  color: white;
  font-weight: 600;
  background-color: #9c27b0;
  transition: all 0.3s ease;
}

.khelkshetra-workshop-button:hover {
  box-shadow: 0 6px 16px rgba(156, 39, 176, 0.4);
  background-color: #7b1fa2;
  transform: translateY(-3px);
}

/* Секция событий */
.khelkshetra-events-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

.khelkshetra-events-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(156, 39, 176, 0.03);
}

.khelkshetra-events-section .khelkshetra-heading-large {
  justify-content: center;
  text-align: center;
}

.khelkshetra-events-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.khelkshetra-events-header {
  margin-bottom: 3rem;
  text-align: center;
}

.khelkshetra-events-header .khelkshetra-heading-large i {
  color: #9c27b0;
}

.khelkshetra-events-header p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
}

.khelkshetra-events-header p i {
  color: #9c27b0;
}

.khelkshetra-events-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.khelkshetra-event-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.khelkshetra-event-card:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-event-card:nth-child(2) {
  animation-delay: 0.3s;
}

.khelkshetra-event-card:nth-child(3) {
  animation-delay: 0.5s;
}

.khelkshetra-event-card:hover {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15);
  transform: translateY(-5px);
}

.khelkshetra-event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  height: 80px;
  border-radius: 8px;
  padding: 0.75rem;
  color: white;
  text-align: center;
  background-color: #9c27b0;
}

.khelkshetra-event-month {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.khelkshetra-event-day {
  font-weight: 700;
  font-size: 1.5rem;
}

.khelkshetra-event-content {
  flex: 1;
}

.khelkshetra-event-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.khelkshetra-event-location i {
  color: #9c27b0;
}

.khelkshetra-event-title {
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.khelkshetra-event-description {
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.khelkshetra-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.khelkshetra-event-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.khelkshetra-event-meta span i {
  color: #9c27b0;
}

.khelkshetra-event-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.khelkshetra-event-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
  color: white;
  font-weight: 600;
  background-color: #9c27b0;
  transition: all 0.3s ease;
}

.khelkshetra-event-button:hover {
  box-shadow: 0 6px 16px rgba(156, 39, 176, 0.4);
  background-color: #7b1fa2;
  transform: translateY(-3px);
}

.khelkshetra-events-map {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
}

.khelkshetra-map-placeholder img {
  display: block;
  width: 100%;
  height: auto;
}

.khelkshetra-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 2rem;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.khelkshetra-map-overlay p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
}

.khelkshetra-map-overlay p i {
  color: white;
}

.khelkshetra-map-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #9c27b0;
  font-weight: 600;
  background-color: white;
  transition: all 0.3s ease;
}

.khelkshetra-map-button:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background-color: #f3f4f5;
  transform: translateY(-3px);
}

/* Секция FAQ */
.khelkshetra-faq-section {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.khelkshetra-faq-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  z-index: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(156, 39, 176, 0.05);
}

.khelkshetra-faq-section .khelkshetra-medium-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.khelkshetra-faq-section .khelkshetra-heading-large {
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}

.khelkshetra-faq-section .khelkshetra-heading-large i {
  color: #9c27b0;
}

.khelkshetra-faq-content {
  margin-bottom: 3rem;
}

.khelkshetra-faq-item {
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  overflow: hidden;
  text-align: left;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.khelkshetra-faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.khelkshetra-faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.khelkshetra-faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.khelkshetra-faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

.khelkshetra-faq-item:hover {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15);
  transform: translateY(-5px);
}

.khelkshetra-faq-question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
}

.khelkshetra-faq-question i {
  color: #9c27b0;
}

.khelkshetra-faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.khelkshetra-faq-answer p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.khelkshetra-faq-section .khelkshetra-button {
  display: inline-flex;
  margin: 0 auto;
}

/* Секция поддержки */
.khelkshetra-support-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

.khelkshetra-support-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(156, 39, 176, 0.03) 0%, transparent 70%);
}

.khelkshetra-support-section .khelkshetra-medium-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.khelkshetra-support-section .khelkshetra-heading-large {
  justify-content: center;
  margin-bottom: 1rem;
  text-align: center;
}

.khelkshetra-support-section .khelkshetra-heading-large i {
  color: #9c27b0;
}

.khelkshetra-support-section p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-support-section p i {
  color: #9c27b0;
}

.khelkshetra-support-contact {
  max-width: 800px;
  margin: 3rem auto;
}

.khelkshetra-contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.khelkshetra-contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
  border-radius: 12px;
  padding: 1.25rem 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.khelkshetra-contact-method:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-contact-method:nth-child(2) {
  animation-delay: 0.3s;
}

.khelkshetra-contact-method:nth-child(3) {
  animation-delay: 0.5s;
}

.khelkshetra-contact-method:hover {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15);
  transform: translateY(-5px);
}

.khelkshetra-contact-method i {
  color: #9c27b0;
  font-size: 1.25rem;
}

.khelkshetra-contact-method span {
  color: var(--text-color);
  font-weight: 500;
}

.khelkshetra-support-section .khelkshetra-button {
  display: inline-flex;
  margin: 0 auto;
}

.khelkshetra-support-section .khelkshetra-button i {
  color: white;
}

/* Секция историй коллекционеров */
.khelkshetra-collector-stories-section {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.khelkshetra-collector-stories-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(156, 39, 176, 0.05) 0%, transparent 70%);
}

.khelkshetra-collector-stories-section .khelkshetra-medium-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.khelkshetra-collector-stories-section .khelkshetra-heading-large {
  justify-content: center;
  margin-bottom: 1rem;
  text-align: center;
}

.khelkshetra-collector-stories-section .khelkshetra-heading-large i {
  color: #9c27b0;
}

.khelkshetra-collector-stories-section p {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.khelkshetra-collector-stories-section p i {
  color: #9c27b0;
}

.khelkshetra-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.khelkshetra-story-card {
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  text-align: center;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.khelkshetra-story-card:nth-child(1) {
  animation-delay: 0.1s;
}

.khelkshetra-story-card:nth-child(2) {
  animation-delay: 0.3s;
}

.khelkshetra-story-card:nth-child(3) {
  animation-delay: 0.5s;
}

.khelkshetra-story-card:hover {
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15);
  transform: translateY(-5px);
}

.khelkshetra-story-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border: 3px solid white;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.khelkshetra-story-card h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.khelkshetra-story-card h3 i {
  color: #9c27b0;
}

.khelkshetra-story-card p {
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.khelkshetra-story-card blockquote {
  position: relative;
  padding: 0 1rem;
  color: var(--text-color);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.khelkshetra-story-card blockquote::before,
.khelkshetra-story-card blockquote::after {
  content: '"';
  color: #9c27b0;
  font-weight: 700;
  font-size: 1.5rem;
}

.khelkshetra-collector-stories-section .khelkshetra-button {
  display: inline-flex;
  margin: 0 auto;
}

.khelkshetra-collector-stories-section .khelkshetra-button i {
  color: white;
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInCategory {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивные стили */
@media (max-width: 1200px) {
  .khelkshetra-rare-grid {
    grid-template-columns: 1fr 1fr;
  }

  .khelkshetra-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .khelkshetra-catalog-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .khelkshetra-festive-split {
    grid-template-columns: 1fr 1fr;
  }

  .khelkshetra-community-grid {
    grid-template-columns: 1fr 1fr;
  }

  .khelkshetra-preservation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .khelkshetra-preservation-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-events-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .khelkshetra-event-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .khelkshetra-story-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .khelkshetra-global-padding {
    padding: 0 1.5rem;
  }

  .khelkshetra-section-large {
    padding: 4rem 0;
  }

  .khelkshetra-section-medium {
    padding: 3rem 0;
  }

  .khelkshetra-rare-text h1 {
    font-size: 2.5rem;
  }

  .khelkshetra-heading-large {
    font-size: 2rem;
  }

  .khelkshetra-catalog-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .khelkshetra-event-card {
    flex-direction: column;
  }

  .khelkshetra-event-date {
    width: 80px;
    margin: 0 auto 1rem;
  }

  .khelkshetra-event-action {
    justify-content: center;
    margin-top: 1rem;
  }

  .khelkshetra-preservation-header {
    flex-direction: column;
    text-align: center;
  }

  .khelkshetra-preservation-icon {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .khelkshetra-rare-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .khelkshetra-rare-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-featured-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-festive-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .khelkshetra-festive-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-community-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .khelkshetra-community-image {
    max-width: 500px;
    height: 300px;
    margin: 0 auto;
  }

  .khelkshetra-preservation-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-preservation-card:last-child {
    grid-column: span 1;
  }

  .khelkshetra-events-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-event-card:last-child {
    grid-column: span 1;
  }

  .khelkshetra-map-overlay {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
  }

  .khelkshetra-stories-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .khelkshetra-story-card:last-child {
    grid-column: span 1;
  }

  .khelkshetra-contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .khelkshetra-contact-method {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .khelkshetra-global-padding {
    padding: 0 1rem;
  }

  .khelkshetra-section-large {
    padding: 3rem 0;
  }

  .khelkshetra-section-medium {
    padding: 2.5rem 0;
  }

  .khelkshetra-rare-text h1 {
    gap: 0.5rem;
    font-size: 2rem;
  }

  .khelkshetra-heading-large {
    font-size: 1.8rem;
  }

  .khelkshetra-categories-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .khelkshetra-catalog-items {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .khelkshetra-festive-feature {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  .khelkshetra-action-row {
    flex-direction: column;
    width: 100%;
  }

  .khelkshetra-primary-button,
  .khelkshetra-outline-button {
    justify-content: center;
    width: 100%;
  }

  .khelkshetra-workshop-button {
    justify-content: center;
    width: 100%;
  }

  .khelkshetra-event-button {
    justify-content: center;
    width: 100%;
  }

  .khelkshetra-map-button {
    justify-content: center;
    width: 100%;
  }

  .khelkshetra-faq-question {
    padding: 1rem;
    font-size: 1.1rem;
  }

  .khelkshetra-faq-answer {
    padding: 0 1rem 1rem;
  }

  .khelkshetra-contact-method {
    padding: 1rem;
  }
}

/* Для очень маленьких экранов */
@media (max-width: 375px) {
  .khelkshetra-rare-text h1 {
    font-size: 1.8rem;
  }

  .khelkshetra-heading-large {
    font-size: 1.6rem;
  }

  .khelkshetra-badge-row {
    justify-content: center;
  }

  .khelkshetra-preservation-workshop {
    padding: 1.25rem;
  }

  .khelkshetra-workshop-date {
    font-size: 0.8rem;
  }

  .khelkshetra-preservation-workshop h3 {
    font-size: 1.2rem;
  }
}

.khelkshetra-rare-catalog-section .khelkshetra-heading-large {
  justify-content: center;
  text-align: center;
}