@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Quattrocento Sans', sans-serif;
  background-color: #0c0f1a;
  color: #f4f4f9;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.rmt_header-topwrap {
  background-color: #1d2233;
  padding: 20px 10px;
}

.rmt_header-navsection {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.rmt_header-logolink img {
  width: 90px;
  height: 90px;
}

.rmt_header-authbuttons {
  display: flex;
  gap: 15px;
}

.rmt_header-loginbtn,
.rmt_header-signupbtn {
  background-color: #5a3ec8;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  font-family: 'Quattrocento Sans', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rmt_header-loginbtn:hover,
.rmt_header-signupbtn:hover {
  background-color: #3b28a3;
}

.rmt_header-infosection {
  max-width: 1180px;
  margin: 15px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

.rmt_header-gamblenote {
  flex: 1 1 85px;
  font-size: 0.95rem;
  font-family: 'Libre Baskerville', serif;
  text-align: center;
}

.rmt_header-partners {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px auto;
}

.rmt_header-partners img {
  border-radius: 6px;
  background-color: #2c334f;
  padding: 4px;
}

@media (max-width: 1024px) {
  .rmt_header-authbuttons button {
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .rmt_header-navsection,
  .rmt_header-infosection {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .rmt_header-partners {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .rmt_header-loginbtn,
  .rmt_header-signupbtn {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}

@media (max-width: 320px) {
  .rmt_header-gamblenote {
    font-size: 0.85rem;
  }

  .rmt_header-loginbtn,
  .rmt_header-signupbtn {
    padding: 6px 12px;
  }
}

.rmt_hidden {
  display: none;
}

.rmt_authflow-logingate,
.rmt_authflow-restoregate,
.rmt_authflow-loginsuccess,
.rmt_authflow-restoresuccess {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 12, 36, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: rmtFadeIn 0.4s ease-in-out;
}

@keyframes rmtFadeIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.rmt_authflow-loginbox,
.rmt_authflow-restorebox,
.rmt_authflow-loginsuccessbox,
.rmt_authflow-restoresuccessbox {
  max-width: 420px;
  width: 100%;
  background: linear-gradient(145deg, #12122b, #191940);
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  animation: rmtSlideUp 0.45s ease;
}

@keyframes rmtSlideUp {
  from {
    transform: translateY(50px);
    opacity: 0.5;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.rmt_authflow-loginexit,
.rmt_authflow-restoreexit,
.rmt_authflow-loginsuccessclose,
.rmt_authflow-restoresuccessclose {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: #e9e9ff;
  font-size: 24px;
  cursor: pointer;
}

.rmt_authflow-logintitle,
.rmt_authflow-restoretitle,
.rmt_authflow-loginsuccesstitle,
.rmt_authflow-restoresuccesstitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: #f8f8ff;
  margin-bottom: 12px;
}

.rmt_authflow-loginsubtext,
.rmt_authflow-restoresubtext,
.rmt_authflow-loginsuccessmsg,
.rmt_authflow-restoresuccessmsg {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #e0e0f0;
}

.rmt_authflow-loginfield,
.rmt_authflow-restorefield {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.rmt_authflow-loginfield span,
.rmt_authflow-restorefield span {
  font-size: 13px;
  margin-bottom: 6px;
  color: #cfcfff;
}

.rmt_authflow-loginfield input,
.rmt_authflow-restorefield input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #393975;
  background-color: #1b1b33;
  color: #fff;
  font-size: 14px;
}

.rmt_authflow-logincheck {
  font-size: 13px;
  margin: 15px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.rmt_authflow-logincheck input {
  accent-color: #48e0b8;
}

.rmt_authflow-logincheck a {
  color: #67ecff;
  text-decoration: underline;
}

.rmt_authflow-loginsubmit,
.rmt_authflow-restoresubmit {
  background-color: #5a43d6;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  width: 100%;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.rmt_authflow-loginsubmit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.rmt_authflow-loginsubmit:hover:enabled,
.rmt_authflow-restoresubmit:hover {
  background-color: #7260ff;
}

.rmt_authflow-linkrestore {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #85e1f7;
  text-decoration: underline;
  cursor: pointer;
}

.rmt_authflow-loginalert,
.rmt_authflow-restorealert {
  background-color: #e74848;
  padding: 10px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
}

.rmt_authflow-useremailtext,
.rmt_authflow-restoremailtext {
  color: #8df2ff;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .rmt_authflow-loginbox,
  .rmt_authflow-restorebox,
  .rmt_authflow-loginsuccessbox,
  .rmt_authflow-restoresuccessbox {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .rmt_authflow-logintitle,
  .rmt_authflow-restoretitle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .rmt_authflow-loginsubtext,
  .rmt_authflow-restoresubtext {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .rmt_authflow-loginsubmit,
  .rmt_authflow-restoresubmit {
    font-size: 13px;
    padding: 10px;
  }
}

.rmt_authflow-registergate,
.rmt_authflow-registersuccess {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(16, 16, 16, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rmtFadeZoom 0.6s ease;
}

.rmt_authflow-registerbody,
.rmt_authflow-registersuccessbox {
  background: #1e1b2f;
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  max-width: 460px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.25);
  position: relative;
  font-family: 'Quattrocento Sans', sans-serif;
}

.rmt_authflow-registertitle,
.rmt_authflow-registersuccesstitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #7fffd4;
  text-align: center;
}

.rmt_authflow-registerinputs input {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  background: #2c2c44;
  color: #f0f0f0;
  font-size: 1rem;
}

.rmt_authflow-registerinputs input:focus {
  outline: 2px solid #7fffd4;
  background: #3a3a5c;
}

.rmt_authflow-registercheck {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.rmt_authflow-registercheck a {
  color: #66ffe0;
  text-decoration: underline;
}

.rmt_authflow-registersubmit {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  background: #009688;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.rmt_authflow-registersubmit:disabled {
  background: #444;
  cursor: not-allowed;
}

.rmt_authflow-registersubmit:hover:enabled {
  background: #00bfa5;
}

.rmt_authflow-registerexit,
.rmt_authflow-registersuccessclose {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
}

.rmt_authflow-registerexit:hover,
.rmt_authflow-registersuccessclose:hover {
  color: #fff;
}

.rmt_authflow-registeralert {
  color: #ff7e7e;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 1rem;
  display: none;
}

.rmt_authflow-registermsg {
  color: #e0ffe0;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.rmt_hidden {
  display: none !important;
}

.rmt_authflow-registeremailtext {
  font-weight: bold;
  color: #00ffc3;
}

@keyframes rmtFadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .rmt_authflow-registerbody,
  .rmt_authflow-registersuccessbox {
    padding: 1.5rem 1rem;
  }

  .rmt_authflow-registertitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .rmt_authflow-registertitle {
    font-size: 1.3rem;
  }

  .rmt_authflow-registerinputs input {
    font-size: 0.95rem;
  }

  .rmt_authflow-registercheck {
    font-size: 0.75rem;
  }

  .rmt_authflow-registersubmit {
    font-size: 0.95rem;
  }
}

.rmt_input-error {
  border: 1px solid #e53935;
  outline: none;
}

.rmt_field-error {
  color: #e53935;
  font-size: 12px;
  margin-top: 4px;
}

.rmt_input-hint {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.rmt_input-hint.error {
  color: #e53935;
}

.rmt_legacy-section {
  background-color: #1a1f29;
  color: #f4f4f9;
  padding: 50px 0;
}

.rmt_legacy-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rmt_legacy-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
}

.rmt_legacy-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.rmt_legacy-badge {
  position: absolute;
  bottom: 10px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.rmt_legacy-badge i {
  margin-right: 5px;
}

.rmt_legacy-content {
  flex: 1;
  padding: 20px;
}

.rmt_legacy-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.rmt_legacy-description p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.rmt_legacy-button {
  background-color: #f4a300;
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rmt_legacy-button i {
  margin-right: 8px;
}

.rmt_legacy-button:hover {
  background-color: #f48c00;
}

.rmt_winners-circle {
  position: relative;
  background-image: url('../rmt-img/rmt-bg-image-1.jpg');
  background-size: cover;
  background-position: center;
  color: #f4f4f9;
  padding: 50px 0;
}

.rmt_winners-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.rmt_winners-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  color: #0c0f1a;
  margin-bottom: 30px;
}

.rmt_winners-highlight {
  background-color: #ffb700d7;
  padding: 20px;
  border-radius: 10px;
}

.rmt_winners-rating i {
  color: #ffcc00;
  font-size: 20px;
}

.rmt_winners-rating span {
  margin-left: 10px;
  font-size: 16px;
}

.rmt_winners-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  margin: 20px 0;
}

.rmt_winners-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.rmt_winners-action-button {
  background-color: #ff4c00;
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.rmt_winners-action-button:hover {
  background-color: #e64300;
}

.rmt_winners-prizes {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}

.rmt_prize-card {
  background-color: #f4f4f9cc;
  color: #333;
  padding: 20px;
  width: 23%;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rmt_prize-card i {
  font-size: 40px;
  color: #ffb600;
  margin-bottom: 15px;
}

.rmt_winners-feature {
  background-color: #1f212db6;
  color: #fff;
  padding: 50px 0;
  margin-top: 80px;
  border-radius: 8px;
}

.rmt_winners-feature-title {
  font-size: 2rem;
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 20px;
}

.rmt_winners-feature-text {
  margin-bottom: 30px;
  line-height: 1.6;
  padding: 1.5rem;
}

.rmt_winners-jackpot-info {
  font-size: 1.5rem;
  margin: 20px 0;
}

.rmt_winners-feature-button {
  background-color: #ff4c00;
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.rmt_winners-feature-button:hover {
  background-color: #e64300;
}

.rmt_upcoming-draw {
  background-color: #1a1f29;
  color: #fff;
  padding: 50px 0;
}

.rmt_upcoming-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.rmt_upcoming-timer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.rmt_upcoming-timer-box {
  display: flex;
}

.rmt_upcoming-unit {
  margin: 0 10px;
  font-size: 2.5rem;
}

.rmt_upcoming-unit span {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
}

.rmt_upcoming-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.rmt_upcoming-description {
  margin-bottom: 30px;
  line-height: 1.6;
}

.rmt_upcoming-register-button {
  background-color: #ff4c00;
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.rmt_upcoming-register-button:hover {
  background-color: #e64300;
}

.rmt_recent-victories {
  background-color: #2a2e3d;
  color: #f4f4f9;
  padding: 50px 0;
}

.rmt_recent-wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

.rmt_recent-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.rmt_recent-winner-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rmt_recent-winner-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f9;
  color: #333;
  padding: 20px;
  width: 48%;
  height: 570px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rmt_recent-winner-card h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  min-height: 110px;
}

.rmt_recent-winner-img {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.rmt_recent-winner-card p {
  line-height: 1.6;
}

.rmt_recent-winner-card:last-child {
  margin-right: 0;
}

.rmt_community-feedback {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 80px 20px;
  background-color: #f8f9fa;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.rmt_feedback-wrapper {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.rmt_feedback-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.rmt_feedback-cards {
  position: relative;
  min-height: 220px;
}

.rmt_feedback-card {
  display: none;
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: opacity 0.4s ease;
}

.rmt_feedback-card.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.rmt_feedback-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 16px;
}

.rmt_feedback-author {
  font-weight: 600;
  color: #666;
  font-size: 16px;
}

.rmt_feedback-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.rmt_feedback-buttons button {
  padding: 10px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #0073e6;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rmt_feedback-buttons button:hover {
  background-color: #005bb5;
}

.rmt_footer-koru {
  background-color: #191b2d;
  padding: 50px 20px;
  color: #f3f6fc;
}

.rmt_footer-koru__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.rmt_footer-koru__brand {
  flex: 1 1 250px;
}

.rmt_footer-koru__logo {
  max-width: 180px;
  display: block;
  margin-bottom: 10px;
}

.rmt_footer-koru__slogan {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  color: #cfd2e5;
}

.rmt_footer-koru__info {
  flex: 1 1 300px;
}

.rmt_footer-koru__heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #f9ba4d;
}

.rmt_footer-koru__info p {
  font-size: 15px;
  color: #d6dae8;
}

.rmt_footer-koru__nav {
  flex: 1 1 200px;
}

.rmt_footer-koru__links {
  list-style: none;
}

.rmt_footer-koru__link {
  color: #e3e7f7;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  transition: color 0.3s ease;
}

.rmt_footer-koru__link i {
  margin-right: 6px;
}

.rmt_footer-koru__link:hover {
  color: #ffc857;
}

.rmt_footer-koru__badges {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.rmt_footer-koru__badges img {
  max-width: 150px;
  max-height: 60px;
  background-color: #fff;
  padding: 5px;
  border-radius: 3px;
}

.rmt_footer-koru__bottom {
  text-align: center;
  flex: 1 1 100%;
  margin-top: 40px;
  font-size: 14px;
  color: #9ea5c7;
}

.rmt_footer-koru__bottom a {
  color: #ffc857;
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .rmt_legacy-wrapper {
    flex-direction: column;
    padding: 40px 20px;
    align-items: center;
  }

  .rmt_legacy-visual {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .rmt_legacy-image {
    width: 100%;
    height: auto;
  }

  .rmt_legacy-content {
    text-align: center;
  }

  .rmt_winners-wrapper {
    padding: 40px 20px;
  }

  .rmt_winners-highlight {
    padding: 30px 20px;
  }

  .rmt_winners-highlight-content {
    text-align: center;
  }

  .rmt_winners-prizes {
    flex-wrap: wrap;
  }

  .rmt_prize-card {
    width: 48%;
    margin-bottom: 20px;
  }

  .rmt_winners-feature-content {
    padding: 30px 20px;
  }

  .rmt_upcoming-wrapper {
    padding: 40px 20px;
    text-align: center;
  }

  .rmt_recent-wrapper {
    padding: 40px 20px;
  }

  .rmt_recent-winner-cards {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .rmt_recent-winner-card {
    width: 48%;
  }

  .rmt_feedback-wrapper {
    padding: 40px 20px;
  }

  .rmt_feedback-cards {
    flex-direction: column;
    gap: 20px;
  }

  .rmt_feedback-card {
    width: 100%;
  }

  .rmt_footer-koru__wrap {
    gap: 20px;
    padding: 0 10px;
  }

  .rmt_footer-koru__info p,
  .rmt_footer-koru__slogan {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .rmt_legacy-wrapper {
    padding: 30px 16px;
  }

  .rmt_legacy-title {
    font-size: 24px;
  }

  .rmt_legacy-description p {
    font-size: 14px;
  }

  .rmt_winners-wrapper {
    padding: 30px 16px;
  }

  .rmt_winners-title {
    font-size: 26px;
  }

  .rmt_winners-subtitle {
    font-size: 20px;
  }

  .rmt_prize-card {
    width: 100%;
  }

  .rmt_winners-feature-title {
    font-size: 22px;
  }

  .rmt_winners-feature-text {
    font-size: 14px;
  }

  .rmt_upcoming-title {
    font-size: 24px;
  }

  .rmt_upcoming-description {
    font-size: 14px;
  }

  .rmt_recent-title {
    font-size: 22px;
    text-align: center;
  }

  .rmt_recent-winner-card {
    width: 100%;
  }

  .rmt_recent-winner-img {
    width: 100%;
    height: auto;
  }

  .rmt_feedback-title {
    font-size: 22px;
    text-align: center;
  }

  .rmt_feedback-card {
    font-size: 14px;
  }

  .rmt_footer-koru__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rmt_footer-koru__brand,
  .rmt_footer-koru__info,
  .rmt_footer-koru__nav {
    flex: 1 1 100%;
  }

  .rmt_footer-koru__nav ul {
    padding: 0;
  }

  .rmt_footer-koru__badges {
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
  }

  .rmt_footer-koru__logo {
    margin: 0 auto 12px;
  }
}

@media screen and (max-width: 480px) {
  .rmt_legacy-wrapper {
    padding: 25px 12px;
  }

  .rmt_legacy-title {
    font-size: 20px;
  }

  .rmt_legacy-button {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .rmt_winners-title {
    font-size: 32px;
  }

  .rmt_winners-subtitle {
    font-size: 18px;
  }

  .rmt_winners-text {
    font-size: 14px;
  }

  .rmt_winners-action-button {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .rmt_prize-card h4 {
    font-size: 18px;
  }

  .rmt_prize-card p {
    font-size: 14px;
  }

  .rmt_winners-feature-button {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .rmt_upcoming-timer-box {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .rmt_upcoming-register-button {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .rmt_recent-winner-card h4 {
    font-size: 16px;
  }

  .rmt_recent-winner-card p {
    font-size: 14px;
  }

  .rmt_feedback-card p {
    font-size: 14px;
  }

  .rmt_feedback-author {
    font-size: 13px;
  }

  .rmt_footer-koru__heading {
    font-size: 18px;
  }

  .rmt_footer-koru__link {
    font-size: 14px;
  }

  .rmt_footer-koru__badges img {
    width: 110px;
    height: auto;
  }
}

@media screen and (max-width: 320px) {
  .rmt_legacy-title {
    font-size: 18px;
  }

  .rmt_legacy-button {
    font-size: 13px;
    padding: 10px;
  }

  .rmt_winners-title {
    font-size: 20px;
  }

  .rmt_winners-subtitle {
    font-size: 16px;
  }

  .rmt_winners-text,
  .rmt_prize-card p,
  .rmt_winners-feature-text,
  .rmt_upcoming-description,
  .rmt_recent-winner-card p,
  .rmt_feedback-card p {
    font-size: 13px;
  }

  .rmt_winners-action-button,
  .rmt_winners-feature-button,
  .rmt_upcoming-register-button {
    font-size: 13px;
    padding: 10px;
  }

  .rmt_upcoming-title {
    font-size: 20px;
  }

  .rmt_recent-title,
  .rmt_feedback-title {
    font-size: 20px;
  }

  .rmt_feedback-author {
    font-size: 12px;
  }

  .rmt_footer-koru {
    padding: 40px 15px;
  }

  .rmt_footer-koru__slogan,
  .rmt_footer-koru__info p {
    font-size: 14px;
  }

  .rmt_footer-koru__bottom {
    font-size: 13px;
  }

  .rmt_footer-koru__badges {
    flex-direction: column;
  }

  .rmt_footer-koru__badges img {
    width: 150px;
    height: 70px;
  }
}

.rmt_age-veil {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(8, 8, 12, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rmt_age-popup {
  background-color: #181d2f;
  border: 3px solid #ffb800;
  padding: 35px 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 184, 0, 0.4);
  animation: popupFade 0.5s ease-in-out;
}

.rmt_age-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

.rmt_age-message {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.rmt_age-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.rmt_age-yes,
.rmt_age-no {
  background-color: #ffb800;
  color: #0c0f1a;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-family: 'Quattrocento Sans', sans-serif;
}

.rmt_age-no {
  background-color: #b80000;
  color: #ffffff;
}

.rmt_age-yes:hover {
  background-color: #ffd84c;
}

.rmt_age-no:hover {
  background-color: #ff3333;
}

@keyframes popupFade {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.rmt_cookies-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222735;
  color: #f0f0f0;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 9998;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.4);
}

.rmt_cookies-text {
  font-size: 15px;
  font-family: 'Quattrocento Sans', sans-serif;
  max-width: 800px;
  flex: 1 1 70%;
}

.rmt_cookies-link {
  color: #ffb800;
  text-decoration: underline;
}

.rmt_cookies-accept {
  max-width: 150px;
  background-color: #ffb800;
  color: #0c0f1a;
  border: none;
  padding: 10px 18px;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  flex: 1 1 25%;
  transition: background-color 0.3s ease;
}

.rmt_cookies-accept:hover {
  background-color: #ffd84c;
}

@media (max-width: 768px) {
  .rmt_cookies-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .rmt_cookies-text {
    font-size: 14px;
  }

  .rmt_age-title {
    font-size: 22px;
  }

  .rmt_age-message {
    font-size: 15px;
  }
}

.rmt_pages_page-head {
  background-color: #1e2233;
  padding: 60px 20px;
  text-align: center;
}

.rmt_pages_page-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.rmt_pages_page-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  color: #ffe87b;
  margin-bottom: 20px;
}

.rmt_pages_page-description {
  font-family: 'Quattrocento Sans', sans-serif;
  color: #e2e2e2;
  font-size: 17px;
  line-height: 1.6;
}

.rmt_pages_page-contact {
  background-color: #111521;
  padding: 50px 20px;
}

.rmt_pages_page-formwrapper {
  max-width: 600px;
  margin: 0 auto;
}

.rmt_pages_page-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rmt_pages_page-label {
  color: #f4f4f9;
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 15px;
}

.rmt_pages_page-input,
.rmt_pages_page-textarea {
  background-color: #232a3e;
  border: 2px solid #3b415b;
  color: #ffffff;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Quattrocento Sans', sans-serif;
}

.rmt_pages_page-input::placeholder,
.rmt_pages_page-textarea::placeholder {
  color: #9fa6b2;
}

.rmt_pages_page-textarea {
  resize: vertical;
  min-height: 120px;
}

.rmt_pages_page-submit {
  background-color: #ffb800;
  color: #0c0f1a;
  padding: 14px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: not-allowed;
  transition: background-color 0.3s;
  font-family: 'Quattrocento Sans', sans-serif;
}

.rmt_pages_page-submit.active {
  cursor: pointer;
  background-color: #ffe87b;
}

.rmt_pages_page-modal {  
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 15, 26, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.rmt_pages_page-modalbox {
  position: relative;
  background-color: #282d40;
  border: 2px solid #ffb800;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  animation: fadeModal 0.4s ease-in-out;
}

.rmt_pages_page-modaltext {
  font-size: 18px;
  color: #ffffff;
  font-family: 'Quattrocento Sans', sans-serif;
}

.rmt_pages_page-modalclose {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #f4f4f9;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.rmt_pages_page-modalclose:hover {
  transform: scale(1.2);
}

@keyframes fadeModal {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .rmt_pages_page-title {
    font-size: 26px;
  }

  .rmt_pages_page-description {
    font-size: 15px;
  }
}

.rmt_pages_cookie-headline {
  background-color: #1c1e30;
  padding: 60px 20px;
  text-align: center;
}

.rmt_pages_cookie-headinner {
  max-width: 880px;
  margin: 0 auto;
}

.rmt_pages_cookie-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 34px;
  color: #ffc24b;
  margin-bottom: 18px;
}

.rmt_pages_cookie-subtext {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 18px;
  color: #e0e0f0;
  line-height: 1.7;
}

.rmt_pages_cookie-responsibleplay {
  background-color: #11141f;
  padding: 50px 20px;
}

.rmt_pages_cookie-itemswrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}

.rmt_pages_cookie-item {
  background-color: #242840;
  border: 2px solid #353a57;
  border-radius: 14px;
  padding: 20px;
  flex: 1 1 30%;
  min-width: 280px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.3s ease;
}

.rmt_pages_cookie-item:hover {
  transform: translateY(-5px);
}

.rmt_pages_cookie-item i {
  font-size: 26px;
  color: #ffce58;
}

.rmt_pages_cookie-item p {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #eaeaea;
}

@media (max-width: 1024px) {
  .rmt_pages_cookie-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .rmt_pages_cookie-title {
    font-size: 28px;
  }

  .rmt_pages_cookie-item {
    flex: 1 1 100%;
  }
}

.rmt_pages_privacy-headsection {
  background-color: #141927;
  padding: 70px 20px;
  text-align: center;
}

.rmt_pages_privacy-wraptitle {
  max-width: 900px;
  margin: 0 auto;
}

.rmt_pages_privacy-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  color: #f9c94e;
  margin-bottom: 20px;
}

.rmt_pages_privacy-subtitle {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 18px;
  color: #d7d8ea;
  line-height: 1.7;
}

.rmt_pages_privacy-infosection {
  background-color: #10131e;
  padding: 50px 20px;
}

.rmt_pages_privacy-infowrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
}

.rmt_pages_privacy-infobox {
  background-color: #252b3d;
  border: 2px solid #3d4463;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 30%;
  min-width: 280px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.3s ease;
}

.rmt_pages_privacy-infobox:hover {
  box-shadow: 0 0 15px rgba(255, 206, 91, 0.4);
}

.rmt_pages_privacy-infobox i {
  font-size: 26px;
  color: #ffcf60;
}

.rmt_pages_privacy-infobox p {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #ececec;
}

.rmt_pages_privacy-infobox a {
  color: #ffe98a;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .rmt_pages_privacy-infobox {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .rmt_pages_privacy-title {
    font-size: 30px;
  }

  .rmt_pages_privacy-infobox {
    flex: 1 1 100%;
  }
}