/* Reset & Base */
* {margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif;}
body.rcr-body {background:#1e1f1b;color:#f6f5ee;line-height:1.6;scroll-behavior:smooth;}
a {text-decoration:none;color:inherit;}
.rcr-container {width:90%;max-width:1200px;margin:0 auto;}

/* Header */
.rcr-top-banner {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
  background: rgba(107, 142, 35, 0.15);
  overflow: hidden;
}

.rcr-banner-card {
  background: rgba(107, 142, 35, 0.5);
  backdrop-filter: blur(6px);
  padding: 6px 15px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #f9f9f9;
  transform: translateY(0);
  transition: transform 0.3s, background 0.3s;
}

.rcr-banner-card:hover {
  transform: translateY(-4px);
  background: rgba(107, 142, 35, 0.7);
}

/* Header основной */
.rcr-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(123, 139, 90, 0.6);
  backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid rgba(200, 220, 180, 0.3);
  animation: slideDown 0.8s ease forwards;
}

/* Логотип с градиентом */
.rcr-logo {
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(45deg, #dde6aa, #6b8e23, #a3b18a);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s ease infinite;
  margin-left: 10px;
}

/* Навигация */
.rcr-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  position: relative;
}

.rcr-nav ul li a {
  color: #f0f0d8;
  font-weight: 500;
  position: relative;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.rcr-nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #dde6aa;
  transition: width 0.3s;
}

.rcr-nav ul li a:hover::after {
  width: 60%;
}

/* Бургер */
.rcr-burger {display:none; flex-direction: column; gap: 4px; cursor:pointer;}
.rcr-burger span {height:3px;width:25px;background:#fff;border-radius:2px;transition:0.4s;}
.rcr-burger.rcr-active span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.rcr-burger.rcr-active span:nth-child(2){opacity:0;}
.rcr-burger.rcr-active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}
.rcr-nav ul.rcr-open {display:flex;flex-direction:column;position:absolute;top:100%;right:20px;background:rgba(123,139,90,0.95);padding:15px;border-radius:8px;gap:15px;z-index:998;}

/* Декоративные фигуры */
.rcr-header-shapes span {
  position: absolute;
  display: block;
  animation: floatShapes 6s ease-in-out infinite;
}

.shape-circle {width:20px;height:20px;background:rgba(155,173,97,0.4);border-radius:50%;top:10%;left:5%;}
.shape-diamond {width:15px;height:15px;background:rgba(180,195,120,0.5);transform:rotate(45deg);top:50%;left:85%;}
.shape-line {width:2px;height:25px;background:rgba(155,173,97,0.6);top:70%;left:40%;}

@keyframes floatShapes {
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-15px) rotate(45deg);}
}

@keyframes gradientMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

@keyframes slideDown{
  0%{transform:translateY(-100%);}
  100%{transform:translateY(0);}
}
/* Hero */
.rcr-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.rcr-hero-bg {
  position:absolute;top:0;left:0;width:100%;height:100%;
  background:url('../img/hero-bg.jpg') center/cover no-repeat;
  filter:brightness(0.45) blur(3px);
  z-index:0;transform:scale(1.05);
}

.rcr-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: 0 20px;
}

/* Фоновый слой */
.rcr-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #6b8e23, #a3b18a);
  filter: brightness(0.7);
  z-index: 0;
  transform: scale(1.05);
  transition: all 0.5s;
}

/* Полупрозрачная наложка */
.rcr-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  z-index: 1;
}

/* Контент */
.rcr-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease forwards;
}

.rcr-hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #dde6aa, #6b8e23, #a3b18a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
}

.rcr-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0d8;
  line-height: 1.6;
}

.rcr-hero-btn {
  display: inline-block;
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  color: #1f2233;
  background: linear-gradient(135deg,#dde6aa,#6b8e23);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.rcr-hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  background: linear-gradient(135deg,#a3b18a,#6b8e23);
}

/* Анимация появления */
@keyframes fadeInUp {
  0 {opacity:0; transform:translateY(40px);}
  100 {opacity:1; transform:translateY(0);}
}

/* Анимация градиента текста */
@keyframes gradientShift {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}

/* Декоративные фигуры */
.rcr-hero-animated-shapes span {
  position: absolute;
  display: block;
  animation: float 6s ease-in-out infinite;
}

.shape-circle {width:20px;height:20px;background:rgba(200,220,150,0.3);border-radius:50%;}
.shape-diamond {width:15px;height:15px;background:rgba(180,195,120,0.35);transform:rotate(45deg);}
.shape-line {width:2px;height:25px;background:rgba(155,173,97,0.4);}

.rcr-hero-animated-shapes span:nth-child(1){top:10%; left:10%; animation-delay:0s;}
.rcr-hero-animated-shapes span:nth-child(2){top:25%; left:75%; animation-delay:1s;}
.rcr-hero-animated-shapes span:nth-child(3){top:50%; left:40%; animation-delay:2s;}
.rcr-hero-animated-shapes span:nth-child(4){top:70%; left:85%; animation-delay:1.5s;}
.rcr-hero-animated-shapes span:nth-child(5){top:85%; left:20%; animation-delay:0.5s;}

@keyframes float {
  0%,100% {transform: translateY(0) rotate(0deg);}
  50% {transform: translateY(-30px) rotate(45deg);}
}
/* Features */
.rcr-casino-features {
  position: relative;
  padding: 100px 20px 60px 20px;
  background: linear-gradient(135deg, #556b2f, #a3b18a);
  color: #fff;
  overflow: hidden;
}

.rcr-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #f0f0c0;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Grid — 3 карточки */
.rcr-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
}

/* Карточка */
.rcr-feature-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  animation: fadeUp 1s ease forwards;
}

.rcr-feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.1);
}

/* Иконка */
.rcr-feature-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg,#c2d4a3,#6b8e23);
  color: #1f2233;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: inline-block;
  transition: transform 0.3s;
}

.rcr-feature-card:hover .rcr-feature-icon {
  transform: scale(1.2) rotate(15deg);
}

/* Заголовок и текст */
.rcr-feature-card h3 {
  font-size: 1.5rem;
  color: #f0f0c0;
  margin-bottom: 12px;
}

.rcr-feature-card p {
  font-size: 1rem;
  color: #e0e0c0;
  line-height: 1.6;
}

/* Анимация появления */
@keyframes fadeUp {
  0% {opacity:0; transform:translateY(30px);}
  100% {opacity:1; transform:translateY(0);}
}

/* Предупреждение о возрасте */
.rcr-age-warning {
  margin-top: 50px;
  text-align: center;
  background: rgba(0,0,0,0.35);
  padding: 25px 20px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffdd57;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  line-height: 1.5;
}

/* Декоративные фигуры */
.rcr-features-shapes span {
  position: absolute;
  display: block;
  opacity: 0.2;
  animation: floatShapes 6s ease-in-out infinite;
}

.shape-circle {width:20px;height:20px;background:rgba(255,255,255,0.15);border-radius:50%;}
.shape-diamond {width:15px;height:15px;background:rgba(255,255,255,0.15);transform:rotate(45deg);}

.rcr-features-shapes span:nth-child(1){top:10%; left:5%; animation-delay:0s;}
.rcr-features-shapes span:nth-child(2){top:50%; left:80%; animation-delay:1s;}
.rcr-features-shapes span:nth-child(3){top:75%; left:20%; animation-delay:1.5s;}

@keyframes floatShapes {
  0%,100% {transform: translateY(0) rotate(0deg);}
  50% {transform: translateY(-20px) rotate(30deg);}
}


/* Offers */
.rcr-offers {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #556b2f, #a3b18a);
  color: #fff;
  overflow: hidden;
}

/* Карточка */
.rcr-offer-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
  border-radius: 24px;
  padding: 25px;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  transition: transform 0.4s, box-shadow 0.4s;
  overflow: hidden;
}

.rcr-offer-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

/* Акцентная полоска */
.rcr-offer-accent {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg,#9caf88,#556b2f);
  border-radius: 12px 12px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

/* Внутренняя сетка карточки */
.rcr-offer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding-top: 20px;
}

/* Левый блок */
.rcr-offer-left {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rcr-offer-logo-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.rcr-offer-logo-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(173,216,105,0.3), rgba(85,107,47,0.2));
  border-radius: 50%;
  z-index: 0;
  animation: pulse 3s infinite ease-in-out;
}

.rcr-offer-logo {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  object-fit: contain;
  border: 2px solid rgba(255,255,255,0.1);
  z-index: 1;
}

/* Рейтинг */
.rcr-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  color: #f0f0c0;
}

.rcr-rating i {color:#ffd700;}

/* Центральный блок */
.rcr-offer-center {
  flex: 2 1 350px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0c0;
}

.rcr-warning {
  margin-top: 12px;
  color: #ffdd57;
  font-weight: 600;
  background: rgba(0,0,0,0.25);
  padding: 8px 12px;
  border-radius: 12px;
  text-align: center;
}

/* Правый блок */
.rcr-offer-right {
  flex: 1 1 220px;
  background: rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(6px);
}

.rcr-payments h4,
.rcr-bonus h4 {color: #f0f0c0; margin-bottom: 10px;}

.rcr-payments ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}

.rcr-payments ul li {
  background: linear-gradient(90deg, rgba(173,216,105,0.25), rgba(85,107,47,0.25));
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 500;
}

/* Кнопка */
.rcr-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(135deg,#9caf88,#556b2f);
  color: #1f2233;
  font-weight: 600;
  border-radius: 12px;
  text-align: center;
  margin-top: 12px;
  transition: 0.3s;
}

.rcr-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Фигуры и анимация */
.rcr-offer-shapes span {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: floatShapes 6s ease-in-out infinite;
}

.rcr-offer-shapes .shape-diamond {
  transform: rotate(45deg);
}

.rcr-offer-shapes span:nth-child(1){top:10%; left:15%; animation-delay:0s;}
.rcr-offer-shapes span:nth-child(2){top:60%; left:70%; animation-delay:1s;}
.rcr-offer-shapes span:nth-child(3){top:80%; left:25%; animation-delay:2s;}

@keyframes floatShapes {
  0%,100% {transform: translateY(0) rotate(0deg);}
  50% {transform: translateY(-20px) rotate(30deg);}
}

@keyframes pulse {
  0%,100% {transform: scale(1);}
  50% {transform: scale(1.15);}
}


/* About */
.rcr-about {
  padding: 100px 20px;
  background: #f5f8f0;
  color: #333;
}

.rcr-about-header {
  margin-bottom: 60px;
}

.rcr-about-lead {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #556b2f;
  line-height: 1.6;
}

/* Интерактивный список с анимацией */
.rcr-about-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.rcr-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(145deg, #d0e0b0, #a3b18a);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  animation: pulse-bg 5s ease-in-out infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rcr-feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.rcr-about-feature-icon {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  padding: 15px;
  border-radius: 50%;
  animation: icon-bounce 3s infinite;
}

.rcr-feature-info h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #334411;
}

.rcr-feature-info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #2f3b1f;
}

/* Анимация фона */
@keyframes pulse-bg {
  0%, 100% { background: linear-gradient(145deg, #d0e0b0, #a3b18a); }
  50% { background: linear-gradient(145deg, #c8d7a0, #8f9b6e); }
}

/* Анимация иконок */
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* CTA кнопка */
.rcr-about-cta {
  margin-top: 60px;
}

.rcr-btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  background: linear-gradient(135deg, #9caf88, #556b2f);
  color: #fff;
  border-radius: 12px;
  transition: 0.3s;
}

.rcr-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* FAQ */
.rcr-faq {
  padding: 80px 20px;
  background: linear-gradient(160deg, #e0e6d3, #c8d4a6);
  color: #333;
}

.rcr-section-title {
  font-size: 2rem;
  color: #4b5d23;
  margin-bottom: 50px;
}

.rcr-faq-grid {
  display: grid;
  gap: 25px;
}

.rcr-faq-item {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
}

.rcr-faq-item:hover {
  transform: translateY(-5px);
}

.rcr-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #334411;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.rcr-faq-question:hover {
  background: rgba(255,255,255,0.35);
}

.rcr-faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.rcr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 20px;
  background: rgba(255,255,255,0.1);
}

.rcr-faq-answer p {
  margin: 12px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #2f3b1f;
}

/* Когда открыто */
.rcr-faq-item.active .rcr-faq-answer {
  max-height: 500px; 
  padding: 15px 20px;
}

.rcr-faq-item.active .rcr-faq-toggle {
  transform: rotate(45deg);
}

/* Анимация пульсации фона */
@keyframes pulse-bg {
  0%, 100% { background: linear-gradient(160deg, #e0e6d3, #c8d4a6); }
  50% { background: linear-gradient(160deg, #d4e0b2, #a3b18a); }
}

.rcr-faq-item {
  animation: pulse-bg 6s ease-in-out infinite;
}
/* Footer */
.rcr-footer {
  background: linear-gradient(135deg, #c8d4a6, #a3b18a);
  color: #2f3b1f;
  padding: 50px 20px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.rcr-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.rcr-footer-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2f3b1f;
  text-decoration: none;
}

.rcr-footer-brand img {
  border-radius: 50%;
  transition: transform 0.3s;
}

.rcr-footer-brand img:hover {
  transform: scale(1.1) rotate(5deg);
}

.rcr-footer-age {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.rcr-footer-links {
  display: flex;
  gap: 40px;
}

.rcr-footer-links h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.rcr-footer-links ul {
  list-style: none;
  padding: 0;
}

.rcr-footer-links ul li {
  margin-bottom: 10px;
}

.rcr-footer-links ul li a {
  text-decoration: none;
  color: #2f3b1f;
  transition: color 0.3s;
}

.rcr-footer-links ul li a:hover {
  color: #556b2f;
}

.rcr-footer-seals h4 {
  margin-bottom: 15px;
}

.rcr-footer-seals-grid {
 
  width: 100%;
}

.rcr-footer-seals-grid a img {
  max-width: 200px;
  transition: transform 0.3s, filter 0.3s;
}

.rcr-footer-seals-grid a img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.rcr-footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #1e2a0f;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 30px;
}

/* Анимация пульсации фона */
@keyframes pulseFooter {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.rcr-footer {
  background: linear-gradient(135deg, #c8d4a6, #a3b18a, #d4e0b2, #b5c18f);
  background-size: 400% 400%;
  animation: pulseFooter 15s ease infinite;
}
.top-banner {    background-color: #12d1b1;
    color: #333;
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
}
.rcr-responsible {
  background: #f0f4e3;
  padding: 60px 20px;
}

.rcr-responsible-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.rcr-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #e6f0c9;
  border-left: 5px solid #a3b18a;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
 
  transition: all 0.6s ease-in-out;
}

.rcr-step.visible {
  transform: translateY(0);
  opacity: 1;
}

.rcr-step-icon {
  font-size: 2rem;
  flex-shrink: 0;
  background: #d4e0b2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 3s ease-in-out infinite alternate;
}

@keyframes floatIcon {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.rcr-step-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #3b4b1f;
}

.rcr-step-content ul {
  padding-left: 20px;
  margin: 0;
}
.rcr-step-content, p.rcr-lead {
  color: #000;
}
.rcr-step-content ul li {
  margin-bottom: 5px;
  color: #000;
}

/* Блоки контента */
.rcr-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rcr-block h3 {
  font-size: 1.5rem;
  color:#c2b561;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.rcr-block ul {
  padding-left: 20px;
  list-style-type: disc;
  line-height: 1.6;
}

.rcr-block a {
  color:#9aa75c;
  text-decoration: underline;
  transition: color 0.3s;
}

.rcr-block a:hover {
  color: #c2b561;
}

/* Hover эффекты */
.rcr-block:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Последний блок на всю ширину */
.rcr-block:last-child {
  grid-column: 1 / -1;
}
.rcr-responsible {
    padding-top: 200px;
  }
  a.rcr-logo-link {
    display: flex;
    align-items: center;
  }

  .rcr-contact {
  padding: 80px 20px;
  background: linear-gradient(160deg, #e0e6d3, #c8d4a6);
  color: #2f3b1f;
}

.rcr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.rcr-contact-form-wrapper,
.rcr-contact-info {
  background: rgba(255,255,255,0.15);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.rcr-contact-form-wrapper:hover,
.rcr-contact-info:hover {
  transform: translateY(-5px);
}

.rcr-contact-form input,
.rcr-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #b5c18f;
  background: rgba(255,255,255,0.2);
  color: #2f3b1f;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.rcr-contact-form input:focus,
.rcr-contact-form textarea:focus {
  border-color: #4b5d23;
  outline: none;
  background: rgba(255,255,255,0.3);
}

.rcr-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #a3b18a, #d4e0b2);
  border: none;
  border-radius: 12px;
  color: #2f3b1f;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.rcr-btn:hover {
  background: linear-gradient(135deg, #d4e0b2, #a3b18a);
  transform: translateY(-3px);
}

.rcr-contact-info h2 {
  margin-bottom: 20px;
  color: #4b5d23;
}

.rcr-contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.rcr-contact-info ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.rcr-social a {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #334411;
  transition: transform 0.3s, color 0.3s;
}

.rcr-social a:hover {
  transform: translateY(-5px) rotate(10deg);
  color: #556b2f;
}
/* Animations */
@keyframes fadeUp{0%{opacity:0;transform:translateY(20px);}100%{opacity:1;transform:translateY(0);}}
@media(max-width: 900px){
  .rcr-faq-question {
    text-align: left;
  }
  .rcr-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .rcr-footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .rcr-contact-grid {
    grid-template-columns: 1fr;
  }
  .rcr-about-features-list {
    grid-template-columns: 1fr;
  }
  .rcr-header .rcr-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .rcr-nav ul{display:none;}
  .rcr-burger{display:flex;}
  .rcr-top-banner{flex-direction:column;gap:0px; padding: 0;}
  .rcr-responsible .rcr-section-title {
    font-size: 2rem;
  }

  .rcr-responsible .rcr-lead {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .rcr-about-content {
    flex-direction: column;
  }
  .rcr-about-features {
    grid-template-columns: 1fr;
  }
  .rcr-offer-inner{
    flex-direction: column;
    align-items: center;
  }
  .rcr-offer-left, .rcr-offer-center, .rcr-offer-right{
    width: 100%;
  }
}
@media(max-width:768px){
  .rcr-features-grid{grid-template-columns:1fr;}
  .rcr-casino-features .rcr-section-title{font-size:2rem;}
  .rcr-nav ul{display:none;}
  .rcr-burger{display:flex;}
  .rcr-features-grid,.rcr-offers-grid{grid-template-columns:1fr;}
  .rcr-hero h1{font-size:2rem;}
  .rcr-hero p{text-align:center;}
}
