*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --re-scs-purple-primary: #8e44ad;
  --re-scs-purple-secondary: #9b59b6;
  --re-scs-blue-primary: #3498db;
  --re-scs-blue-secondary: #2980b9;
  --re-scs-green-accent: #2ecc71;
  --re-scs-dark-background: #2c3e50;
  --re-scs-light-text: #ecf0f1;
  --re-scs-dark-text: #2c3e50;
  --re-scs-gradient-primary: linear-gradient(135deg, var(--re-scs-purple-primary), var(--re-scs-blue-primary));
  --re-scs-gradient-secondary: linear-gradient(135deg, var(--re-scs-purple-secondary), var(--re-scs-blue-secondary));
  --re-scs-shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
  --re-scs-shadow-medium: 0 6px 12px rgba(0, 0, 0, 0.15);
  --re-scs-shadow-strong: 0 10px 20px rgba(0, 0, 0, 0.2);
  --re-scs-border-radius-sm: 8px;
  --re-scs-border-radius-md: 12px;
  --re-scs-border-radius-lg: 20px;
  --re-scs-transition-normal: 0.3s ease;
  --re-scs-transition-slow: 0.5s ease;
}

body {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  color: var(--re-scs-dark-text);
  background-color: #f9f9f9;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  min-height: 3rem;
}

h2 {
  font-size: 2rem;
  min-height: 2.5rem;
}

h3 {
  font-size: 1.5rem;
  min-height: 2rem;
}

p {
  margin-bottom: 1rem;
  min-height: 1.5rem;
}

a {
  color: var(--re-scs-purple-primary);
  text-decoration: none;
  transition: var(--re-scs-transition-normal);
}

a:hover {
  color: var(--re-scs-blue-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.re-scs-wrapper {
  max-width: 1488px;
  margin: 0 auto;
  position: relative;
}

.re-scs-header {
  background: var(--re-scs-gradient-primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--re-scs-shadow-soft);
}

.re-scs-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1488px;
  margin: 0 auto;
}

.re-scs-header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.re-scs-header-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.re-scs-header-title {
  color: var(--re-scs-light-text);
  margin: 0;
  font-size: 1.5rem;
}

.re-scs-header-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--re-scs-light-text);
  font-size: 2rem;
  cursor: pointer;
}

.re-scs-header-nav {
  display: flex;
  gap: 1.5rem;
}

.re-scs-header-nav-link {
  color: var(--re-scs-light-text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--re-scs-border-radius-sm);
  transition: var(--re-scs-transition-normal);
}

.re-scs-header-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.re-scs-main {
  padding: 2rem 0;
}

.re-scs-premium-section {
  position: relative;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  border-radius: var(--re-scs-border-radius-lg);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.re-scs-premium-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/re-core/re-images/re-bg-img-1.jpg') center/cover no-repeat;
  z-index: -1;
}

.re-scs-premium-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--re-scs-gradient-primary);
  opacity: 0.85;
}

.re-scs-premium-content {
  text-align: center;
  color: var(--re-scs-light-text);
  max-width: 800px;
  z-index: 1;
  animation: re-scs-fade-in-up 1s ease-out;
}

.re-scs-premium-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.re-scs-premium-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.re-scs-premium-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.re-scs-premium-icons i {
  font-size: 2.5rem;
  color: var(--re-scs-green-accent);
  animation: re-scs-pulse 2s infinite;
}

.re-scs-premium-cta {
  display: inline-block;
  background: var(--re-scs-green-accent);
  color: var(--re-scs-light-text);
  padding: 1rem 2rem;
  border-radius: var(--re-scs-border-radius-md);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--re-scs-transition-normal);
  box-shadow: var(--re-scs-shadow-medium);
}

.re-scs-premium-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--re-scs-shadow-strong);
  color: var(--re-scs-light-text);
}

.re-scs-about-section {
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}

.re-scs-about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.re-scs-about-visual img {
  width: 100%;
  border-radius: var(--re-scs-border-radius-lg);
  box-shadow: var(--re-scs-shadow-strong);
  animation: re-scs-slide-in-left 1s ease-out;
}

.re-scs-about-content h2 {
  margin-bottom: 1.5rem;
  color: var(--re-scs-purple-primary);
}

.re-scs-about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.re-scs-about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.re-scs-about-highlight {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--re-scs-border-radius-md);
  background: var(--re-scs-gradient-secondary);
  color: var(--re-scs-light-text);
  box-shadow: var(--re-scs-shadow-soft);
  transition: var(--re-scs-transition-normal);
  animation: re-scs-fade-in 1s ease-out;
}

.re-scs-about-highlight:nth-child(even) {
  animation-delay: 0.2s;
}

.re-scs-about-highlight:hover {
  transform: translateY(-5px);
  box-shadow: var(--re-scs-shadow-medium);
}

.re-scs-about-highlight i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.re-scs-about-highlight h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.re-scs-about-cta {
  display: inline-block;
  background: var(--re-scs-purple-primary);
  color: var(--re-scs-light-text);
  padding: 1rem 2rem;
  border-radius: var(--re-scs-border-radius-md);
  font-weight: 500;
  transition: var(--re-scs-transition-normal);
}

.re-scs-about-cta:hover {
  background: var(--re-scs-blue-primary);
  transform: translateX(5px);
  color: var(--re-scs-light-text);
}

.re-scs-features-section {
  position: relative;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  border-radius: var(--re-scs-border-radius-lg);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.re-scs-features-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/re-core/re-images/re-bg-img-2.jpg') center/cover no-repeat;
  z-index: -1;
}

.re-scs-features-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--re-scs-gradient-secondary);
  opacity: 0.9;
}

.re-scs-features-content {
  text-align: center;
  color: var(--re-scs-light-text);
  max-width: 1000px;
  z-index: 1;
}

.re-scs-features-content h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.re-scs-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.re-scs-feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--re-scs-border-radius-md);
  text-align: center;
  transition: var(--re-scs-transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: re-scs-fade-in-up 1s ease-out;
}

.re-scs-feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.re-scs-feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

.re-scs-feature-card:nth-child(4) {
  animation-delay: 0.6s;
}

.re-scs-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
}

.re-scs-feature-card i {
  font-size: 3rem;
  color: var(--re-scs-green-accent);
  margin-bottom: 1rem;
  display: block;
}

.re-scs-feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.re-scs-feature-card p {
  font-size: 1.1rem;
}

.re-scs-games-section {
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}

.re-scs-games-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--re-scs-purple-primary);
}

.re-scs-games-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.re-scs-game-card {
  background: white;
  border-radius: var(--re-scs-border-radius-md);
  overflow: hidden;
  box-shadow: var(--re-scs-shadow-soft);
  transition: var(--re-scs-transition-normal);
  position: relative;
  animation: re-scs-fade-in 1s ease-out;
  width: 100%;

}

.re-scs-game-card:nth-child(odd) {
  animation: re-scs-slide-in-left 1s ease-out;
}

.re-scs-game-card:nth-child(even) {
  animation: re-scs-slide-in-right 1s ease-out;
}

.re-scs-game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--re-scs-shadow-medium);
}

.re-scs-game-card:nth-child(1),
.re-scs-game-card:nth-child(2),
.re-scs-game-card:nth-child(3) {
  width: 100%;
  max-width: 420px;
}

.re-scs-game-card:nth-child(4) {
  width: 400px;
  grid-column: 1 / 2;
  left: 55%;
}

.re-scs-game-card:nth-child(5) {
  width: 400px;
  grid-column: 2 / 3;
  left: 50%;
}

.re-scs-game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--re-scs-green-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--re-scs-border-radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.re-scs-game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.re-scs-game-card h3 {
  min-height: 92px;
  padding: 1rem 1rem 0.5rem;
  font-size: 1.3rem;
  color: var(--re-scs-dark-text);
}

.re-scs-game-icons {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.re-scs-game-icons i {
  color: var(--re-scs-purple-primary);
  font-size: 1.2rem;
}

.re-scs-game-link {
  display: block;
  text-align: center;
  background: var(--re-scs-gradient-primary);
  color: white;
  padding: 0.8rem;
  margin: 0 1rem 1rem;
  border-radius: var(--re-scs-border-radius-sm);
  font-weight: 500;
  transition: var(--re-scs-transition-normal);
}

.re-scs-game-link:hover {
  background: var(--re-scs-gradient-secondary);
  color: white;
  transform: scale(1.05);
}

.re-scs-newsletter-section {
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  background: var(--re-scs-gradient-primary);
  border-radius: var(--re-scs-border-radius-lg);
}

.re-scs-newsletter-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.re-scs-newsletter-content {
  color: var(--re-scs-light-text);
}

.re-scs-newsletter-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.re-scs-newsletter-content p {
  font-size: 1.1rem;
}

.re-scs-newsletter-form {
  background: white;
  padding: 2rem 0.4rem;
  border-radius: var(--re-scs-border-radius-md);
  box-shadow: var(--re-scs-shadow-strong);
}

.re-scs-form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.re-scs-input-hint, .re-scs-checkbox-hint {
  font-size: 0.8rem;
  color: var(--re-scs-blue-primary);
  margin-bottom: 0.5rem;
  display: none;
}

.re-scs-form-group input:focus + .re-scs-input-hint,
.re-scs-form-group input:valid + .re-scs-input-hint,
.re-scs-form-group input:invalid:not(:placeholder-shown) + .re-scs-input-hint,
.re-scs-checkbox-label input:focus + .re-scs-checkbox-hint,
.re-scs-checkbox-label input:not(:checked) + .re-scs-checkbox-hint,
.re-scs-form-group textarea:focus + .re-scs-input-hint,
.re-scs-form-group textarea:invalid:not(:placeholder-shown) + .re-scs-input-hint {
  display: block;
}

.re-scs-newsletter-form input[type="email"] {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: var(--re-scs-border-radius-sm);
  font-size: 1rem;
  transition: var(--re-scs-transition-normal);
}

.re-scs-newsletter-form input[type="email"]:focus {
  border-color: var(--re-scs-purple-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
}

.re-scs-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.re-scs-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--re-scs-purple-primary);
}

.re-scs-form-group:focus-within .re-scs-checkbox-hint {
  display: block;
}

.re-scs-newsletter-form button {
  width: 100%;
  padding: 1rem;
  background: var(--re-scs-green-accent);
  color: white;
  border: none;
  border-radius: var(--re-scs-border-radius-sm);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--re-scs-transition-normal);
}

.re-scs-newsletter-form button:not(:disabled):hover {
  background: #27ae60;
  transform: translateY(-2px);
}

.re-scs-newsletter-form button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.re-scs-welcome-section {
  position: relative;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  border-radius: var(--re-scs-border-radius-lg);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.re-scs-welcome-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/re-core/re-images/re-bg-img-3.jpg') center/cover no-repeat;
  z-index: -1;
}

.re-scs-welcome-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--re-scs-gradient-primary);
  opacity: 0.85;
}

.re-scs-welcome-content {
  text-align: center;
  color: var(--re-scs-light-text);
  max-width: 1000px;
  z-index: 1;
}

.re-scs-welcome-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.re-scs-welcome-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.re-scs-welcome-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.re-scs-welcome-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 1rem;
  border-radius: var(--re-scs-border-radius-md);
  text-align: center;
  transition: var(--re-scs-transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: re-scs-fade-in-up 1s ease-out;
}

.re-scs-welcome-card:nth-child(2) {
  animation-delay: 0.2s;
}

.re-scs-welcome-card:nth-child(3) {
  animation-delay: 0.4s;
}

.re-scs-welcome-card:nth-child(4) {
  animation-delay: 0.6s;
}

.re-scs-welcome-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.re-scs-welcome-card i {
  font-size: 2.5rem;
  color: var(--re-scs-green-accent);
  margin-bottom: 1rem;
  display: block;
}

.re-scs-welcome-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.re-scs-welcome-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.re-scs-welcome-cta {
  display: inline-block;
  background: var(--re-scs-green-accent);
  color: var(--re-scs-light-text);
  padding: 1rem 2rem;
  border-radius: var(--re-scs-border-radius-md);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--re-scs-transition-normal);
  box-shadow: var(--re-scs-shadow-medium);
}

.re-scs-welcome-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--re-scs-shadow-strong);
  color: var(--re-scs-light-text);
}

.re-scs-responsible-section {
  position: relative;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  border-radius: var(--re-scs-border-radius-lg);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.re-scs-responsible-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/re-core/re-images/re-bg-img-4.jpg') center/cover no-repeat;
  z-index: -1;
}

.re-scs-responsible-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--re-scs-gradient-secondary);
  opacity: 0.9;
}

.re-scs-responsible-content {
  position: relative;
  text-align: center;
  color: var(--re-scs-light-text);
  width: 100%;
  max-width: 1000px;
  z-index: 1;
}

.re-scs-responsible-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.re-scs-responsible-content p {
  width: 100%;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.re-scs-responsible-content p a {
  color: var(--re-scs-green-accent);
  text-decoration: underline;
}

.re-scs-responsible-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.re-scs-responsible-partners a, .re-scs-responsible-partners img {
  transition: var(--re-scs-transition-normal);
}

.re-scs-responsible-partners a:hover {
  transform: scale(1.1);
}

.re-scs-faq-section {
  position: relative;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  border-radius: var(--re-scs-border-radius-lg);
  overflow: hidden;
  min-height: 500px;
}

.re-scs-faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/re-core/re-images/re-bg-img-5.jpg') center/cover no-repeat;
  z-index: -1;
}

.re-scs-faq-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--re-scs-gradient-primary);
  opacity: 0.85;
}

.re-scs-faq-content {
  color: var(--re-scs-light-text);
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.re-scs-faq-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.re-scs-faq-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.re-scs-faq-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--re-scs-green-accent);
  border-bottom: 2px solid var(--re-scs-green-accent);
  padding-bottom: 0.5rem;
}

.re-scs-faq-item {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--re-scs-border-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.re-scs-faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--re-scs-light-text);
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--re-scs-transition-normal);
}

.re-scs-faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.re-scs-faq-question i {
  transition: var(--re-scs-transition-normal);
}

.re-scs-faq-question.active i {
  transform: rotate(180deg);
}

.re-scs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.re-scs-faq-answer.active {
  max-height: 500px;
}

.re-scs-faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  font-size: 1rem;
}

.re-scs-faq-answer a {
  color: var(--re-scs-green-accent);
  text-decoration: underline;
}

.re-scs-faq-cta {
  display: inline-block;
  margin-top: 2rem;
  background: var(--re-scs-green-accent);
  color: var(--re-scs-light-text);
  padding: 1rem 2rem;
  border-radius: var(--re-scs-border-radius-md);
  font-weight: 500;
  transition: var(--re-scs-transition-normal);
}

.re-scs-faq-cta:hover {
  background: #27ae60;
  transform: translateX(5px);
  color: var(--re-scs-light-text);
}

.re-scs-testimonials-section {
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}

.re-scs-testimonials-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--re-scs-purple-primary);
}

.re-scs-testimonials-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.re-scs-testimonial-card {
  background: white;
  border-radius: var(--re-scs-border-radius-md);
  padding: 2rem;
  box-shadow: var(--re-scs-shadow-soft);
  position: relative;
  transition: var(--re-scs-transition-normal);
  animation: re-scs-fade-in 1s ease-out;
}

.re-scs-testimonial-card:nth-child(odd) {
  animation: re-scs-slide-in-left 1s ease-out;
}

.re-scs-testimonial-card:nth-child(even) {
  animation: re-scs-slide-in-right 1s ease-out;
}

.re-scs-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--re-scs-shadow-medium);
}

.re-scs-testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.re-scs-testimonial-content h3 {
  margin-bottom: 0.5rem;
  color: var(--re-scs-purple-primary);
}

.re-scs-testimonial-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.re-scs-testimonial-rating i {
  color: #f1c40f;
  font-size: 1.2rem;
}

.re-scs-testimonial-content p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.re-scs-testimonial-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #777;
}

.re-scs-testimonial-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--re-scs-purple-primary);
  opacity: 0.2;
}

.re-scs-contact-section {
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  background: var(--re-scs-gradient-primary);
  border-radius: var(--re-scs-border-radius-lg);
}

.re-scs-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.re-scs-contact-info {
  color: var(--re-scs-light-text);
}

.re-scs-contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.re-scs-contact-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.re-scs-contact-details {
  margin-bottom: 2rem;
}

.re-scs-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.re-scs-contact-item i {
  font-size: 1.5rem;
  color: var(--re-scs-green-accent);
}

.re-scs-contact-item a, .re-scs-contact-item span {
  color: var(--re-scs-light-text);
  font-size: 1.1rem;
}

.re-scs-contact-logo {
  width: 150px;
  margin-top: 2rem;
}

.re-scs-contact-form {
  background: white;
  padding: 2rem 0.4rem;
  border-radius: var(--re-scs-border-radius-md);
  box-shadow: var(--re-scs-shadow-strong);
}

.re-scs-contact-form .re-scs-form-group {
  margin-bottom: 1.5rem;
}

.re-scs-contact-form input, .re-scs-contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: var(--re-scs-border-radius-sm);
  font-size: 1rem;
  font-family: 'Work Sans', sans-serif;
  transition: var(--re-scs-transition-normal);
}

.re-scs-contact-form input:focus, .re-scs-contact-form textarea:focus {
  border-color: var(--re-scs-purple-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
}

.re-scs-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.re-scs-contact-form button {
  width: 100%;
  padding: 1rem;
  background: var(--re-scs-green-accent);
  color: white;
  border: none;
  border-radius: var(--re-scs-border-radius-sm);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--re-scs-transition-normal);
}

.re-scs-contact-form button:not(:disabled):hover {
  background: #27ae60;
  transform: translateY(-2px);
}

.re-scs-contact-form button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.re-scs-success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.re-scs-success-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 320px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  animation: fadeInUp 0.4s ease;
}

.re-scs-success-icon {
  font-size: 60px;
  color: #2ecc71;
  margin-bottom: 15px;
}

#re-scs-success-close,
#re-scs-newsletter-success-close {
  background: var(--re-scs-purple-primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--re-scs-border-radius-sm, 6px);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#re-scs-success-close:hover,
#re-scs-newsletter-success-close:hover {
  background: #6d2ca1;
}

#re-scs-success-close:focus,
#re-scs-newsletter-success-close:focus {
  outline: 2px solid var(--re-scs-blue-primary);
  outline-offset: 3px;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.re-scs-footer {
  background: var(--re-scs-dark-background);
  color: var(--re-scs-light-text);
  padding: 3rem 0 1rem;
}

.re-scs-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.re-scs-footer-primary {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.re-scs-footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--re-scs-light-text);
}

.re-scs-footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0;
}

.re-scs-footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.re-scs-footer-nav a {
  color: var(--re-scs-light-text);
  font-size: 0.9rem;
  transition: var(--re-scs-transition-normal);
}

.re-scs-footer-nav a:hover {
  color: var(--re-scs-green-accent);
}

.re-scs-footer-secondary {
  text-align: center;
  padding-top: 1rem;
}

.re-scs-footer-secondary p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0;
}

.re-scs-cookies-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--re-scs-dark-background);
  color: var(--re-scs-light-text);
  padding: 1.5rem 2rem;
  z-index: 2000;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.re-scs-cookies-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.re-scs-cookies-content p {
  margin-bottom: 0;
  flex: 1;
  font-size: 0.9rem;
}

.re-scs-cookies-content a {
  color: var(--re-scs-green-accent);
  text-decoration: underline;
  margin: 0 1rem;
}

.re-scs-cookies-content button {
  background: var(--re-scs-green-accent);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--re-scs-border-radius-sm);
  cursor: pointer;
  transition: var(--re-scs-transition-normal);
  white-space: nowrap;
}

.re-scs-cookies-content button:hover {
  background: #27ae60;
}

.re-scs-age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 2rem;
}

.re-scs-age-content {
  background: white;
  padding: 3rem;
  border-radius: var(--re-scs-border-radius-lg);
  text-align: center;
  max-width: 600px;
  box-shadow: var(--re-scs-shadow-strong);
  animation: re-scs-scale-in 0.5s ease-out;
}

.re-scs-age-content h2 {
  color: var(--re-scs-purple-primary);
  margin-bottom: 1.5rem;
}

.re-scs-age-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.re-scs-age-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.re-scs-age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.re-scs-age-buttons button {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--re-scs-border-radius-md);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--re-scs-transition-normal);
}

#re-scs-age-confirm {
  background: var(--re-scs-green-accent);
  color: white;
}

#re-scs-age-confirm:hover {
  background: #27ae60;
  transform: scale(1.05);
}

#re-scs-age-deny {
  background: #e74c3c;
  color: white;
}

#re-scs-age-deny:hover {
  background: #c0392b;
  transform: scale(1.05);
}

.re-scs-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--re-scs-purple-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--re-scs-transition-normal);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: var(--re-scs-shadow-medium);
}

.re-scs-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.re-scs-scroll-top:hover {
  background: var(--re-scs-blue-primary);
  transform: translateY(-5px);
}

@keyframes re-scs-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes re-scs-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes re-scs-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes re-scs-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes re-scs-scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes re-scs-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .re-scs-games-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .re-scs-game-card:nth-child(4) {    
    width: 100%;
    max-width: 400px;
    grid-column: 2 / 2;
    left: 0;
  }

  .re-scs-game-card:nth-child(5) {
    width: 100%;
    max-width: 400px;    
    grid-column: 1;
    left: 0;
  }
  
  .re-scs-testimonials-container {
    grid-template-columns: 1fr;
    max-width: 800px;
  }
  
  .re-scs-about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .re-scs-faq-categories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .re-scs-header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .re-scs-header-nav-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .re-scs-header-nav {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 0.5rem;
  }
  
  .re-scs-header-nav.active {
    display: flex;
  }
  
  .re-scs-header-nav-link {
    text-align: center;
    padding: 0.8rem;
  }
  
  .re-scs-premium-content h1 {
    font-size: 2.2rem;
  }
  
  .re-scs-features-grid {
    grid-template-columns: 1fr;
  }
  
  .re-scs-newsletter-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .re-scs-welcome-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .re-scs-responsible-partners {
    flex-direction: column;
  }
  
  .re-scs-contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .re-scs-footer-primary {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .re-scs-footer-social {
    justify-content: center;
  }
  
  .re-scs-cookies-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .re-scs-age-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .re-scs-premium-section,
  .re-scs-features-section,
  .re-scs-welcome-section,
  .re-scs-responsible-section,
  .re-scs-faq-section {
    padding: 2rem 0.5rem;
    min-height: 400px;
  }
  
  .re-scs-about-section,
  .re-scs-games-section,
  .re-scs-newsletter-section,
  .re-scs-testimonials-section,
  .re-scs-contact-section {
    padding: 2rem 0.5rem;
  }
  
  .re-scs-premium-content h1 {
    font-size: 1.8rem;
  }
  
  .re-scs-premium-content p {
    font-size: 1rem;
  }
  
  .re-scs-about-highlights {
    grid-template-columns: 1fr;
  }
  
  .re-scs-welcome-cards {
    grid-template-columns: 1fr;
  }

  .re-scs-games-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .re-scs-game-card {
    margin-bottom: 2rem;
  }

  .re-scs-game-card:nth-child(4) {    
    width: 100%;
    max-width: 400px;
    grid-column: 1;
    left: 0;
  }

  .re-scs-game-card:nth-child(5) {
    width: 100%;
    max-width: 400px;    
    grid-column: 1;
    left: 0;
  }
    
  .re-scs-testimonials-container {
    grid-template-columns: 1fr;
  }

  .re-scs-faq-item {
    width: 95%;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }

  .re-scs-faq-category h3 {
    font-size: 1.6rem;
  }

  .re-scs-responsible-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .re-scs-header-brand {
    flex-direction: column;
    text-align: center;
  }
  
  .re-scs-premium-content h1 {
    font-size: 1.5rem;
  }
  
  .re-scs-premium-icons {
    gap: 1rem;
  }
  
  .re-scs-premium-icons i {
    font-size: 2rem;
  }
  
  .re-scs-age-content {
    padding: 2rem 1rem;
  }
  
  .re-scs-age-partners img {
    width: 100px;
    height: 50px;
  }

  .re-scs-contact-item a {
    font-size: .8rem;
  }
}

.repages-error-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.repages-error-hero {
  text-align: center;
  padding: 2rem;
  width: 100%;
}

.repages-error-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.repages-error-icon {
  margin-bottom: 2rem;
}

.repages-error-icon i {
  font-size: 5rem;
  color: #ff6b6b;
  animation: repages-pulse 2s infinite;
}

.repages-error-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.repages-error-hero > p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  min-height: 1.8rem;
}

.repages-error-content {
  margin-bottom: 2rem;
}

.repages-error-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #777;
  margin-bottom: 2rem;
  min-height: 5rem;
}

.repages-error-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.repages-error-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
  color: white;
}

.repages-error-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.repages-error-icons i {
  font-size: 2rem;
  color: #6a11cb;
  animation: repages-float 3s infinite;
}

.repages-error-icons i:nth-child(2) {
  animation-delay: 0.5s;
}

.repages-error-icons i:nth-child(3) {
  animation-delay: 1s;
}

@keyframes repages-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes repages-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .repages-error-container {
    padding: 2rem;
  }
  
  .repages-error-icon i {
    font-size: 4rem;
  }
  
  .repages-error-hero h1 {
    font-size: 2rem;
  }
  
  .repages-error-hero > p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .repages-error-container {
    padding: 1.5rem;
  }
  
  .repages-error-icon i {
    font-size: 3.5rem;
  }
  
  .repages-error-hero h1 {
    font-size: 1.8rem;
  }
  
  .repages-error-hero > p {
    font-size: 1rem;
  }
  
  .repages-error-content p {
    font-size: 1rem;
  }
  
  .repages-error-button {
    padding: 0.8rem 1.5rem;
  }
  
  .repages-error-icons i {
    font-size: 1.5rem;
  }
}

.repages-responsible-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
}

.repages-responsible-hero {
  background: linear-gradient(135deg, #da22ff 0%, #9733ee 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.repages-responsible-container {
  max-width: 800px;
  margin: 0 auto;
}

.repages-responsible-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  min-height: 3.5rem;
}

.repages-responsible-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  min-height: 1.8rem;
}

.repages-responsible-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.repages-responsible-icons i {
  font-size: 3rem;
  color: #fff;
  animation: repages-spin 3s infinite;
}

.repages-responsible-content {
  padding: 0 2rem 4rem;
}

.repages-responsible-article {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.repages-responsible-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #f1f1f1;
  animation: repages-fade-in-up 0.8s ease-out;
}

.repages-responsible-item:nth-child(even) {
  animation: repages-fade-in-down 0.8s ease-out;
}

.repages-responsible-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.repages-responsible-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #da22ff 0%, #9733ee 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(218, 34, 255, 0.3);
}

.repages-responsible-icon i {
  font-size: 2.5rem;
  color: white;
}

.repages-responsible-text h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  min-height: 2.2rem;
}

.repages-responsible-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  min-height: 5rem;
}

@keyframes repages-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes repages-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes repages-fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .repages-responsible-hero {
    padding: 3rem 1.5rem;
  }
  
  .repages-responsible-hero h1 {
    font-size: 2.2rem;
  }
  
  .repages-responsible-content {
    padding: 0 1.5rem 3rem;
  }
  
  .repages-responsible-article {
    padding: 2rem;
  }
  
  .repages-responsible-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .repages-responsible-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .repages-responsible-hero h1 {
    font-size: 1.8rem;
  }
  
  .repages-responsible-hero p {
    font-size: 1rem;
  }
  
  .repages-responsible-icons {
    gap: 1.5rem;
  }
  
  .repages-responsible-icons i {
    font-size: 2.5rem;
  }
  
  .repages-responsible-text h2 {
    font-size: 1.5rem;
  }
  
  .repages-responsible-text p {
    font-size: 1rem;
  }

  .repages-responsible-text a {
    font-size: .8rem;
  }
}

.repages-cookie-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
}

.repages-cookie-hero {
  background: linear-gradient(135deg, #00cdac 0%, #02aab0 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.repages-cookie-container {
  max-width: 800px;
  margin: 0 auto;
}

.repages-cookie-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  min-height: 3.5rem;
}

.repages-cookie-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  min-height: 1.8rem;
}

.repages-cookie-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.repages-cookie-icons i {
  font-size: 3rem;
  color: #fff;
  animation: repages-bounce 2s infinite;
}

.repages-cookie-content {
  padding: 0 2rem 4rem;
}

.repages-cookie-article {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.repages-cookie-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #f1f1f1;
  animation: repages-fade-in 0.8s ease-out;
}

.repages-cookie-item:nth-child(even) {
  animation-delay: 0.1s;
}

.repages-cookie-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.repages-cookie-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00cdac 0%, #02aab0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(2, 170, 176, 0.3);
}

.repages-cookie-icon i {
  font-size: 2.5rem;
  color: white;
}

.repages-cookie-text h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  min-height: 2.2rem;
}

.repages-cookie-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  min-height: 5rem;
}

@keyframes repages-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

@keyframes repages-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .repages-cookie-hero {
    padding: 3rem 1.5rem;
  }
  
  .repages-cookie-hero h1 {
    font-size: 2.2rem;
  }
  
  .repages-cookie-content {
    padding: 0 1.5rem 3rem;
  }
  
  .repages-cookie-article {
    padding: 2rem;
  }
  
  .repages-cookie-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .repages-cookie-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .repages-cookie-hero h1 {
    font-size: 1.8rem;
  }
  
  .repages-cookie-hero p {
    font-size: 1rem;
  }
  
  .repages-cookie-icons {
    gap: 1.5rem;
  }
  
  .repages-cookie-icons i {
    font-size: 2.5rem;
  }
  
  .repages-cookie-text h2 {
    font-size: 1.5rem;
  }
  
  .repages-cookie-text p {
    font-size: 1rem;
  }

  .repages-cookie-text a {
    font-size: .8rem;
  }
}

.repages-terms-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
}

.repages-terms-hero {
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.repages-terms-container {
  max-width: 800px;
  margin: 0 auto;
}

.repages-terms-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  min-height: 3.5rem;
}

.repages-terms-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  min-height: 1.8rem;
}

.repages-terms-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.repages-terms-icons i {
  font-size: 3rem;
  color: #fff;
  animation: repages-rotate 3s infinite;
}

.repages-terms-content {
  padding: 0 2rem 4rem;
}

.repages-terms-article {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.repages-terms-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #f1f1f1;
  animation: repages-slide-in-right 0.8s ease-out;
}

.repages-terms-item:nth-child(even) {
  animation: repages-slide-in-left 0.8s ease-out;
}

.repages-terms-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.repages-terms-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.repages-terms-icon i {
  font-size: 2.5rem;
  color: white;
}

.repages-terms-text h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  min-height: 2.2rem;
}

.repages-terms-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  min-height: 5rem;
}

@keyframes repages-rotate {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes repages-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes repages-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .repages-terms-hero {
    padding: 3rem 1.5rem;
  }
  
  .repages-terms-hero h1 {
    font-size: 2.2rem;
  }
  
  .repages-terms-content {
    padding: 0 1.5rem 3rem;
  }
  
  .repages-terms-article {
    padding: 2rem;
  }
  
  .repages-terms-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .repages-terms-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .repages-terms-hero h1 {
    font-size: 1.8rem;
  }
  
  .repages-terms-hero p {
    font-size: 1rem;
  }
  
  .repages-terms-icons {
    gap: 1.5rem;
  }
  
  .repages-terms-icons i {
    font-size: 2.5rem;
  }
  
  .repages-terms-text h2 {
    font-size: 1.5rem;
  }
  
  .repages-terms-text p {
    font-size: 1rem;
  }

  .repages-terms-text a {
    font-size: .8rem;
  }
}

.repages-privacy-main {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
}

.repages-privacy-hero {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.repages-privacy-container {
  max-width: 800px;
  margin: 0 auto;
}

.repages-privacy-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  min-height: 3.5rem;
}

.repages-privacy-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  min-height: 1.8rem;
}

.repages-privacy-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.repages-privacy-icons i {
  font-size: 3rem;
  color: #ffdd40;
  animation: repages-pulse 2s infinite;
}

.repages-privacy-content {
  padding: 0 2rem 4rem;
}

.repages-privacy-article {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.repages-privacy-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #f1f1f1;
  animation: repages-fade-in-up 0.8s ease-out;
}

.repages-privacy-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.repages-privacy-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.repages-privacy-icon i {
  font-size: 2.5rem;
  color: white;
}

.repages-privacy-text h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  min-height: 2.2rem;
}

.repages-privacy-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  min-height: 5rem;
}

@keyframes repages-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes repages-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .repages-privacy-hero {
    padding: 3rem 1.5rem;
  }
  
  .repages-privacy-hero h1 {
    font-size: 2.2rem;
  }
  
  .repages-privacy-content {
    padding: 0 1.5rem 3rem;
  }
  
  .repages-privacy-article {
    padding: 2rem;
  }
  
  .repages-privacy-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .repages-privacy-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .repages-privacy-hero h1 {
    font-size: 1.8rem;
  }
  
  .repages-privacy-hero p {
    font-size: 1rem;
  }
  
  .repages-privacy-icons {
    gap: 1.5rem;
  }
  
  .repages-privacy-icons i {
    font-size: 2.5rem;
  }
  
  .repages-privacy-text h2 {
    font-size: 1.5rem;
  }
  
  .repages-privacy-text p {
    font-size: 1rem;
  }

  .repages-privacy-text a {
    font-size: .8rem;
  }
}