﻿.RRHowToPlayRoot {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}

.RRHowToPlayRoot section {
  width: 100%;
  padding: 80px 20px;
}

.RRHowToPlayRoot section:nth-child(odd) {
  background-color: var(--bg-color);
}

.RRHowToPlayRoot section:nth-child(even) {
  background-color: rgba(33, 40, 6, 0.03);
}

[class*="RRHowToPlay"][class$="Container"] {
  max-width: 1200px;
  margin: 0 auto;
}

[class$="Title"],
h2 {
  margin-bottom: 50px;
  opacity: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

[class$="Title"] i,
h2 i {
  margin-right: 12px;
  color: var(--accent-color);
}

[class*="RRHowToPlay"][class$="Btn"] {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 14px 28px;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateY(0);
}

[class*="RRHowToPlay"][class$="Btn"]:hover {
  box-shadow: 0 10px 25px rgba(33, 40, 6, 0.25);
  transform: translateY(-3px);
}

[class*="RRHowToPlay"][class$="Btn"] i {
  margin-right: 8px;
}


.RRHowToPlayHeroSection {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(33, 40, 6, 0.08) 100%);
}

.RRHowToPlayHeroSection::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(33, 40, 6, 0.02) 50%, transparent 60%);
  transform: rotate(-15deg);
  animation: heroPattern 8s ease-in-out infinite alternate;
}

.RRHowToPlayHeroContainer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.RRHowToPlayHeroTitle {
  margin-bottom: 20px;
  opacity: 0;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
  animation: slideInLeft 1s ease 0.2s forwards;
}

.RRHowToPlayHeroTitle i {
  margin-right: 15px;
  color: var(--accent-color);
  animation: spin 3s linear infinite;
}

.RRHowToPlayHeroDesc {
  margin-bottom: 30px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: slideInLeft 1s ease 0.4s forwards;
}

.RRHowToPlayHeroDesc i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRHowToPlayHeroStats {
  margin-bottom: 40px;
  opacity: 0;
  animation: slideInLeft 1s ease 0.6s forwards;
}

.RRHowToPlayHeroStats li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  color: var(--secondary-text-color);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.RRHowToPlayHeroStats li:hover {
  color: var(--accent-color);
  transform: translateX(10px);
}

.RRHowToPlayHeroStats li i {
  margin-right: 12px;
  color: var(--accent-color);
  font-size: 18px;
}

.RRHowToPlayHeroCTA {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: slideInLeft 1s ease 0.8s forwards;
}

.RRHowToPlayHeroImg {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(33, 40, 6, 0.15);
  opacity: 0;
  transition: all 0.5s ease;
  transform: rotate(2deg);
  animation: slideInRight 1s ease 0.5s forwards;
}

.RRHowToPlayHeroImg:hover {
  box-shadow: 0 30px 80px rgba(33, 40, 6, 0.2);
  transform: rotate(0deg) scale(1.02);
}


.RRHowToPlayStepsSection {
  background: rgba(33, 40, 6, 0.03);
}

.RRHowToPlayStepsContainer {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.RRHowToPlayStepsList {
  counter-reset: step-counter;
}

.RRHowToPlayStepsList li {
  position: relative;
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 25px 25px 25px 80px;
  box-shadow: 0 8px 25px rgba(33, 40, 6, 0.08);
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease forwards;
  counter-increment: step-counter;
}

.RRHowToPlayStepsList li:nth-child(1) {
  animation-delay: 0.1s;
}

.RRHowToPlayStepsList li:nth-child(2) {
  animation-delay: 0.2s;
}

.RRHowToPlayStepsList li:nth-child(3) {
  animation-delay: 0.3s;
}

.RRHowToPlayStepsList li:nth-child(4) {
  animation-delay: 0.4s;
}

.RRHowToPlayStepsList li:nth-child(5) {
  animation-delay: 0.5s;
}

.RRHowToPlayStepsList li:nth-child(6) {
  animation-delay: 0.6s;
}

.RRHowToPlayStepsList li:hover {
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.15);
  transform: translateY(-5px);
}

.RRHowToPlayStepsList li::before {
  content: counter(step-counter);
  position: absolute;
  top: 25px;
  left: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--bg-color);
  font-weight: 700;
  font-size: 18px;
  background: var(--accent-color);
}

.RRHowToPlayStepsList li i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRHowToPlayStepsList li b {
  color: var(--accent-color);
}

.RRHowToPlayStepsTips {
  border-radius: 12px;
  padding: 24px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(33, 40, 6, 0.8) 100%);
  animation: slideInRight 0.8s ease 0.3s forwards;
}

.RRHowToPlayStepsTips i {
  margin-right: 8px;
  color: var(--bg-color);
}

.RRHowToPlayStepsTips b {
  color: var(--bg-color);
}

.RRHowToPlayStepsTips {
  color: rgba(245, 238, 230, 0.9);
}

.RRHowToPlayStepsImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 20px auto 0;
  border-radius: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}


.RRHowToPlayClassicsSection {
  background: var(--bg-color);
}

.RRHowToPlayClassicsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.RRHowToPlayClassicsCard {
  position: relative;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(33, 40, 6, 0.1);
  opacity: 0;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
  animation: scaleIn 0.6s ease forwards;
}

.RRHowToPlayClassicsCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRHowToPlayClassicsCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRHowToPlayClassicsCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRHowToPlayClassicsCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRHowToPlayClassicsCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRHowToPlayClassicsCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRHowToPlayClassicsCard:hover {
  box-shadow: 0 20px 50px rgba(33, 40, 6, 0.15);
  transform: translateY(-8px) rotate(2deg);
}

.RRHowToPlayClassicsCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), rgba(33, 40, 6, 0.6));
}

.RRHowToPlayClassicsImg {
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
  border-radius: 12px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.RRHowToPlayClassicsCard:hover .RRHowToPlayClassicsImg {
  transform: scale(1.05);
}

.RRHowToPlayClassicsCard h3 {
  margin-bottom: 12px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRHowToPlayClassicsCard h3 i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRHowToPlayClassicsCard p {
  margin-bottom: 16px;
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.6;
}

.RRHowToPlayClassicsCard p b {
  color: var(--accent-color);
  font-weight: 600;
}

.RRHowToPlayClassicsCard ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 14px;
}

.RRHowToPlayClassicsCard ul li i {
  color: var(--accent-color);
}


.RRHowToPlayModernSection {
  background: rgba(33, 40, 6, 0.03);
}

.RRHowToPlayModernGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.RRHowToPlayModernCard {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(33, 40, 6, 0.1);
  opacity: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, rgba(245, 238, 230, 0.3) 100%);
  transition: all 0.4s ease;
  animation: slideInUp 0.6s ease forwards;
}

.RRHowToPlayModernCard:nth-child(1) {
  animation-delay: 0.15s;
}

.RRHowToPlayModernCard:nth-child(2) {
  animation-delay: 0.3s;
}

.RRHowToPlayModernCard:nth-child(3) {
  animation-delay: 0.45s;
}

.RRHowToPlayModernCard:nth-child(4) {
  animation-delay: 0.6s;
}

.RRHowToPlayModernCard:nth-child(5) {
  animation-delay: 0.75s;
}

.RRHowToPlayModernCard:nth-child(6) {
  animation-delay: 0.9s;
}

.RRHowToPlayModernCard:hover {
  box-shadow: 0 25px 60px rgba(33, 40, 6, 0.2);
  transform: translateY(-10px);
}

.RRHowToPlayModernCard::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(33, 40, 6, 0.05), transparent);
  transition: all 0.5s ease;
  transform: translateX(100%);
}

.RRHowToPlayModernCard:hover::after {
  transform: translateX(-100%);
}

.RRHowToPlayModernImg {
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
  border-radius: 12px;
  object-fit: cover;
  filter: brightness(1);
  transition: all 0.3s ease;
}

.RRHowToPlayModernCard:hover .RRHowToPlayModernImg {
  filter: brightness(1.1);
}

.RRHowToPlayModernCard h3 {
  margin-bottom: 12px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRHowToPlayModernCard h3 i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRHowToPlayModernCard p {
  margin-bottom: 16px;
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.6;
}

.RRHowToPlayModernCard p b {
  color: var(--accent-color);
  font-weight: 600;
}

.RRHowToPlayModernCard ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--secondary-text-color);
  font-size: 14px;
}

.RRHowToPlayModernCard ul li i {
  color: var(--accent-color);
}


.RRHowToPlayFamilySection {
  background: var(--bg-color);
}

.RRHowToPlayFamilyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.RRHowToPlayFamilyCard {
  position: relative;
  border-radius: 20px;
  padding: 40px 30px;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: all 0.4s ease;
  animation: bounceIn 0.8s ease forwards;
}

.RRHowToPlayFamilyCard:nth-child(1) {
  animation-delay: 0.2s;
}

.RRHowToPlayFamilyCard:nth-child(2) {
  animation-delay: 0.4s;
}

.RRHowToPlayFamilyCard:nth-child(3) {
  animation-delay: 0.6s;
}

.RRHowToPlayFamilyCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(135deg, rgba(33, 40, 6, 0.05) 0%, transparent 50%);
  transition: all 0.3s ease;
}

.RRHowToPlayFamilyCard:hover {
  box-shadow: 0 20px 50px rgba(33, 40, 6, 0.15);
  transform: translateY(-10px) scale(1.02);
}

.RRHowToPlayFamilyCard:hover::before {
  opacity: 1;
}

.RRHowToPlayFamilyCard>i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 32px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.RRHowToPlayFamilyCard:hover>i {
  transform: rotate(360deg) scale(1.1);
}

.RRHowToPlayFamilyCard h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 22px;
}

.RRHowToPlayFamilyCard p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
}

.RRHowToPlayFamilyCard p b {
  color: var(--accent-color);
  font-weight: 600;
}

.RRHowToPlayFamilyCard ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 15px;
}

.RRHowToPlayFamilyCard ul li i {
  color: var(--accent-color);
}


.RRHowToPlayClubsSection {
  position: relative;
  overflow: hidden;
  background: rgba(33, 40, 6, 0.03);
}

.RRHowToPlayClubsSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(33, 40, 6, 0.02), transparent);
  animation: clubsPattern 6s ease-in-out infinite;
}

.RRHowToPlayClubsContainer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.RRHowToPlayClubsList {
  display: grid;
  gap: 20px;
}

.RRHowToPlayClubsItem {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(33, 40, 6, 0.08);
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease forwards;
}

.RRHowToPlayClubsItem:nth-child(1) {
  animation-delay: 0.1s;
}

.RRHowToPlayClubsItem:nth-child(2) {
  animation-delay: 0.2s;
}

.RRHowToPlayClubsItem:nth-child(3) {
  animation-delay: 0.3s;
}

.RRHowToPlayClubsItem:nth-child(4) {
  animation-delay: 0.4s;
}

.RRHowToPlayClubsItem:nth-child(5) {
  animation-delay: 0.5s;
}

.RRHowToPlayClubsItem:nth-child(6) {
  animation-delay: 0.6s;
}

.RRHowToPlayClubsItem:hover {
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.15);
  transform: translateX(10px);
}

.RRHowToPlayClubsItem i {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 18px;
  background: var(--accent-color);
}

.RRHowToPlayClubsItem b {
  color: var(--accent-color);
}

.RRHowToPlayClubsCTA {
  border-radius: 16px;
  padding: 30px;
  opacity: 0;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(33, 40, 6, 0.8) 100%);
  animation: slideInRight 0.8s ease 0.3s forwards;
}

.RRHowToPlayClubsCTA i {
  margin-right: 8px;
  color: var(--bg-color);
}

.RRHowToPlayClubsCTA b {
  color: var(--bg-color);
}

.RRHowToPlayClubsCTA {
  color: rgba(245, 238, 230, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.RRHowToPlayClubsBtn {
  margin-top: 20px;
  color: var(--accent-color) !important;
  background: var(--bg-color) !important;
}

.RRHowToPlayClubsBtn i {
  color: var(--accent-color);
}

.RRHowToPlayClubsBtn:hover {
  color: var(--accent-color) !important;
  background: rgba(245, 238, 230, 0.9) !important;
}

.RRHowToPlayClubsImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 30px auto 0;
  border-radius: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}


@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes clubsPattern {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(calc(100vw + 200px));
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroPattern {
  0% {
    transform: rotate(-15deg) translateX(0);
  }

  100% {
    transform: rotate(-15deg) translateX(20px);
  }
}


.RRHowToPlayEduSection {
  background: var(--bg-color);
}

.RRHowToPlayEduGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRHowToPlayEduCard {
  position: relative;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 12px 35px rgba(33, 40, 6, 0.08);
  opacity: 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  transition: all 0.4s ease;
  animation: slideInUp 0.6s ease forwards;
}

.RRHowToPlayEduCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRHowToPlayEduCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRHowToPlayEduCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRHowToPlayEduCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRHowToPlayEduCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRHowToPlayEduCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRHowToPlayEduCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: radial-gradient(circle at 50% 50%, rgba(33, 40, 6, 0.03) 0%, transparent 70%);
  transition: all 0.3s ease;
}

.RRHowToPlayEduCard:hover {
  box-shadow: 0 20px 50px rgba(33, 40, 6, 0.15);
  transform: translateY(-8px);
}

.RRHowToPlayEduCard:hover::before {
  opacity: 1;
}

.RRHowToPlayEduCard>i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 28px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.RRHowToPlayEduCard:hover>i {
  transform: scale(1.1);
}

.RRHowToPlayEduCard h3 {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRHowToPlayEduCard p {
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.6;
}

.RRHowToPlayEduBtn {
  margin-top: 30px;
}


.RRHowToPlayNightSection {
  background: rgba(33, 40, 6, 0.03);
}

.RRHowToPlayNightGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.RRHowToPlayNightCard {
  position: relative;
  border-radius: 16px;
  padding: 25px;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, rgba(245, 238, 230, 0.1) 100%);
  transition: all 0.4s ease;
  animation: slideInUp 0.6s ease forwards;
}

.RRHowToPlayNightCard:nth-child(1) {
  animation-delay: 0.1s;
}

.RRHowToPlayNightCard:nth-child(2) {
  animation-delay: 0.2s;
}

.RRHowToPlayNightCard:nth-child(3) {
  animation-delay: 0.3s;
}

.RRHowToPlayNightCard:nth-child(4) {
  animation-delay: 0.4s;
}

.RRHowToPlayNightCard:nth-child(5) {
  animation-delay: 0.5s;
}

.RRHowToPlayNightCard:nth-child(6) {
  animation-delay: 0.6s;
}

.RRHowToPlayNightCard::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0;
  background: conic-gradient(from 0deg, transparent, rgba(33, 40, 6, 0.02), transparent);
  transition: all 0.3s ease;
  animation: rotate 8s linear infinite;
}

.RRHowToPlayNightCard:hover {
  box-shadow: 0 20px 50px rgba(33, 40, 6, 0.15);
  transform: translateY(-8px);
}

.RRHowToPlayNightCard:hover::after {
  opacity: 1;
}

.RRHowToPlayNightCard>i {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 28px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.RRHowToPlayNightCard h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

.RRHowToPlayNightCard p {
  position: relative;
  z-index: 2;
  color: var(--secondary-text-color);
  font-size: 15px;
  line-height: 1.6;
}

.RRHowToPlayNightTips {
  border-radius: 12px;
  padding: 24px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  background: rgba(33, 40, 6, 0.05);
  animation: fadeIn 0.8s ease 0.5s forwards;
}

.RRHowToPlayNightTips i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRHowToPlayNightTips b {
  color: var(--accent-color);
}


.RRHowToPlaySupportSection {
  background: var(--bg-color);
}

.RRHowToPlaySupportContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.RRHowToPlaySupportList {
  display: grid;
  gap: 20px;
}

.RRHowToPlaySupportList li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(33, 40, 6, 0.08);
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease forwards;
}

.RRHowToPlaySupportList li:nth-child(1) {
  animation-delay: 0.1s;
}

.RRHowToPlaySupportList li:nth-child(2) {
  animation-delay: 0.2s;
}

.RRHowToPlaySupportList li:nth-child(3) {
  animation-delay: 0.3s;
}

.RRHowToPlaySupportList li:nth-child(4) {
  animation-delay: 0.4s;
}

.RRHowToPlaySupportList li:hover {
  box-shadow: 0 15px 40px rgba(33, 40, 6, 0.15);
  transform: translateX(10px);
}

.RRHowToPlaySupportList li i {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 18px;
  background: var(--accent-color);
}

.RRHowToPlaySupportList li b {
  color: var(--accent-color);
}

.RRHowToPlaySupportCTA {
  opacity: 0;
  text-align: center;
  animation: slideInRight 0.8s ease 0.3s forwards;
}

.RRHowToPlaySupportImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 30px auto 0;
  border-radius: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}


.RRHowToPlayAmbassadorSection {
  position: relative;
  overflow: hidden;
  background: rgba(33, 40, 6, 0.03);
}

.RRHowToPlayAmbassadorSection::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(270deg, rgba(33, 40, 6, 0.02) 0%, transparent 70%);
  animation: ambassadorPattern 10s ease-in-out infinite alternate;
}

.RRHowToPlayAmbassadorContainer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.RRHowToPlayAmbassadorDesc {
  margin-bottom: 30px;
  opacity: 0;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.7;
  animation: slideInLeft 0.8s ease 0.2s forwards;
}

.RRHowToPlayAmbassadorDesc i {
  margin-right: 8px;
  color: var(--accent-color);
}

.RRHowToPlayAmbassadorList {
  margin-bottom: 30px;
  opacity: 0;
  animation: slideInLeft 0.8s ease 0.4s forwards;
}

.RRHowToPlayAmbassadorList li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.RRHowToPlayAmbassadorList li:hover {
  color: var(--accent-color);
  transform: translateX(10px);
}

.RRHowToPlayAmbassadorList li i {
  margin-top: 4px;
  color: var(--accent-color);
  font-size: 18px;
}

.RRHowToPlayAmbassadorCTA {
  border-radius: 16px;
  padding: 30px;
  opacity: 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(33, 40, 6, 0.8) 100%);
  animation: slideInLeft 0.8s ease 0.6s forwards;
}

.RRHowToPlayAmbassadorCTA i {
  margin-right: 8px;
  color: var(--bg-color);
}

.RRHowToPlayAmbassadorCTA b {
  color: var(--bg-color);
}

.RRHowToPlayAmbassadorCTA {
  color: rgba(245, 238, 230, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.RRHowToPlayAmbassadorBtn {
  margin-top: 20px;
  color: var(--accent-color) !important;
  background: var(--bg-color) !important;
}

.RRHowToPlayAmbassadorBtn i {
  color: var(--accent-color);
}

.RRHowToPlayAmbassadorBtn:hover {
  color: var(--accent-color) !important;
  background: rgba(245, 238, 230, 0.9) !important;
}

.RRHowToPlayAmbassadorImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 30px auto 0;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(33, 40, 6, 0.15);
  opacity: 0;
  transition: all 0.5s ease;
  animation: slideInRight 1s ease 0.5s forwards;
}

.RRHowToPlayAmbassadorImg:hover {
  box-shadow: 0 30px 80px rgba(33, 40, 6, 0.2);
  transform: scale(1.02);
}


@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ambassadorPattern {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50px);
  }
}


@media (max-width: 1200px) {
  [class*="RRHowToPlay"][class$="Container"] {
    max-width: 960px;
  }

  .RRHowToPlayClassicsGrid,
  .RRHowToPlayModernGrid,
  .RRHowToPlayEduGrid,
  .RRHowToPlayNightGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .RRHowToPlayRoot section {
    padding: 60px 20px;
  }

  [class$="Title"],
  h2 {
    margin-bottom: 40px;
    font-size: 32px;
  }

  .RRHowToPlayClubsContainer,
  .RRHowToPlaySupportContainer,
  .RRHowToPlayAmbassadorContainer {
    grid-template-columns: 1fr;
  }

  .RRHowToPlayHeroTitle {
    font-size: 36px;
  }

  .RRHowToPlayFamilyGrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .RRHowToPlayRoot {
    margin-top: 60px;
  }

  .RRHowToPlayRoot section {
    padding: 50px 16px;
  }

  [class$="Title"],
  h2 {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .RRHowToPlayHeroTitle {
    font-size: 32px;
  }

  .RRHowToPlayHeroDesc {
    font-size: 16px;
  }

  .RRHowToPlayHeroCTA {
    flex-direction: column;
    gap: 16px;
  }

  .RRHowToPlayClassicsGrid,
  .RRHowToPlayModernGrid,
  .RRHowToPlayEduGrid,
  .RRHowToPlayNightGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .RRHowToPlayStepsList li {
    padding: 20px 20px 20px 70px;
  }

  .RRHowToPlayStepsList li::before {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .RRHowToPlayFamilyCard {
    padding: 30px 20px;
  }

  .RRHowToPlayFamilyCard>i {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .RRHowToPlayRoot section {
    padding: 40px 12px;
  }

  [class$="Title"],
  h2 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .RRHowToPlayHeroTitle {
    font-size: 28px;
    line-height: 1.3;
  }

  .RRHowToPlayHeroDesc {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .RRHowToPlayHeroStats li {
    font-size: 14px;
  }

  [class*="RRHowToPlay"][class$="Btn"] {
    padding: 12px 20px;
    font-size: 14px;
  }

  .RRHowToPlayStepsList li {
    padding: 16px 16px 16px 60px;
    font-size: 14px;
  }

  .RRHowToPlayStepsList li::before {
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .RRHowToPlayClassicsCard,
  .RRHowToPlayModernCard {
    padding: 16px;
  }

  .RRHowToPlayClassicsImg,
  .RRHowToPlayModernImg {
    height: 150px;
  }

  .RRHowToPlayFamilyCard {
    padding: 24px 16px;
  }

  .RRHowToPlayFamilyCard>i {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .RRHowToPlayFamilyCard h3 {
    font-size: 18px;
  }

  .RRHowToPlayClubsItem,
  .RRHowToPlaySupportList li {
    padding: 16px;
    font-size: 14px;
  }

  .RRHowToPlayClubsItem i,
  .RRHowToPlaySupportList li i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .RRHowToPlayEduCard,
  .RRHowToPlayNightCard {
    padding: 20px 16px;
  }

  .RRHowToPlayEduCard>i,
  .RRHowToPlayNightCard>i {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .RRHowToPlayEduCard h3,
  .RRHowToPlayNightCard h3 {
    font-size: 18px;
  }

  .RRHowToPlayEduCard p,
  .RRHowToPlayNightCard p {
    font-size: 14px;
  }

  .RRHowToPlayStepsTips,
  .RRHowToPlayClubsCTA,
  .RRHowToPlayAmbassadorCTA,
  .RRHowToPlayNightTips {
    padding: 20px;
    font-size: 14px;
  }

  .RRHowToPlayAmbassadorDesc {
    font-size: 16px;
  }

  .RRHowToPlayAmbassadorList li {
    font-size: 14px;
  }
}