﻿.RRCatalogMain {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

section {
  width: 100%;
  padding: 60px 20px;
}

section:nth-child(odd) {
  background-color: var(--bg-color);
}

section:nth-child(even) {
  background-color: rgba(33, 40, 6, 0.05);
}

[class$="Container"] {
  max-width: 1200px;
  margin: 0 auto;
}

[class$="Title"] {
  margin-bottom: 40px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

[class$="Title"] i {
  margin-right: 10px;
  color: var(--accent-color);
}

[class$="Desc"] {
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

[class$="Desc"] i {
  margin-right: 8px;
  color: var(--accent-color);
}


.RRCatalogGameCard {
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRCatalogGameCard:hover {
  box-shadow: 0 15px 35px rgba(33, 40, 6, 0.15);
  transform: translateY(-10px) !important;
}

.RRCatalogGameImg {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.RRCatalogGameCard h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 22px;
}

.RRCatalogGameCard h3 i {
  margin-right: 8px;
}

.RRCatalogGameDetails {
  margin-bottom: 16px;
}

.RRCatalogGameDetails li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 15px;
}

.RRCatalogGameDetails li i {
  min-width: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.RRCatalogGameCard p {
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}


.RRCatalogIntroSection {
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--bg-color), rgba(33, 40, 6, 0.05));
}

.RRCatalogIntroTitle {
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 1.2;
}

.RRCatalogIntroText {
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.RRCatalogIntroBenefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.RRCatalogIntroBenefits li {
  border-radius: 30px;
  padding: 12px 20px;
  box-shadow: 0 10px 20px rgba(33, 40, 6, 0.1);
  color: var(--secondary-text-color);
  font-size: 16px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRCatalogIntroBenefits li:hover {
  box-shadow: 0 15px 25px rgba(33, 40, 6, 0.15);
  transform: translateY(-5px) !important;
}

.RRCatalogIntroBenefits li i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRCatalogIntroFacts {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: #fff;
}

.RRCatalogIntroFactsTitle {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.RRCatalogIntroFacts ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}

.RRCatalogIntroFacts ul li i {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--accent-color);
}

.RRCatalogIntroQuote {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 24px;
  color: var(--bg-color);
  font-size: 20px;
  font-style: italic;
  text-align: center;
  background-color: var(--accent-color);
}

.RRCatalogIntroQuote i {
  margin: 0 8px;
  color: rgba(245, 238, 230, 0.7);
}


.RRCatalogFamilySection {
  background-color: rgba(33, 40, 6, 0.05);
}

.RRCatalogFamilyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRCatalogFamilyTips {
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: var(--bg-color);
}

.RRCatalogFamilyTips h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRCatalogFamilyTips h3 i {
  margin-right: 8px;
}

.RRCatalogFamilyTips ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}

.RRCatalogFamilyTips ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.RRCatalogFamilyTestimonial {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  color: var(--secondary-text-color);
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: #fff;
}

.RRCatalogFamilyTestimonial i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 20px;
}


.RRCatalogStrategySection {
  background-color: var(--bg-color);
}

.RRCatalogStrategyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRCatalogStrategySection .RRCatalogGameCard {
  border-left: 4px solid var(--accent-color);
}

.RRCatalogStrategyAdvice {
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 24px;
  background-color: rgba(33, 40, 6, 0.05);
}

.RRCatalogStrategyAdvice h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRCatalogStrategyAdvice h3 i {
  margin-right: 8px;
}

.RRCatalogStrategyAdvice ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.RRCatalogStrategyAdvice ul li {
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}

.RRCatalogStrategyStory {
  border-radius: 12px;
  padding: 20px;
  color: var(--bg-color);
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: var(--accent-color);
}

.RRCatalogStrategyStory i {
  margin-right: 10px;
  font-size: 20px;
}


.RRCatalogPartySection {
  background-color: rgba(33, 40, 6, 0.05);
}

.RRCatalogPartyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRCatalogPartySection .RRCatalogGameCard {
  border-top: 4px solid #d35400;
  background: linear-gradient(to bottom, rgba(211, 84, 0, 0.05), #fff);
}

.RRCatalogPartyIdeas {
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: var(--bg-color);
}

.RRCatalogPartyIdeas h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRCatalogPartyIdeas h3 i {
  margin-right: 8px;
  color: #d35400;
}

.RRCatalogPartyIdeas ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}

.RRCatalogPartyIdeas ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d35400;
}

.RRCatalogPartyReview {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  color: var(--secondary-text-color);
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: #fff;
}

.RRCatalogPartyReview i {
  margin-right: 10px;
  color: gold;
  font-size: 20px;
}


.RRCatalogKidsSection {
  background-color: var(--bg-color);
}

.RRCatalogKidsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRCatalogKidsSection .RRCatalogGameCard {
  border: 2px dashed rgba(33, 40, 6, 0.2);
  border-radius: 20px;
  background: linear-gradient(to bottom, #fff, rgba(33, 40, 6, 0.03));
}

.RRCatalogKidsBenefits {
  margin-bottom: 30px;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: #fff;
}

.RRCatalogKidsBenefits h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.RRCatalogKidsBenefits h3 i {
  margin-right: 8px;
  color: #4CAF50;
}

.RRCatalogKidsBenefits ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.RRCatalogKidsBenefits ul li {
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.RRCatalogKidsParentTip {
  border-radius: 20px;
  padding: 20px;
  color: var(--secondary-text-color);
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: rgba(76, 175, 80, 0.1);
}

.RRCatalogKidsParentTip i {
  margin-right: 10px;
  color: #4CAF50;
  font-size: 20px;
}


.RRCatalogHeritageSection {
  background-color: rgba(33, 40, 6, 0.05);
}

.RRCatalogHeritageGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRCatalogHeritageSection .RRCatalogGameCard {
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.15);
  background: linear-gradient(135deg, rgba(255, 248, 225, 0.9), #fff);
}

.RRCatalogHeritageFacts {
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: var(--bg-color);
}

.RRCatalogHeritageFacts h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRCatalogHeritageFacts h3 i {
  margin-right: 8px;
  color: #FFC107;
}

.RRCatalogHeritageFacts ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}

.RRCatalogHeritageFacts ul li i {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--accent-color);
}

.RRCatalogHeritageStory {
  border-radius: 12px;
  padding: 20px;
  color: var(--secondary-text-color);
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: rgba(255, 193, 7, 0.1);
}

.RRCatalogHeritageStory i {
  margin-right: 10px;
  color: #FFC107;
  font-size: 20px;
}


.RRCatalogCollectorsSection {
  background-color: var(--bg-color);
}

.RRCatalogCollectorsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRCatalogCollectorsSection .RRCatalogGameCard {
  position: relative;
  border: 1px solid rgba(33, 40, 6, 0.1);
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.15);
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, #f8f8f8);
}

.RRCatalogCollectorsSection .RRCatalogGameCard::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  transform: rotate(45deg) translate(20px, -50px);
}

.RRCatalogCollectorsHighlight {
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 24px;
  background-color: rgba(33, 40, 6, 0.05);
}

.RRCatalogCollectorsHighlight h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.RRCatalogCollectorsHighlight h3 i {
  margin-right: 8px;
  color: #9C27B0;
}

.RRCatalogCollectorsHighlight ul {
  max-width: 800px;
  margin: 0 auto;
}

.RRCatalogCollectorsHighlight ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.RRCatalogCollectorsHighlight ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #9C27B0;
}

.RRCatalogCollectorsTestimonial {
  border-radius: 12px;
  padding: 20px;
  color: var(--bg-color);
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: var(--accent-color);
}

.RRCatalogCollectorsTestimonial i {
  margin-right: 10px;
  color: #E1BEE7;
  font-size: 20px;
}


.RRCatalogCommunitySection {
  background-color: rgba(33, 40, 6, 0.05);
}

.RRCatalogCommunityGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRCatalogCommunitySection .RRCatalogGameCard {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.RRCatalogCommunitySection .RRCatalogGameCard:hover {
  box-shadow: 0 15px 35px rgba(33, 40, 6, 0.15);
  transform: scale(1.05) !important;
}

.RRCatalogCommunityClubs {
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: var(--bg-color);
}

.RRCatalogCommunityClubs h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRCatalogCommunityClubs h3 i {
  margin-right: 8px;
  color: #2196F3;
}

.RRCatalogCommunityClubs ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.RRCatalogCommunityClubs ul li {
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 5px 15px rgba(33, 40, 6, 0.1);
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.5;
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRCatalogCommunityClubs ul li:hover {
  box-shadow: 0 10px 20px rgba(33, 40, 6, 0.15);
  transform: translateY(-5px) !important;
}

.RRCatalogCommunityFeedback {
  border-radius: 12px;
  padding: 20px;
  color: var(--secondary-text-color);
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: rgba(33, 150, 243, 0.1);
}

.RRCatalogCommunityFeedback i {
  margin-right: 10px;
  color: #2196F3;
  font-size: 20px;
}


.RRCatalogFestivalSection {
  background-color: var(--bg-color);
}

.RRCatalogFestivalGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRCatalogFestivalSection .RRCatalogGameCard {
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background: linear-gradient(135deg, #fff, rgba(255, 193, 7, 0.1));
}

.RRCatalogFestivalIdeas {
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: rgba(33, 40, 6, 0.05);
}

.RRCatalogFestivalIdeas h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRCatalogFestivalIdeas h3 i {
  margin-right: 8px;
  color: #FF9800;
}

.RRCatalogFestivalIdeas ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}

.RRCatalogFestivalIdeas ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FF9800;
}

.RRCatalogFestivalStory {
  border-radius: 12px;
  padding: 20px;
  color: var(--bg-color);
  font-size: 18px;
  font-style: italic;
  text-align: center;
  background-color: var(--accent-color);
  background-image: linear-gradient(45deg, rgba(255, 152, 0, 0.3), transparent);
}

.RRCatalogFestivalStory i {
  margin-right: 10px;
  color: #FFE0B2;
  font-size: 20px;
}


.RRCatalogSupportSection {
  background-color: rgba(33, 40, 6, 0.05);
}

.RRCatalogSupportGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.RRCatalogSupportBlock {
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(33, 40, 6, 0.1);
  background-color: #fff;
  transition: all 0.3s ease;
}

.RRCatalogSupportBlock:hover {
  box-shadow: 0 15px 35px rgba(33, 40, 6, 0.15);
  transform: translateY(-5px) !important;
}

.RRCatalogSupportBlock h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRCatalogSupportBlock h3 i {
  margin-right: 8px;
}

.RRCatalogSupportBlock ul li {
  margin-bottom: 12px;
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.5;
}

.RRCatalogSupportBlock ul li b {
  color: var(--accent-color);
  font-weight: 600;
}

.RRCatalogSupportBlock p {
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.5;
}

.RRCatalogSupportBlock a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.RRCatalogSupportBlock a:hover {
  color: rgba(33, 40, 6, 0.7);
}


@media (max-width: 1200px) {
  [class$="Container"] {
    padding: 0 20px;
  }

  [class$="Grid"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .RRCatalogStrategyAdvice ul,
  .RRCatalogKidsBenefits ul,
  .RRCatalogCommunityClubs ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .RRCatalogMain {
    gap: 60px;
  }

  section {
    padding: 50px 20px;
  }

  [class$="Title"] {
    font-size: 32px;
  }

  [class$="Desc"] {
    font-size: 16px;
  }

  .RRCatalogIntroTitle {
    font-size: 36px;
  }

  .RRCatalogIntroQuote {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .RRCatalogMain {
    gap: 40px;
  }

  section {
    padding: 40px 15px;
  }

  [class$="Title"] {
    margin-bottom: 30px;
    font-size: 28px;
  }

  [class$="Desc"] {
    margin-bottom: 30px;
    font-size: 15px;
  }

  [class$="Grid"] {
    grid-template-columns: 1fr;
  }

  .RRCatalogStrategyAdvice ul,
  .RRCatalogKidsBenefits ul,
  .RRCatalogCommunityClubs ul {
    grid-template-columns: 1fr;
  }

  .RRCatalogIntroTitle {
    font-size: 30px;
  }

  .RRCatalogIntroBenefits {
    flex-direction: column;
    align-items: center;
  }

  .RRCatalogIntroBenefits li {
    width: 100%;
    text-align: center;
  }

  .RRCatalogSupportGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .RRCatalogMain {
    gap: 30px;
  }

  section {
    padding: 30px 10px;
  }

  [class$="Title"] {
    margin-bottom: 20px;
    font-size: 24px;
  }

  [class$="Desc"] {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .RRCatalogIntroTitle {
    font-size: 26px;
  }

  .RRCatalogIntroQuote {
    padding: 20px 15px;
    font-size: 16px;
  }

  .RRCatalogGameCard {
    padding: 15px;
  }

  .RRCatalogGameCard h3 {
    font-size: 18px;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}