:root {
  --accent-color: #bfef05;
  --accent-text: #000000;
  --gradient: linear-gradient(90deg, #bfef05, #f26465, #91381f);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Quattrocento Sans', sans-serif;
  --max-width: 1380px;
}

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

html, body {
  font-family: var(--font-body);
  color: var(--accent-text);
  background: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

.mnb_header {
  background: var(--gradient);
  padding: 1rem 2rem;
  max-width: 100%;
  animation: pulseHeader 5s infinite ease-in-out;
}

.mnb_header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.mnb_header__logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-text);
}

.mnb_header__navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mnb_header__menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.mnb_header__menu a {
  text-decoration: none;
  color: var(--accent-text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.mnb_header__menu a:hover {
  color: #91381f;
}

.mnb_header__burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-text);
}

.mnb_header__bottom {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--accent-text);
}

.mnb_header__responsible-gaming {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #000000cc;
  background: #fff8e1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.mnb_header__menu a span.material-icons,
.mnb_header__bottom p span.material-icons,
.mnb_header__responsible-gaming p span.material-icons {
  vertical-align: middle;
  margin-right: 0.5rem;
}

@keyframes pulseHeader {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

@media (max-width: 1024px) {
  .mnb_header__menu {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 2rem;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .mnb_header__menu.active {
    display: flex;
    width: 90%;
    height: auto;
    margin-left: 7px;
    position: relative;
    z-index: 9;
  }

  .mnb_header__burger {
    display: block;
  }
}

@media (max-width: 768px) {
  .mnb_header__navigation {
    flex-direction: column;
    align-items: flex-end;
    position: relative;
  }
}

@media (max-width: 480px) {
  .mnb_header__logo {
    font-size: 1.5rem;
  }

  .mnb_header__menu a {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .mnb_header {
    padding: 1rem;
  }

  .mnb_header__logo {
    font-size: 1.3rem;
  }

  .mnb_header__menu a {
    font-size: 0.9rem;
  }
}

.mnb_welcome {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../mnb-image/mnb-bg-img-1.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  filter: brightness(0.9);
  animation: fadeInSection 1.5s ease-in-out forwards;
}

.mnb_welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.mnb_welcome__content {
  max-width: var(--max-width);
  text-align: center;
  color: #ffffff;
  padding: 0 1rem;
  z-index: 1;
}

.mnb_welcome__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out forwards;
}

.mnb_welcome__description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 1;
}

.mnb_welcome__button {
  display: inline-block;
  background: var(--accent-color);
  color: #000000;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: pulseButton 3s infinite ease-in-out;
}

.mnb_welcome__button:hover {
  background: #f26465;
  transform: scale(1.05);
}

.mnb_welcome__button span.material-icons {
  vertical-align: middle;
  margin-right: 0.6rem;
}

@keyframes fadeInSection {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

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

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

@media (max-width: 1024px) {
  .mnb_welcome__title {
    font-size: 2.4rem;
  }

  .mnb_welcome__description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .mnb_welcome {
    padding: 3rem 1.5rem;
    min-height: 90vh;
  }

  .mnb_welcome__title {
    font-size: 2rem;
  }

  .mnb_welcome__description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .mnb_welcome__title {
    font-size: 1.7rem;
  }

  .mnb_welcome__description {
    font-size: 0.9rem;
  }

  .mnb_welcome__button {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .mnb_welcome__title {
    font-size: 1.5rem;
  }

  .mnb_welcome__description {
    font-size: 0.85rem;
  }

  .mnb_welcome__button {
    width: 100%;
    text-align: center;
  }
}

.mnb_game {
  padding: 6rem 2rem;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.mnb_game__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.mnb_game__image {
  flex: 1 1 45%;
  position: relative;
  top: -20px;
}

.mnb_game__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.mnb_game__info {
  flex: 1 1 45%;
  position: relative;
  top: 20px;
  text-align: center;
}

.mnb_game__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--accent-text);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out forwards;
}

.mnb_game__description {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.mnb_game__button {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: #000000;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: pulseButton 3s infinite ease-in-out;
}

.mnb_game__button:hover {
  background: #f26465;
  transform: scale(1.05);
}

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

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

.mnb_game__image:hover img {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .mnb_game__container {
    gap: 3rem;
  }

  .mnb_game__title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mnb_game {
    padding: 4rem 1.5rem;
  }

  .mnb_game__container {
    flex-direction: column-reverse;
  }

  .mnb_game__image {
    top: 0;
  }

  .mnb_game__info {
    top: 0;
  }
}

@media (max-width: 480px) {
  .mnb_game__title {
    font-size: 1.7rem;
  }

  .mnb_game__description {
    font-size: 0.95rem;
  }

  .mnb_game__button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 320px) {
  .mnb_game__title {
    font-size: 1.5rem;
  }

  .mnb_game__description {
    font-size: 0.9rem;
  }
}

.mnb_about {
  width: 100%;
  padding: 6rem 2rem;
  background: var(--gradient);
  color: #ffffff;
}

.mnb_about__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mnb_about__content {
  flex: 1 1 45%;
  text-align: center;
}

.mnb_about__title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out forwards;
}

.mnb_about__description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.mnb_about__button {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: #000000;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: pulseButton 3s infinite ease-in-out;
}

.mnb_about__button:hover {
  background: #f26465;
  transform: scale(1.05);
}

.mnb_about__image {
  flex: 1 1 45%;
}

.mnb_about__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.mnb_about__image:hover img {
  transform: scale(1.03);
}

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

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

@media (max-width: 1024px) {
  .mnb_about__title {
    font-size: 2.2rem;
  }

  .mnb_about__description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .mnb_about__container {
    flex-direction: column-reverse;
    gap: 3rem;
    text-align: center;
  }

  .mnb_about__content,
  .mnb_about__image {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .mnb_about {
    padding: 4rem 1.5rem;
  }

  .mnb_about__title {
    font-size: 1.9rem;
  }

  .mnb_about__description {
    font-size: 0.95rem;
  }

  .mnb_about__button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 320px) {
  .mnb_about__title {
    font-size: 1.7rem;
  }

  .mnb_about__description {
    font-size: 0.9rem;
  }
}

.mnb_advantages {
  padding: 6rem 2rem;
  background: #ffffff;
  color: var(--accent-text);
}

.mnb_advantages__container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.mnb_advantages__title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out forwards;
}

.mnb_advantages__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
}

.mnb_advantages__card {
  flex: 1 1 calc(33% - 1.5rem);
  background: #f8f8f8;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  animation: floatCard 4s ease-in-out infinite;
}

.mnb_advantages__card:nth-child(even) {
  animation-delay: 0.5s;
}

.mnb_advantages__card span.material-icons {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.mnb_advantages__card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.mnb_advantages__card-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.mnb_advantages__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

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

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

@media (max-width: 1024px) {
  .mnb_advantages__title {
    font-size: 2.3rem;
  }

  .mnb_advantages__card span.material-icons {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .mnb_advantages__cards {
    flex-direction: column;
    align-items: center;
  }

  .mnb_advantages__card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .mnb_advantages__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .mnb_advantages__card span.material-icons {
    font-size: 2.2rem;
  }

  .mnb_advantages__card-title {
    font-size: 1.3rem;
  }

  .mnb_advantages__card-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .mnb_advantages__title {
    font-size: 1.8rem;
  }

  .mnb_advantages__card span.material-icons {
    font-size: 2rem;
  }

  .mnb_advantages__card-title {
    font-size: 1.2rem;
  }

  .mnb_advantages__card-description {
    font-size: 0.9rem;
  }
}

.mnb_choose {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../mnb-image/mnb-bg-img-2.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem;
}

.mnb_choose__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.mnb_choose__content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.mnb_choose__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out forwards;
}

.mnb_choose__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
}

.mnb_choose__card {
  flex: 1 1 calc(25% - 1.5rem);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  animation: floatCard 4s ease-in-out infinite;
}

.mnb_choose__card:nth-child(even) {
  animation-delay: 0.5s;
}

.mnb_choose__card span.material-icons {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.mnb_choose__card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.mnb_choose__card-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.mnb_choose__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

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

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

@media (max-width: 1024px) {
  .mnb_choose__title {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
  }

  .mnb_choose__card span.material-icons {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .mnb_choose__cards {
    flex-direction: column;
    align-items: center;
  }

  .mnb_choose__card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .mnb_choose__title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .mnb_choose__card span.material-icons {
    font-size: 2.2rem;
  }

  .mnb_choose__card-title {
    font-size: 1.3rem;
  }

  .mnb_choose__card-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .mnb_choose__title {
    font-size: 2rem;
  }

  .mnb_choose__card span.material-icons {
    font-size: 2rem;
  }

  .mnb_choose__card-title {
    font-size: 1.2rem;
  }

  .mnb_choose__card-description {
    font-size: 0.9rem;
  }
}

.mnb_reviews {
  padding: 6rem 2rem;
  background: #ffffff;
  color: var(--accent-text);
}

.mnb_reviews__container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.mnb_reviews__title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out forwards;
}

.mnb_reviews__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}

.mnb_reviews__card {
  flex: 1 1 calc(25% - 1.5rem);
  background: #f8f8f8;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  animation: floatCard 4s ease-in-out infinite;
}

.mnb_reviews__card:nth-child(even) {
  animation-delay: 0.5s;
}

.mnb_reviews__card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.mnb_reviews__card-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.mnb_reviews__user-info {
  text-align: left;
}

.mnb_reviews__username {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

.mnb_reviews__location {
  font-size: 0.85rem;
  color: #777;
}

.mnb_reviews__text {
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
}

.mnb_reviews__icon {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-top: 1rem;
}

.mnb_reviews__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

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

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

@media (max-width: 1024px) {
  .mnb_reviews__title {
    font-size: 2.3rem;
    margin-bottom: 3.5rem;
  }

  .mnb_reviews__card {
    flex: 1 1 calc(33% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .mnb_reviews__card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .mnb_reviews__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .mnb_reviews__card {
    padding: 1.8rem;
  }

  .mnb_reviews__card-header img {
    width: 36px;
    height: 36px;
  }

  .mnb_reviews__username,
  .mnb_reviews__location {
    font-size: 0.9rem;
  }

  .mnb_reviews__text {
    font-size: 0.9rem;
  }

  .mnb_reviews__icon {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .mnb_reviews__title {
    font-size: 1.8rem;
  }

  .mnb_reviews__card-header img {
    width: 32px;
    height: 32px;
  }

  .mnb_reviews__username,
  .mnb_reviews__location {
    font-size: 0.85rem;
  }

  .mnb_reviews__text {
    font-size: 0.85rem;
  }

  .mnb_reviews__icon {
    font-size: 1.8rem;
  }
}

.mnb_faq {
  width: 100%;
  background: var(--gradient);
  color: #ffffff;
  padding: 6rem 2rem;
}

.mnb_faq__container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.mnb_faq__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out forwards;
}

.mnb_faq__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}

.mnb_faq__card {
  flex: 1 1 calc(33% - 1.5rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  animation: floatCard 4s ease-in-out infinite;
}

.mnb_faq__card:nth-child(even) {
  animation-delay: 0.5s;
}

.mnb_faq__icon {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.mnb_faq__question {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.mnb_faq__answer {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.mnb_faq__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

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

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

@media (max-width: 1024px) {
  .mnb_faq__title {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
  }

  .mnb_faq__card {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .mnb_faq__cards {
    flex-direction: column;
    align-items: center;
  }

  .mnb_faq__card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .mnb_faq__title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .mnb_faq__card {
    padding: 2rem;
    min-height: 220px;
  }

  .mnb_faq__question {
    font-size: 1.3rem;
  }

  .mnb_faq__answer {
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .mnb_faq__title {
    font-size: 2rem;
  }

  .mnb_faq__question {
    font-size: 1.2rem;
  }

  .mnb_faq__answer {
    font-size: 0.9rem;
  }
}

.mnb_responsible-gaming {
  padding: 6rem 2rem;
  background: #f9f9f9;
  color: var(--accent-text);
}

.mnb_responsible-gaming__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.mnb_responsible-gaming__content {
  flex: 1;
}

.mnb_responsible-gaming__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out forwards;
}

.mnb_responsible-gaming__description {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}

.mnb_responsible-gaming__description a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.mnb_responsible-gaming__description a:hover {
  color: #f26465;
}

.mnb_responsible-gaming__resources {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mnb_responsible-gaming__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.mnb_responsible-gaming__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #f1f1f1;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--accent-text);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mnb_responsible-gaming__links a:hover {
  background: var(--accent-color);
  color: #000000;
  transform: translateX(4px);
}

.mnb_responsible-gaming__links a img {
  width: 155px;
  height: 58px;
  object-fit: contain;
}

.mnb_responsible-gaming__age-notice {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: #fff0f0;
  border: 1px solid #ffe0e0;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  color: #d32f2f;
}

.mnb_responsible-gaming__age-notice img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

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

@media (max-width: 1024px) {
  .mnb_responsible-gaming__container {
    flex-direction: column;
  }

  .mnb_responsible-gaming__links a img {
    width: 130px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .mnb_responsible-gaming__title {
    font-size: 2.2rem;
  }

  .mnb_responsible-gaming__description {
    font-size: 1rem;
  }

  .mnb_responsible-gaming__links a {
    font-size: 0.95rem;
  }

  .mnb_responsible-gaming__links a img {
    width: 110px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .mnb_responsible-gaming {
    padding: 4rem 1.5rem;
  }

  .mnb_responsible-gaming__title {
    font-size: 2rem;
  }

  .mnb_responsible-gaming__description {
    font-size: 0.95rem;
  }

  .mnb_responsible-gaming__links a {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }

  .mnb_responsible-gaming__links a img {
    width: 100px;
    height: auto;
  }

  .mnb_responsible-gaming__age-notice {
    font-size: 0.9rem;
    padding: 0.9rem 1rem;
  }

  .mnb_responsible-gaming__age-notice img {
    width: 48px;
    height: auto;
  }
}

@media (max-width: 320px) {
  .mnb_responsible-gaming__title {
    font-size: 1.8rem;
  }

  .mnb_responsible-gaming__description {
    font-size: 0.9rem;
  }

  .mnb_responsible-gaming__links a {
    font-size: 0.85rem;
    padding: 0.6rem 0.9rem;
  }

  .mnb_responsible-gaming__links a img {
    width: 90px;
    height: auto;
  }

  .mnb_responsible-gaming__age-notice {
    font-size: 0.85rem;
    padding: 0.8rem 0.9rem;
  }
}

.mnb_footer {
  padding: 4rem 2rem;
  background: var(--gradient);
  color: #000000;
  text-align: center;
}

.mnb_footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mnb_footer__info p {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mnb_footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-items: center;
}

.mnb_footer__links a {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  gap: 0.5rem;
}

.mnb_footer__links a:hover {
  color: #91381f;
}

.mnb_footer__links a span.material-icons {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.mnb_footer__links a:hover span.material-icons {
  color: #91381f;
}

@media (min-width: 768px) {
  .mnb_footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .mnb_footer__links {
    grid-template-columns: repeat(4, auto);
    justify-items: start;
  }
}

@media (min-width: 1024px) {
  .mnb_footer__links {
    gap: 2rem;
  }
}

.mnb_age__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.6s ease-in-out forwards;
}

.mnb_age__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.99);
}

.mnb_age__content {
  background: #bfef05;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  animation: scaleIn 0.5s ease-in-out;
}

.mnb_age__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1.2rem;
}

.mnb_age__description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #000000;
  margin-bottom: 2rem;
}

.mnb_age__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.mnb_age__accept,
.mnb_age__decline {
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mnb_age__accept {
  background: #f26465;
  color: #ffffff;
}

.mnb_age__accept:hover {
  background: #91381f;
}

.mnb_age__decline {
  background: #91381f;
  color: #ffffff;
}

.mnb_age__decline:hover {
  background: #f26465;
}

.mnb_cookie__banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  color: #000000;
  padding: 1rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  animation: slideUp 0.6s ease-in-out;
}

.mnb_cookie__text {
  max-width: 850px;
  font-size: 0.95rem;
  flex: 1;
  margin-right: 1rem;
}

.mnb_cookie__link {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: bold;
}

.mnb_cookie__accept {
  background: var(--accent-color);
  color: #000000;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  font-size: 0.95rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mnb_cookie__accept:hover {
  background: #f26465;
}

.mnb_back-to-top {
  position: fixed;
  bottom: 185px;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #000000;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9997;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
}

.mnb_back-to-top:hover {
  background: #f26465;
  transform: scale(1.1);
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.mnb_age__modal,
.mnb_cookie__banner,
.mnb_back-to-top {
  display: none;
}

@media (max-width: 768px) {
  .mnb_age__content {
    padding: 2.5rem 2rem;
  }

  .mnb_age__title {
    font-size: 1.8rem;
  }

  .mnb_age__description {
    font-size: 0.9rem;
  }

  .mnb_age__actions {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .mnb_age__content {
    padding: 2rem 1.5rem;
  }

  .mnb_age__title {
    font-size: 1.6rem;
  }

  .mnb_age__description {
    font-size: 0.85rem;
  }

  .mnb_cookie__text {
    font-size: 0.85rem;
  }

  .mnb_cookie__accept {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 320px) {
  .mnb_age__title {
    font-size: 1.5rem;
  }

  .mnb_age__description {
    font-size: 0.8rem;
  }

  .mnb_cookie__text {
    font-size: 0.8rem;
  }

  .mnb_cookie__accept {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }
}

.mnbpg_contact__header {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.mnbpg_contact__title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--accent-text);
  margin-bottom: 1.5rem;
}

.mnbpg_contact__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--accent-text);
  opacity: 0.9;
}

.mnbpg_contact__form-section {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  background: #fffdf0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.mnbpg_contact__input-group,
.mnbpg_contact__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mnbpg_contact__label {
  font-weight: bold;
  font-size: 1rem;
}

.mnbpg_contact__input,
.mnbpg_contact__textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.mnbpg_contact__input:focus,
.mnbpg_contact__textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

.mnbpg_contact__textarea {
  resize: vertical;
  min-height: 100px;
}

.mnbpg_contact__checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.mnbpg_contact__checkbox {
  transform: scale(1.2);
}

.mnbpg_contact__checkbox-label {
  font-size: 0.95rem;
}

.mnbpg_contact__error {
  color: red;
  font-size: 0.9rem;
  height: 1.2rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mnbpg_contact__submit {
  background: #e0e0e0;
  color: #888;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: not-allowed;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.mnbpg_contact__submit.active {
  background: var(--accent-color);
  color: #000000;
  cursor: pointer;
}

.mnbpg_contact__submit:hover.active {
  background: #f26465;
}

.mnbpg_contact__success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.mnbpg_contact__success-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  animation: fadeInUp 0.5s ease forwards;
}

.mnbpg_contact__close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mnbpg_contact__close-btn:hover {
  color: var(--accent-color);
}

.mnbpg_contact__success-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.mnbpg_contact__success-text {
  font-size: 1rem;
}

.mnbpg_contact__policy-link {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.mnbpg_contact__policy-link:hover {
  color: #f26465;
}

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

@media (max-width: 768px) {
  .mnbpg_contact__title {
    font-size: 2rem;
  }

  .mnbpg_contact__description {
    font-size: 1rem;
  }

  .mnbpg_contact__input,
  .mnbpg_contact__textarea {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .mnbpg_contact__title {
    font-size: 1.8rem;
  }

  .mnbpg_contact__description {
    font-size: 0.95rem;
  }

  .mnbpg_contact__input,
  .mnbpg_contact__textarea {
    font-size: 0.9rem;
  }

  .mnbpg_contact__checkbox-label {
    font-size: 0.85rem;
  }

  .mnbpg_contact__submit {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}

.mnbpg_cookiepolicy__header {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.mnbpg_cookiepolicy__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent-text);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mnbpg_cookiepolicy__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--accent-text);
  opacity: 0.9;
}

.mnbpg_cookiepolicy__content {
  padding: 2rem 2rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mnbpg_cookiepolicy__block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-height: 120px;
  animation: floatCard 4s ease-in-out infinite;
}

.mnbpg_cookiepolicy__block:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.mnbpg_cookiepolicy__icon {
  font-size: 2.4rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.mnbpg_cookiepolicy__text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-text);
  margin-bottom: 0.6rem;
}

.mnbpg_cookiepolicy__text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--accent-text);
  opacity: 0.9;
}

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

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

@media (max-width: 1024px) {
  .mnbpg_cookiepolicy__title {
    font-size: 2.4rem;
  }

  .mnbpg_cookiepolicy__subtitle {
    font-size: 1rem;
  }

  .mnbpg_cookiepolicy__block {
    padding: 1.2rem 1.8rem;
  }
}

@media (max-width: 768px) {
  .mnbpg_cookiepolicy__title {
    font-size: 2.2rem;
  }

  .mnbpg_cookiepolicy__subtitle {
    font-size: 0.95rem;
  }

  .mnbpg_cookiepolicy__block {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mnbpg_cookiepolicy__icon {
    font-size: 2rem;
  }

  .mnbpg_cookiepolicy__text h3 {
    font-size: 1.3rem;
  }

  .mnbpg_cookiepolicy__text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .mnbpg_cookiepolicy__title {
    font-size: 2rem;
  }

  .mnbpg_cookiepolicy__subtitle {
    font-size: 0.9rem;
  }

  .mnbpg_cookiepolicy__block {
    padding: 1rem 1.5rem;
  }

  .mnbpg_cookiepolicy__icon {
    font-size: 2rem;
  }

  .mnbpg_cookiepolicy__text h3 {
    font-size: 1.2rem;
  }

  .mnbpg_cookiepolicy__text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .mnbpg_cookiepolicy__title {
    font-size: 1.8rem;
  }

  .mnbpg_cookiepolicy__subtitle {
    font-size: 0.85rem;
  }

  .mnbpg_cookiepolicy__block {
    padding: 0.9rem 1.3rem;
  }

  .mnbpg_cookiepolicy__icon {
    font-size: 1.8rem;
  }

  .mnbpg_cookiepolicy__text h3 {
    font-size: 1.1rem;
  }

  .mnbpg_cookiepolicy__text p {
    font-size: 0.85rem;
  }
}

.mnbpg_privacypolicy__header {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.mnbpg_privacypolicy__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent-text);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mnbpg_privacypolicy__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--accent-text);
  opacity: 0.9;
}

.mnbpg_privacypolicy__content {
  padding: 2rem 2rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mnbpg_privacypolicy__block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-height: 120px;
  animation: floatCard 4s ease-in-out infinite;
}

.mnbpg_privacypolicy__block:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.mnbpg_privacypolicy__icon {
  font-size: 2.4rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.mnbpg_privacypolicy__text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-text);
  margin-bottom: 0.6rem;
}

.mnbpg_privacypolicy__text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--accent-text);
  opacity: 0.9;
}

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

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

@media (max-width: 1024px) {
  .mnbpg_privacypolicy__title {
    font-size: 2.4rem;
  }

  .mnbpg_privacypolicy__subtitle {
    font-size: 1rem;
  }

  .mnbpg_privacypolicy__block {
    padding: 1.2rem 1.8rem;
  }
}

@media (max-width: 768px) {
  .mnbpg_privacypolicy__title {
    font-size: 2.2rem;
  }

  .mnbpg_privacypolicy__subtitle {
    font-size: 0.95rem;
  }

  .mnbpg_privacypolicy__block {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mnbpg_privacypolicy__icon {
    font-size: 2rem;
  }

  .mnbpg_privacypolicy__text h3 {
    font-size: 1.3rem;
  }

  .mnbpg_privacypolicy__text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .mnbpg_privacypolicy__title {
    font-size: 2rem;
  }

  .mnbpg_privacypolicy__subtitle {
    font-size: 0.9rem;
  }

  .mnbpg_privacypolicy__block {
    padding: 1rem 1.5rem;
  }

  .mnbpg_privacypolicy__icon {
    font-size: 2rem;
  }

  .mnbpg_privacypolicy__text h3 {
    font-size: 1.2rem;
  }

  .mnbpg_privacypolicy__text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .mnbpg_privacypolicy__title {
    font-size: 1.8rem;
  }

  .mnbpg_privacypolicy__subtitle {
    font-size: 0.85rem;
  }

  .mnbpg_privacypolicy__block {
    padding: 0.9rem 1.3rem;
  }

  .mnbpg_privacypolicy__icon {
    font-size: 1.8rem;
  }

  .mnbpg_privacypolicy__text h3 {
    font-size: 1.1rem;
  }

  .mnbpg_privacypolicy__text p {
    font-size: 0.85rem;
  }
}

.mnbpg_responsibleplay__header {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.mnbpg_responsibleplay__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent-text);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mnbpg_responsibleplay__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--accent-text);
  opacity: 0.9;
}

.mnbpg_responsibleplay__content {
  padding: 2rem 2rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mnbpg_responsibleplay__block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-height: 120px;
  animation: floatCard 4s ease-in-out infinite;
}

.mnbpg_responsibleplay__block:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.mnbpg_responsibleplay__icon {
  font-size: 2.4rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.mnbpg_responsibleplay__text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-text);
  margin-bottom: 0.6rem;
}

.mnbpg_responsibleplay__text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--accent-text);
  opacity: 0.9;
}

.mnbpg_responsibleplay__text a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: bold;
}

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

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

@media (max-width: 1024px) {
  .mnbpg_responsibleplay__title {
    font-size: 2.4rem;
  }

  .mnbpg_responsibleplay__subtitle {
    font-size: 1rem;
  }

  .mnbpg_responsibleplay__block {
    padding: 1.2rem 1.8rem;
  }
}

@media (max-width: 768px) {
  .mnbpg_responsibleplay__title {
    font-size: 2.2rem;
  }

  .mnbpg_responsibleplay__subtitle {
    font-size: 0.95rem;
  }

  .mnbpg_responsibleplay__block {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mnbpg_responsibleplay__icon {
    font-size: 2rem;
  }

  .mnbpg_responsibleplay__text h3 {
    font-size: 1.3rem;
  }

  .mnbpg_responsibleplay__text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .mnbpg_responsibleplay__title {
    font-size: 2rem;
  }

  .mnbpg_responsibleplay__subtitle {
    font-size: 0.9rem;
  }

  .mnbpg_responsibleplay__text h3 {
    font-size: 1.2rem;
  }

  .mnbpg_responsibleplay__text p {
    font-size: 0.9rem;
  }

  .mnbpg_responsibleplay__icon {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .mnbpg_responsibleplay__title {
    font-size: 1.8rem;
  }

  .mnbpg_responsibleplay__subtitle {
    font-size: 0.85rem;
  }

  .mnbpg_responsibleplay__text h3 {
    font-size: 1.1rem;
  }

  .mnbpg_responsibleplay__text p {
    font-size: 0.85rem;
  }

  .mnbpg_responsibleplay__icon {
    font-size: 1.8rem;
  }
}