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

:root {
  --rn-gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --rn-gradient-secondary: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  --rn-gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --rn-gradient-dark: linear-gradient(135deg, #434343 0%, #000000 100%);
  --rn-color-text-primary: #2d3748;
  --rn-color-text-secondary: #718096;
  --rn-color-background: #302626;
  --rn-color-surface: #f7fafc;
  --rn-color-border: #e2e8f0;
  --rn-shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.07);
  --rn-shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --rn-shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --rn-border-radius-sm: 8px;
  --rn-border-radius-md: 12px;
  --rn-border-radius-lg: 16px;
  --rn-transition-fast: 0.2s ease;
  --rn-transition-normal: 0.3s ease;
  --rn-transition-slow: 0.5s ease;
}

body {
  font-family: 'Fira Sans', sans-serif;
  line-height: 1.6;
  color: var(--rn-color-text-primary);
  background: var(--rn-color-background);
  overflow-x: hidden;
}

.rn-age_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.rn-age_container {
  background: var(--rn-gradient-dark);
  padding: 2.5rem;
  border-radius: var(--rn-border-radius-lg);
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--rn-shadow-large);
}

.rn-age_icon {
  font-size: 3rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.rn-age_title {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.rn-age_text {
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.rn-age_buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.rn-age_confirm, .rn-age_deny {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--rn-border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--rn-transition-fast);
}

.rn-age_confirm {
  background: var(--rn-gradient-primary);
  color: white;
}

.rn-age_deny {
  background: #718096;
  color: white;
}

.rn-age_confirm:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-age_deny:hover {
  background: #4a5568;
}

.rn-cookies_notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--rn-gradient-secondary);
  padding: 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.rn-cookies_notice.show {
  transform: translateY(0);
}

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

.rn-cookies_content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.rn-cookies_icon {
  font-size: 2rem;
  color: #6a11cb;
}

.rn-cookies_text {
  color: var(--rn-color-text-primary);
  flex: 1;
}

.rn-cookies_link {
  color: #6a11cb;
  text-decoration: underline;
}

.rn-cookies_accept {
  padding: 0.75rem 1.5rem;
  background: var(--rn-gradient-primary);
  color: white;
  border: none;
  border-radius: var(--rn-border-radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: var(--rn-transition-fast);
}

.rn-cookies_accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-header_container {
  background: var(--rn-gradient-primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.rn-header_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rn-header_logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rn-header_logoimg {
  height: 40px;
  width: auto;
}

.rn-header_logotext {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

.rn-header_nav {
  display: flex;
  gap: 2rem;
}

.rn-header_navlink {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--rn-transition-fast);
  position: relative;
}

.rn-header_navlink::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: var(--rn-transition-fast);
}

.rn-header_navlink:hover::after {
  width: 100%;
}

.rn-header_contact {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--rn-border-radius-md);
}

.rn-header_contact:hover {
  background: rgba(255, 255, 255, 0.3);
}

.rn-header_burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.rn-header_burgerline {
  width: 25px;
  height: 3px;
  background: white;
  transition: var(--rn-transition-normal);
  border-radius: 2px;
}

.rn-header_burgerline-top.active {
  transform: rotate(45deg) translate(5px, 5px);
}

.rn-header_burgerline-middle.active {
  opacity: 0;
}

.rn-header_burgerline-bottom.active {
  transform: rotate(-45deg) translate(5px, -5px);
}

.rn-welcome_section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.rn-welcome_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/rn-core/rn-images/rn-bg-image-1.webp') center/cover no-repeat;
  opacity: 0.1;
}

.rn-welcome_content {
  text-align: center;
  max-width: 1000px;
  z-index: 1;
}

.rn-welcome_title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--rn-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rn-welcome_text {
  font-size: 1.2rem;
  color: var(--rn-color-text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rn-welcome_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.rn-welcome_card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--rn-border-radius-lg);
  box-shadow: var(--rn-shadow-soft);
  transition: var(--rn-transition-normal);
}

.rn-welcome_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-welcome_icon {
  font-size: 2.5rem;
  color: #6a11cb;
  margin-bottom: 1rem;
}

.rn-welcome_cardtitle {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--rn-color-text-primary);
}

.rn-welcome_cardtext {
  color: var(--rn-color-text-secondary);
  line-height: 1.6;
}

.rn-welcome_button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--rn-gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--rn-border-radius-md);
  font-weight: 600;
  transition: var(--rn-transition-normal);
}

.rn-welcome_button:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-about_section {
  padding: 6rem 2rem;
  background: var(--rn-color-surface);
}

.rn-about_container {
  max-width: 1200px;
  margin: 0 auto;
}

.rn-about_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.rn-about_block:last-child {
  margin-bottom: 0;
}

.rn-about_imagecontainer {
  position: relative;
  border-radius: var(--rn-border-radius-lg);
  overflow: hidden;
  box-shadow: var(--rn-shadow-large);
}

.rn-about_image {
  width: 100%;
  max-width: 568px;
  height: 400px;
  transition: var(--rn-transition-slow);
}

.rn-about_image:hover {
  transform: scale(1.05);
}

.rn-about_textcontent {
  padding: 2rem;
}

.rn-about_title {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--rn-color-text-primary);
}

.rn-about_text {
  font-size: 1.1rem;
  color: var(--rn-color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.rn-about_minicards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.rn-about_minicard {
  background: white;
  padding: 1rem;
  border-radius: var(--rn-border-radius-md);
  text-align: center;
  box-shadow: var(--rn-shadow-soft);
  transition: var(--rn-transition-fast);
}

.rn-about_minicard:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-about_miniicon {
  font-size: 1.5rem;
  color: #6a11cb;
  margin-bottom: 0.5rem;
}

.rn-about_minitext {
  font-size: 0.9rem;
  color: var(--rn-color-text-primary);
  font-weight: 500;
}

.rn-about_link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--rn-gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--rn-border-radius-md);
  font-weight: 600;
  transition: var(--rn-transition-normal);
}

.rn-about_link:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-platforms_section {
  padding: 6rem 2rem;
  background: white;
}

.rn-platforms_container {
  width: 100%;
  margin: 0 auto;
}

.rn-platforms_maintitle {
  font-family: 'Prata', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--rn-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rn-platforms_maintext {
  text-align: center;
  color: var(--rn-color-text-secondary);
  margin-bottom: 4rem;
  font-size: 1.2rem;
}

.rn-platforms_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.rn-platforms_card {
  height: 100%;
  min-height: 655px;
  background: rgb(66, 35, 35);
  padding: 2rem;
  border-radius: var(--rn-border-radius-lg);
  box-shadow: var(--rn-shadow-soft);
  transition: var(--rn-transition-normal);
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.rn-platforms_card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--rn-gradient-primary);
  border-radius: var(--rn-border-radius-lg);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rn-platforms_card:hover::before {
  opacity: 1;
}

.rn-platforms_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rn-shadow-large);
}

.rn-platforms_tag {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--rn-gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--rn-border-radius-md);
  font-size: 0.8rem;
  font-weight: 600;
}

.rn-platforms_logo {
  width: 100%;
  max-width: 280px;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}

.rn-platforms_name {
  min-height: 78px;
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--rn-color-surface);
}

.rn-platforms_features {
  list-style: none;
  margin-bottom: 2rem;
  min-height: 188px;
}

.rn-platforms_feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--rn-color-border);
}

.rn-platforms_feature i {
  color: #48bb78;
}

.rn-platforms_rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rn-platforms_stars {
  color: #fbbf24;
}

.rn-platforms_score {
  font-weight: 600;
  color: var(--rn-color-surface);
}

.rn-platforms_button {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--rn-gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--rn-border-radius-md);
  font-weight: 600;
  transition: var(--rn-transition-normal);
}

.rn-platforms_button:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-popular_container {
  margin-top: 6rem;
}

.rn-popular_title {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--rn-color-text-primary);
}

.rn-popular_text {
  text-align: center;
  color: var(--rn-color-text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.rn-popular_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.rn-popular_card {
  height: 100%;
  min-height: 530px;
  background: rgb(73, 52, 52);
  padding: 2rem;
  border-radius: var(--rn-border-radius-lg);
  box-shadow: var(--rn-shadow-soft);
  transition: var(--rn-transition-normal);
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.rn-popular_card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--rn-gradient-accent);
  border-radius: var(--rn-border-radius-lg);
  z-index: -1;
}

.rn-popular_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rn-shadow-large);
}

.rn-popular_badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rn-gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--rn-border-radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.rn-popular_logo {
  width: 100%;
  max-width: 250px;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
  margin: 1rem auto 1.5rem;
  display: block;
}

.rn-popular_name {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--rn-color-surface);
}

.rn-popular_features {
  list-style: none;
  margin-bottom: 2rem;
}

.rn-popular_feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--rn-color-border);
}

.rn-popular_feature i {
  color: #48bb78;
}

.rn-popular_rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rn-popular_stars {
  color: #fbbf24;
}

.rn-popular_score {
  font-weight: 600;
  color: var(--rn-color-surface);
}

.rn-popular_links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.rn-popular_links .rn-popular_button {
  flex: 1 1 200px;
}

.rn-popular_button {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--rn-gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--rn-border-radius-md);
  font-weight: 600;
  transition: var(--rn-transition-normal);
}

.rn-popular_button:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-advantages_section {
  position: relative;
  padding: 6rem 2rem;
  background: var(--rn-color-surface);
}

.rn-advantages_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/rn-core/rn-images/rn-bg-image-2.webp') center/cover no-repeat;
  opacity: 0.05;
}

.rn-advantages_content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.rn-advantages_title {
  font-family: 'Prata', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--rn-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rn-advantages_text {
  font-size: 1.2rem;
  color: var(--rn-color-text-secondary);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rn-advantages_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rn-advantages_card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--rn-border-radius-lg);
  box-shadow: var(--rn-shadow-soft);
  transition: var(--rn-transition-normal);
  text-align: center;
}

.rn-advantages_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-advantages_icon {
  font-size: 3rem;
  color: #6a11cb;
  margin-bottom: 1.5rem;
}

.rn-advantages_cardtitle {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--rn-color-text-primary);
}

.rn-advantages_cardtext {
  color: var(--rn-color-text-secondary);
  line-height: 1.6;
}

.rn-subscribe_section {
  padding: 6rem 2rem;
  background: white;
}

.rn-subscribe_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rn-subscribe_content {
  padding-right: 2rem;
  width: 100%;
  max-width: 536px;
}

.rn-subscribe_title {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--rn-color-text-primary);
}

.rn-subscribe_text {
  font-size: 1.1rem;
  color: var(--rn-color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.rn-subscribe_features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rn-subscribe_featureitem {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rn-subscribe_featureicon {
  font-size: 1.5rem;
  color: #6a11cb;
}

.rn-subscribe_featuretext {
  color: var(--rn-color-text-primary);
  font-weight: 500;
}

.rn-subscribe_formcontainer {
  background: var(--rn-color-surface);
  padding: 2.5rem;
  border-radius: var(--rn-border-radius-lg);
  box-shadow: var(--rn-shadow-soft);
}

.rn-subscribe_form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rn-subscribe_inputgroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rn-subscribe_label {
  font-weight: 600;
  color: var(--rn-color-text-primary);
}

.rn-subscribe_input {
  padding: 1rem;
  border: 2px solid var(--rn-color-border);
  border-radius: var(--rn-border-radius-md);
  font-size: 1rem;
  transition: var(--rn-transition-fast);
}

.rn-subscribe_input:focus {
  outline: none;
  border-color: #6a11cb;
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.rn-subscribe_error {
  color: #e53e3e;
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.rn-subscribe_checkgroup {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.rn-subscribe_checkbox {
  margin-top: 0.2rem;
}

.rn-subscribe_checklabel {
  font-size: 0.9rem;
  color: var(--rn-color-text-secondary);
  line-height: 1.4;
}

.rn-subscribe_link {
  color: #6a11cb;
  text-decoration: underline;
}

.rn-subscribe_button {
  padding: 1rem 2rem;
  background: var(--rn-gradient-primary);
  color: white;
  border: none;
  border-radius: var(--rn-border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--rn-transition-normal);
}

.rn-subscribe_button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-subscribe_button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.rn-subscribe_success {
  text-align: center;
  padding: 2rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rn-subscribe_successicon {
  font-size: 3rem;
  color: #48bb78;
  margin-bottom: 1rem;
}

.rn-subscribe_successtitle {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--rn-color-text-primary);
}

.rn-subscribe_successtext {
  color: var(--rn-color-text-secondary);
  margin-bottom: 2rem;
}

.rn-subscribe_successbuttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.rn-subscribe_unsubscribe, .rn-subscribe_changeemail {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--rn-color-border);
  background: white;
  color: var(--rn-color-text-primary);
  border-radius: var(--rn-border-radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: var(--rn-transition-fast);
}

.rn-subscribe_unsubscribe:hover, .rn-subscribe_changeemail:hover {
  border-color: #6a11cb;
  color: #6a11cb;
}

.rn-subscribe_graphic {
  display: none;
}

.rn-faq_section {
  position: relative;
  padding: 6rem 2rem;
  background: var(--rn-color-surface);
}

.rn-faq_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/rn-core/rn-images/rn-bg-image-3.webp') center/cover no-repeat;
  opacity: 0.03;
}

.rn-faq_content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.rn-faq_title {
  font-family: 'Prata', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--rn-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rn-faq_text {
  font-size: 1.2rem;
  color: var(--rn-color-text-secondary);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rn-faq_columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.rn-faq_subtitle {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--rn-color-text-primary);
}

.rn-faq_item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rn-color-border);
}

.rn-faq_question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  color: var(--rn-color-text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.rn-faq_icon {
  transition: var(--rn-transition-fast);
  flex-shrink: 0;
}

.rn-faq_question.active .rn-faq_icon {
  transform: rotate(180deg);
}

.rn-faq_answer {
  padding: 0 0 1.5rem 0;
  color: var(--rn-color-text-secondary);
  line-height: 1.6;
  display: none;
}

.rn-faq_answer.show {
  display: block;
}

.rn-faq_button {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 2.5rem;
  background: var(--rn-gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--rn-border-radius-md);
  font-weight: 600;
  transition: var(--rn-transition-normal);
}

.rn-faq_button:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-welcome2_section {
  position: relative;
  padding: 6rem 2rem;
  background: white;
}

.rn-welcome2_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/rn-core/rn-images/rn-bg-image-4.webp') center/cover no-repeat;
  opacity: 0.03;
}

.rn-welcome2_content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.rn-welcome2_title {
  font-family: 'Prata', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--rn-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rn-welcome2_text {
  font-size: 1.2rem;
  color: var(--rn-color-text-secondary);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rn-welcome2_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rn-welcome2_card {
  background: var(--rn-color-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--rn-border-radius-lg);
  box-shadow: var(--rn-shadow-soft);
  transition: var(--rn-transition-normal);
  text-align: center;
}

.rn-welcome2_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-welcome2_icon {
  font-size: 3rem;
  color: #6a11cb;
  margin-bottom: 1.5rem;
}

.rn-welcome2_cardtitle {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--rn-color-text-primary);
}

.rn-welcome2_cardtext {
  color: var(--rn-color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.rn-welcome2_cardlink {
  color: #6a11cb;
  text-decoration: none;
  font-weight: 600;
  transition: var(--rn-transition-fast);
}

.rn-welcome2_cardlink:hover {
  text-decoration: underline;
}

.rn-responsible_section {
  padding: 6rem 2rem;
  background: var(--rn-gradient-secondary);
}

.rn-responsible_container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.rn-responsible_content {
  margin-bottom: 3rem;
}

.rn-responsible_title {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--rn-color-text-primary);
}

.rn-responsible_text {
  font-size: 1.1rem;
  color: var(--rn-color-text-primary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.rn-responsible_link {
  color: #6a11cb;
  text-decoration: underline;
  font-weight: 600;
}

.rn-responsible_button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--rn-gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--rn-border-radius-md);
  font-weight: 600;
  transition: var(--rn-transition-normal);
}

.rn-responsible_button:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-responsible_partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}

.rn-responsible_partner {
  background: black;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--rn-border-radius-md);
  box-shadow: var(--rn-shadow-soft);
  transition: var(--rn-transition-normal);
}

.rn-responsible_partner:hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-responsible_partner img {
  width: 100%;
  height: auto;
  min-height: 52px;
  object-fit: contain;
}

.rn-responsible_age {
  background: black;
  padding: 1.5rem;
  border-radius: var(--rn-border-radius-md);
  box-shadow: var(--rn-shadow-soft);
  max-height: 107.59px;
}

.rn-responsible_age img {
  width: 100%;
  min-height: 50px;
}

.rn-contact_section {
  padding: 6rem 2rem;
  background: white;
}

.rn-contact_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.rn-contact_content {
  padding-right: 2rem;
}

.rn-contact_title {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--rn-color-text-primary);
}

.rn-contact_text {
  font-size: 1.1rem;
  color: var(--rn-color-text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.rn-contact_info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rn-contact_infoitem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rn-contact_infoicon {
  font-size: 2rem;
  color: #6a11cb;
  flex-shrink: 0;
}

.rn-contact_infotitle {
  font-weight: 600;
  color: var(--rn-color-text-primary);
  margin-bottom: 0.5rem;
}

.rn-contact_infotext {
  color: var(--rn-color-text-secondary);
  line-height: 1.6;
}

.rn-contact_infotext a {
  color: #6a11cb;
  text-decoration: underline;
}

.rn-contact_formcontainer {
  background: var(--rn-color-surface);
  padding: 2.5rem;
  border-radius: var(--rn-border-radius-lg);
  box-shadow: var(--rn-shadow-soft);
}

.rn-contact_form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rn-contact_inputgroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rn-contact_label {
  font-weight: 600;
  color: var(--rn-color-text-primary);
}

.rn-contact_input, .rn-contact_textarea {
  padding: 1rem;
  border: 2px solid var(--rn-color-border);
  border-radius: var(--rn-border-radius-md);
  font-size: 1rem;
  transition: var(--rn-transition-fast);
  font-family: inherit;
}

.rn-contact_input:focus, .rn-contact_textarea:focus {
  outline: none;
  border-color: #6a11cb;
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.rn-contact_textarea {
  resize: vertical;
  min-height: 120px;
}

.rn-contact_error {
  color: #e53e3e;
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.rn-contact_checkgroup {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.rn-contact_checkbox {
  margin-top: 0.2rem;
}

.rn-contact_checklabel {
  font-size: 0.9rem;
  color: var(--rn-color-text-secondary);
  line-height: 1.4;
}

.rn-contact_link {
  color: #6a11cb;
  text-decoration: underline;
}

.rn-contact_button {
  padding: 1rem 2rem;
  background: var(--rn-gradient-primary);
  color: white;
  border: none;
  border-radius: var(--rn-border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--rn-transition-normal);
}

.rn-contact_button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--rn-shadow-medium);
}

.rn-contact_button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.rn-contact_success {
  text-align: center;
  padding: 2rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rn-contact_successicon {
  font-size: 3rem;
  color: #48bb78;
  margin-bottom: 1rem;
}

.rn-contact_successtitle {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--rn-color-text-primary);
}

.rn-contact_successtext {
  color: var(--rn-color-text-secondary);
}

.rn-footer_container {
  background: var(--rn-gradient-primary);
  padding: 4rem 2rem 2rem;
  color: white;
}

.rn-footer_content {
  max-width: 1200px;
  margin: 0 auto;
}

.rn-footer_main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.rn-footer_logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.rn-footer_logoimg {
  height: 40px;
  width: auto;
}

.rn-footer_logotext {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.rn-footer_links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rn-footer_column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rn-footer_title {
  font-family: 'Prata', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
}

.rn-footer_link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--rn-transition-fast);
}

.rn-footer_link:hover {
  color: white;
  text-decoration: underline;
}

.rn-footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.rn-footer_copyright {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .rn-welcome_cards, .rn-advantages_grid, .rn-welcome2_cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rn-platforms_grid, .rn-popular_grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .rn-about_block {
    gap: 2rem;
  }
  
  .rn-footer_main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .rn-header_nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--rn-gradient-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--rn-transition-normal);
  }
  
  .rn-header_nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .rn-header_burger {
    display: flex;
  }
  
  .rn-welcome_title, .rn-advantages_title, .rn-faq_title, .rn-welcome2_title {
    font-size: 2.5rem;
  }
  
  .rn-about_block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .rn-about_minicards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rn-platforms_grid, .rn-popular_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rn-subscribe_container, .rn-contact_container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .rn-subscribe_content {
    padding-right: 0;
    text-align: center;
  }
  
  .rn-faq_columns {
    grid-template-columns: 1fr;
  }
  
  .rn-responsible_partners {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .rn-footer_links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .rn-footer_bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .rn-welcome_cards, .rn-advantages_grid, .rn-welcome2_cards,
  .rn-platforms_grid, .rn-popular_grid {
    grid-template-columns: 1fr;
  }

  .rn-header_nav {
    top: 110px;
    text-align: center;
  }
  
  .rn-about_minicards {
    grid-template-columns: 1fr;
  }

  .rn-about_textcontent,
  .rn-platforms_section,
  .rn-subscribe_section,
  .rn-contact_section {
    padding: 2rem 0.2rem;
  }

  .rn-subscribe_text {
    width: 90%;
  }

  .rn-subscribe_featureitem {
    flex-direction: column;
  }
  
  .rn-platforms_maintitle,
  .rn-welcome2_title {
    font-size: 1.6rem;
  }

  .rn-cookies_container,
  .rn-footer_column {
    flex-direction: column;
    text-align: center;
  }
  
  .rn-cookies_content {
    flex-direction: column;
  }
  
  .rn-age_buttons {
    flex-direction: column;
  }
  
  .rn-responsible_partners {
    grid-template-columns: repeat(1, 1fr);
  }

  .rn-contact_content {
    padding-right: 0;
  }
  
  .rn-contact_infoitem {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .rn-subscribe_successbuttons {
    flex-direction: column;
  }
}

.rnpg-privacy-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.rnpg-privacy-hero {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.rnpg-privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.rnpg-privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rnpg-privacy-title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rnpg-privacy-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.rnpg-privacy-heroicon {
  font-size: 4rem;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

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

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

.rnpg-privacy-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.rnpg-privacy-intro {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  text-align: center;
  border-left: 5px solid #6a11cb;
}

.rnpg-privacy-introtext {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

.rnpg-privacy-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rnpg-privacy-item {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rnpg-privacy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rnpg-privacy-icon {
  font-size: 3rem;
  color: #6a11cb;
  margin-bottom: 1.5rem;
}

.rnpg-privacy-itemtitle {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.rnpg-privacy-itemcontent {
  color: #4a5568;
  line-height: 1.7;
}

.rnpg-privacy-itemcontent a {
  color: #6a11cb;
  text-decoration: none;
  font-weight: 600;
}

.rnpg-privacy-itemcontent a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .rnpg-privacy-title {
    font-size: 2.5rem;
  }
  
  .rnpg-privacy-hero {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-privacy-content {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-privacy-item, .rnpg-privacy-intro {
    padding: 2rem 1.5rem;
  }
  
  .rnpg-privacy-itemtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .rnpg-privacy-title {
    font-size: 2rem;
  }
  
  .rnpg-privacy-subtitle {
    font-size: 1rem;
  }
  
  .rnpg-privacy-heroicon {
    font-size: 3rem;
  }
}

.rnpg-terms-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rnpg-terms-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.rnpg-terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,160L48,176C96,192,192,224,288,218.7C384,213,480,171,576,176C672,181,768,235,864,234.7C960,235,1056,181,1152,160C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.rnpg-terms-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rnpg-terms-title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rnpg-terms-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.rnpg-terms-heroicon {
  font-size: 4rem;
  opacity: 0.8;
  animation: pulse 2s ease-in-out infinite;
}

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

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

.rnpg-terms-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.rnpg-terms-intro {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  text-align: center;
  border-left: 5px solid #667eea;
}

.rnpg-terms-introtext {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

.rnpg-terms-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rnpg-terms-item {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rnpg-terms-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rnpg-terms-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1.5rem;
}

.rnpg-terms-itemtitle {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.rnpg-terms-itemcontent {
  color: #4a5568;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .rnpg-terms-title {
    font-size: 2.5rem;
  }
  
  .rnpg-terms-hero {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-terms-content {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-terms-item, .rnpg-terms-intro {
    padding: 2rem 1.5rem;
  }
  
  .rnpg-terms-itemtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .rnpg-terms-title {
    font-size: 2rem;
  }
  
  .rnpg-terms-subtitle {
    font-size: 1rem;
  }
  
  .rnpg-terms-heroicon {
    font-size: 3rem;
  }
}

.rnpg-cookies-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f1f3f4 0%, #dfe3e6 100%);
}

.rnpg-cookies-hero {
  background: linear-gradient(135deg, #fd746c 0%, #ff9068 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.rnpg-cookies-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,261.3C672,256,768,224,864,224C960,224,1056,256,1152,250.7C1248,245,1344,203,1392,181.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.rnpg-cookies-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rnpg-cookies-title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rnpg-cookies-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.rnpg-cookies-heroicon {
  font-size: 4rem;
  opacity: 0.8;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rnpg-cookies-content {
  padding: 4rem 2rem;
}

.rnpg-cookies-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.rnpg-cookies-intro {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  text-align: center;
  border-left: 5px solid #fd746c;
}

.rnpg-cookies-introtext {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

.rnpg-cookies-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rnpg-cookies-item {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rnpg-cookies-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rnpg-cookies-icon {
  font-size: 3rem;
  color: #fd746c;
  margin-bottom: 1.5rem;
}

.rnpg-cookies-itemtitle {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.rnpg-cookies-itemcontent {
  color: #4a5568;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .rnpg-cookies-title {
    font-size: 2.5rem;
  }
  
  .rnpg-cookies-hero {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-cookies-content {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-cookies-item, .rnpg-cookies-intro {
    padding: 2rem 1.5rem;
  }
  
  .rnpg-cookies-itemtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .rnpg-cookies-title {
    font-size: 2rem;
  }
  
  .rnpg-cookies-subtitle {
    font-size: 1rem;
  }
  
  .rnpg-cookies-heroicon {
    font-size: 3rem;
  }
}

.rnpg-responsible-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
}

.rnpg-responsible-hero {
  background: linear-gradient(135deg, #5f72bd 0%, #9b59b6 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.rnpg-responsible-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.rnpg-responsible-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rnpg-responsible-title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rnpg-responsible-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.rnpg-responsible-heroicon {
  font-size: 4rem;
  opacity: 0.8;
  animation: heartbeat 1.5s ease-in-out infinite;
}

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

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

.rnpg-responsible-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.rnpg-responsible-intro {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  text-align: center;
  border-left: 5px solid #5f72bd;
}

.rnpg-responsible-introtext {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

.rnpg-responsible-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rnpg-responsible-item {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rnpg-responsible-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rnpg-responsible-icon {
  font-size: 3rem;
  color: #5f72bd;
  margin-bottom: 1.5rem;
}

.rnpg-responsible-itemtitle {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.rnpg-responsible-itemcontent {
  color: #4a5568;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .rnpg-responsible-title {
    font-size: 2.5rem;
  }
  
  .rnpg-responsible-hero {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-responsible-content {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-responsible-item, .rnpg-responsible-intro {
    padding: 2rem 1.5rem;
  }
  
  .rnpg-responsible-itemtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .rnpg-responsible-title {
    font-size: 2rem;
  }
  
  .rnpg-responsible-subtitle {
    font-size: 1rem;
  }
  
  .rnpg-responsible-heroicon {
    font-size: 3rem;
  }
}

.rnpg-betting-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rnpg-betting-hero {
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.rnpg-betting-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.rnpg-betting-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rnpg-betting-title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rnpg-betting-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.rnpg-betting-heroicon {
  font-size: 4rem;
  opacity: 0.8;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.rnpg-betting-intro {
  padding: 4rem 2rem;
  background: white;
}

.rnpg-betting-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rnpg-betting-introcontent {
  padding-right: 2rem;
}

.rnpg-betting-introtitle {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.rnpg-betting-introtext {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
}

.rnpg-betting-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-height: 220px;
}

.rnpg-betting-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a5568;
  font-weight: 500;
}

.rnpg-betting-feature i {
  color: #ff7e5f;
  font-size: 1.2rem;
}

.rnpg-betting-introimage {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rnpg-betting-introimage img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.rnpg-betting-introimage:hover img {
  transform: scale(1.05);
}

.rnpg-betting-platforms {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.rnpg-betting-platformscontainer {
  max-width: 1200px;
  margin: 0 auto;
}

.rnpg-betting-platformstitle {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.rnpg-betting-platformstext {
  text-align: center;
  color: #4a5568;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.rnpg-betting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rnpg-betting-card {
  background: rgb(56, 56, 56);
  padding: 2rem;
  min-height: 710px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}

.rnpg-betting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rnpg-betting-tag {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.rnpg-betting-logo {
  width: 100%;
  max-width: 280px;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}

.rnpg-betting-name {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #8fb0e7;
}

.rnpg-betting-features {
  list-style: none;
  margin-bottom: 2rem;
}

.rnpg-betting-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #a5bae4;
}

.rnpg-betting-features i {
  color: #48bb78;
}

.rnpg-betting-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rnpg-betting-stars {
  color: #fbbf24;
}

.rnpg-betting-score {
  font-weight: 600;
  color: #a5bae4;
}

.rnpg-betting-button {
  display: block;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rnpg-betting-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.rnpg-betting-top {
  padding: 4rem 2rem;
  background: white;
}

.rnpg-betting-topcontainer {
  max-width: 1200px;
  margin: 0 auto;
}

.rnpg-betting-toptitle {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.rnpg-betting-toptext {
  text-align: center;
  color: #4a5568;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.rnpg-betting-topgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rnpg-betting-topcard {
  background: rgb(99, 98, 98);
  padding: 2.5rem 2rem;
  min-height: 533px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.rnpg-betting-topcard::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  border-radius: 16px;
  z-index: -1;
}

.rnpg-betting-topcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rnpg-betting-topbadge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.rnpg-betting-toplogo {
  width: 100%;
  max-width: 260px;
  height: 100%;
  max-height: 110px;
  object-fit: contain;
  margin: 1rem auto 1.5rem;
  display: block;
}

.rnpg-betting-topname {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #eaf0fc;
}

.rnpg-betting-topfeatures {
  list-style: none;
  margin-bottom: 2rem;
}

.rnpg-betting-topfeatures li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #eaf0fc;
  justify-content: center;
}

.rnpg-betting-topfeatures i {
  color: #48bb78;
}

.rnpg-betting-toprating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rnpg-betting-topstars {
  color: #fbbf24;
}

.rnpg-betting-topscore {
  font-weight: 600;
  color: #eaf0fc;
}

.rnpg-betting-topbutton {
  display: block;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rnpg-betting-topbutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

@media (max-width: 1024px) {
  .rnpg-betting-grid, .rnpg-betting-topgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rnpg-betting-title {
    font-size: 2.5rem;
  }
  
  .rnpg-betting-hero {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-betting-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .rnpg-betting-introcontent {
    padding-right: 0;
  }
  
  .rnpg-betting-features {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .rnpg-betting-grid, .rnpg-betting-topgrid {
    grid-template-columns: 1fr;
  }
  
  .rnpg-betting-intro, .rnpg-betting-platforms, .rnpg-betting-top {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .rnpg-betting-title {
    font-size: 2rem;
  }
  
  .rnpg-betting-subtitle {
    font-size: 1rem;
  }

  .rnpg-betting-platformstitle {
    font-size: 1.6rem;
  }
  
  .rnpg-betting-heroicon {
    font-size: 3rem;
  }
  
  .rnpg-betting-introtitle {
    font-size: 2rem;
  }
}

.rnpg-casino-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0f2f5 0%, #e4e7eb 100%);
}

.rnpg-casino-hero {
  background: linear-gradient(135deg, #834d9b 0%, #d04ed6 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.rnpg-casino-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.rnpg-casino-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rnpg-casino-title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rnpg-casino-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.rnpg-casino-heroicon {
  font-size: 4rem;
  opacity: 0.8;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.rnpg-casino-intro {
  padding: 4rem 2rem;
  background: white;
}

.rnpg-casino-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rnpg-casino-introcontent {
  padding-right: 2rem;
}

.rnpg-casino-introtitle {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.rnpg-casino-introtext {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
}

.rnpg-casino-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-height: 150px;
}

.rnpg-casino-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a5568;
  font-weight: 500;
}

.rnpg-casino-feature i {
  color: #834d9b;
  font-size: 1.2rem;
}

.rnpg-casino-introimage {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rnpg-casino-introimage img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.rnpg-casino-introimage:hover img {
  transform: scale(1.05);
}

.rnpg-casino-platforms {
  padding: 4rem 2rem;
  background: #f0f2f5;
}

.rnpg-casino-platformscontainer {
  max-width: 1200px;
  margin: 0 auto;
}

.rnpg-casino-platformstitle {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.rnpg-casino-platformstext {
  text-align: center;
  color: #4a5568;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.rnpg-casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rnpg-casino-card {
  background: rgb(238, 142, 142);
  padding: 2rem;
  border-radius: 16px;
  min-height: 642px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}

.rnpg-casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rnpg-casino-tag {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: linear-gradient(135deg, #834d9b 0%, #d04ed6 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.rnpg-casino-logo {
  width: 100%;
  max-width: 269px;
  height: 100%;
  max-height: 135px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}

.rnpg-casino-name {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.rnpg-casino-features {
  list-style: none;
  margin-bottom: 2rem;
}

.rnpg-casino-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.rnpg-casino-features i {
  color: #48bb78;
}

.rnpg-casino-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rnpg-casino-stars {
  color: #fbbf24;
}

.rnpg-casino-score {
  font-weight: 600;
  color: #2d3748;
}

.rnpg-casino-button {
  display: block;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #834d9b 0%, #d04ed6 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rnpg-casino-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(131, 77, 155, 0.3);
}

.rnpg-casino-top {
  padding: 4rem 2rem;
  background: white;
}

.rnpg-casino-topcontainer {
  max-width: 1200px;
  margin: 0 auto;
}

.rnpg-casino-toptitle {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.rnpg-casino-toptext {
  text-align: center;
  color: #4a5568;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.rnpg-casino-topgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rnpg-casino-topcard {
  background: rgb(245, 227, 188);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  min-height: 528px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.rnpg-casino-topcard::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #834d9b 0%, #d04ed6 100%);
  border-radius: 16px;
  z-index: -1;
}

.rnpg-casino-topcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rnpg-casino-topbadge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #834d9b 0%, #d04ed6 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.rnpg-casino-toplogo {
  width: 100%;
  max-width: 265px;
  height: 100%;
  max-height: 115px;
  object-fit: contain;
  margin: 1rem auto 1.5rem;
  display: block;
}

.rnpg-casino-topname {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.rnpg-casino-topfeatures {
  list-style: none;
  margin-bottom: 2rem;
}

.rnpg-casino-topfeatures li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #4a5568;
  justify-content: center;
}

.rnpg-casino-topfeatures i {
  color: #48bb78;
}

.rnpg-casino-toprating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rnpg-casino-topstars {
  color: #fbbf24;
}

.rnpg-casino-topscore {
  font-weight: 600;
  color: #2d3748;
}

.rnpg-casino-topbutton {
  display: block;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #834d9b 0%, #d04ed6 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rnpg-casino-topbutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(131, 77, 155, 0.3);
}

@media (max-width: 1024px) {
  .rnpg-casino-grid, .rnpg-casino-topgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rnpg-casino-title {
    font-size: 2.5rem;
  }
  
  .rnpg-casino-hero {
    padding: 3rem 1.5rem;
  }
  
  .rnpg-casino-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .rnpg-casino-introcontent {
    padding-right: 0;
  }
  
  .rnpg-casino-features {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .rnpg-casino-grid, .rnpg-casino-topgrid {
    grid-template-columns: 1fr;
  }
  
  .rnpg-casino-intro, .rnpg-casino-platforms, .rnpg-casino-top {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .rnpg-casino-title {
    font-size: 2rem;
  }
  
  .rnpg-casino-subtitle {
    font-size: 1rem;
  }

  .rnpg-casino-platformstitle {
    font-size: 1.6rem;
  }
  
  .rnpg-casino-heroicon {
    font-size: 3rem;
  }
  
  .rnpg-casino-introtitle {
    font-size: 2rem;
  }
}

.rnpg-notfound-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rnpg-notfound-hero {
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  min-height: 70vh;
}

.rnpg-notfound-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rnpg-notfound-content {
  text-align: center;
}

.rnpg-notfound-title {
  font-family: 'Prata', serif;
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #2d3748;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rnpg-notfound-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #4a5568;
}

.rnpg-notfound-icon {
  font-size: 5rem;
  color: #6a11cb;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

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

.rnpg-notfound-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.rnpg-notfound-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rnpg-notfound-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(106, 17, 203, 0.3);
}

.rnpg-notfound-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rnpg-notfound-animation {
  position: relative;
  width: 300px;
  height: 300px;
}

.rnpg-notfound-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 8px solid #6a11cb;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circle-float 4s ease-in-out infinite;
}

@keyframes circle-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -60%) scale(1.05); }
}

.rnpg-notfound-square {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 8px solid #2575fc;
  top: 30%;
  left: 30%;
  animation: square-rotate 6s linear infinite;
}

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

.rnpg-notfound-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid #ff6b6b;
  bottom: 20%;
  right: 20%;
  animation: triangle-bounce 5s ease-in-out infinite;
}

@keyframes triangle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.rnpg-notfound-help {
  padding: 4rem 2rem;
  background: white;
}

.rnpg-notfound-helpcontainer {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.rnpg-notfound-helptitle {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.rnpg-notfound-helptext {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rnpg-notfound-helpoptions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.rnpg-notfound-helpoption {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rnpg-notfound-helpoption:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rnpg-notfound-helpoption i {
  font-size: 2.5rem;
  color: #6a11cb;
  margin-bottom: 1rem;
}

.rnpg-notfound-helpoption h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.rnpg-notfound-helpoption p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.rnpg-notfound-helpoption a {
  color: #6a11cb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.rnpg-notfound-helpoption a:hover {
  color: #2575fc;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .rnpg-notfound-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .rnpg-notfound-title {
    font-size: 3rem;
  }
  
  .rnpg-notfound-subtitle {
    font-size: 1.2rem;
  }
  
  .rnpg-notfound-icon {
    font-size: 4rem;
  }
  
  .rnpg-notfound-animation {
    width: 250px;
    height: 250px;
  }
  
  .rnpg-notfound-circle {
    width: 100px;
    height: 100px;
  }
  
  .rnpg-notfound-square {
    width: 60px;
    height: 60px;
  }
  
  .rnpg-notfound-triangle {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid #ff6b6b;
  }
  
  .rnpg-notfound-helpoptions {
    grid-template-columns: 1fr;
  }
  
  .rnpg-notfound-hero, .rnpg-notfound-help {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .rnpg-notfound-title {
    font-size: 2.5rem;
  }
  
  .rnpg-notfound-subtitle {
    font-size: 1.1rem;
  }
  
  .rnpg-notfound-icon {
    font-size: 3rem;
  }
  
  .rnpg-notfound-animation {
    width: 200px;
    height: 200px;
  }
  
  .rnpg-notfound-circle {
    width: 80px;
    height: 80px;
    border-width: 6px;
  }
  
  .rnpg-notfound-square {
    width: 50px;
    height: 50px;
    border-width: 6px;
  }
  
  .rnpg-notfound-triangle {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #ff6b6b;
  }

  .rnpg-notfound-help {
    padding: 2rem 0.2rem;
  }
  
  .rnpg-notfound-helptitle {
    font-size: 2rem;
  }
}