/* === RESET === */
body,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
}

/* === GLOBAL === */
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0e032d 0%, #311b92 40%, #8a2be2 100%);
  color: #f8f5ff;
  min-height: 100vh;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1 1 auto;
}

/* === AGE BANNER === */
.age-banner {
  width: 100%;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  color: #1b0f2b;
  text-align: center;
  padding: 12px 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.age-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.age-text {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1b0f2b;
}

.age-subtext {
  font-size: 14px;
  opacity: 0.85;
  color: #1b0f2b;
}

/* === HOVER GLOW EFFECT (OPTIONAL) === */
.age-banner:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
  transition: box-shadow 0.3s ease-in-out;
}
/* === HEADER === */
.navbar {
  background: linear-gradient(90deg, #8a2be2, #ff69b4);
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
  position: relative;
  z-index: 50;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === LOGO === */
.nav-logo img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* === NAV MENU === */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #f8f5ff;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
}

/* === TOGGLE BUTTON (BURGER) === */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #f8f5ff;
  border-radius: 5px;
  transition: 0.3s;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(180deg, #311b92, #8a2be2);
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu.open {
    max-height: 300px;
  }
}
/* === HERO SECTION === */
#hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8f5ff;
  overflow: hidden;
  text-align: center;
  padding: 60px 20px;
  background: url("../assets/home-hero.png");
  background-position: center;
  background-size: cover;
}

/* затем добавишь фон-картину */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 105, 180, 0.25) 0%,
    transparent 70%
  );
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #b8a9d0;
  margin-bottom: 15px;
}

.hero-text {
  font-size: 1rem;
  color: #e6daff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff69b4, #8a2be2);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(255, 105, 180, 0.5);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: linear-gradient(90deg, #ffd700, #ff69b4);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
  transform: translateY(-3px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-text {
    font-size: 0.95rem;
  }
  .hero-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

.hero-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 24px 0;
}
/* === ABOUT arcadfunplay === */
#about-arcadfunplay {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0e032d 0%, #311b92 50%, #8a2be2 100%);
  color: #f8f5ff;
}

.about-arcadfunplay__container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-arcadfunplay__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-arcadfunplay__image-col {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.about-arcadfunplay__image-wrap {
  max-width: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-arcadfunplay__image-wrap:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

.about-arcadfunplay__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.about-arcadfunplay__text-col {
  flex: 1 1 55%;
}

.about-arcadfunplay__text-content {
  text-align: left;
}

.about-arcadfunplay__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.about-arcadfunplay__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #e6daff;
  margin-bottom: 18px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .about-arcadfunplay__row {
    flex-direction: column;
    text-align: center;
  }

  .about-arcadfunplay__image-col,
  .about-arcadfunplay__text-col {
    flex: 1 1 100%;
  }

  .about-arcadfunplay__title {
    font-size: 1.8rem;
  }

  .about-arcadfunplay__desc {
    font-size: 0.95rem;
  }
}
/* === GAME arcadfunplay === */
#game-arcadfunplay {
  padding: 90px 20px;
  background: linear-gradient(180deg, #311b92 0%, #8a2be2 50%, #ff69b4 100%);
  color: #f8f5ff;
}

.game-arcadfunplay__container {
  max-width: 1200px;
  margin: 0 auto;
}

.game-arcadfunplay__headline {
  text-align: center;
  margin-bottom: 60px;
}

.game-arcadfunplay__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  margin-bottom: 20px;
}

.game-arcadfunplay__subtitle {
  font-size: 1.1rem;
  color: #e6daff;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.game-arcadfunplay__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.game-arcadfunplay__image-col {
  flex: 1 1 60%;
  display: flex;
  justify-content: center;
}

.game-arcadfunplay__image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
  max-width: 600px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-arcadfunplay__image-wrap:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

.game-arcadfunplay__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.game-arcadfunplay__text-col {
  flex: 1 1 35%;
}

.game-arcadfunplay__text-content h4 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.game-arcadfunplay__text-content p {
  font-size: 1rem;
  color: #f8f5ff;
  margin-bottom: 14px;
  line-height: 1.7;
}

.game-arcadfunplay__btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff69b4, #8a2be2);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
  transition: all 0.3s ease;
}

.game-arcadfunplay__btn:hover {
  background: linear-gradient(90deg, #ffd700, #ff69b4);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
  transform: translateY(-3px);
}
.game-arcadfunplay__text-content {
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .game-arcadfunplay__row {
    flex-direction: column;
    text-align: center;
  }

  .game-arcadfunplay__image-col,
  .game-arcadfunplay__text-col {
    flex: 1 1 100%;
  }

  .game-arcadfunplay__title {
    font-size: 2rem;
  }

  .game-arcadfunplay__subtitle {
    font-size: 1rem;
  }

  .game-arcadfunplay__text-content h4 {
    font-size: 1.2rem;
  }
}
/* === WHY arcadfunplay === */
#why-arcadfunplay {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0e032d 0%, #311b92 40%, #8a2be2 100%);
  color: #f8f5ff;
  text-align: center;
}

.why-arcadfunplay__container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-arcadfunplay__headline {
  margin-bottom: 60px;
}

.why-arcadfunplay__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  margin-bottom: 20px;
}

.why-arcadfunplay__subtitle {
  font-size: 1.1rem;
  color: #e6daff;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.why-arcadfunplay__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.why-arcadfunplay__item {
  background: rgba(49, 27, 146, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 25px;
  width: 320px;
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-arcadfunplay__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

/* ICON */
.why-arcadfunplay__icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* TEXT */
.why-arcadfunplay__desc h4 {
  font-size: 1.3rem;
  color: #ff69b4;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

.why-arcadfunplay__desc p {
  font-size: 1rem;
  color: #f8f5ff;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .why-arcadfunplay__item {
    width: 100%;
    max-width: 380px;
  }

  .why-arcadfunplay__title {
    font-size: 2rem;
  }

  .why-arcadfunplay__subtitle {
    font-size: 1rem;
  }
}
/* === DISCLAIMER arcadfunplay === */
#disclaimer-arcadfunplay {
  padding: 80px 20px;
  background: linear-gradient(180deg, #311b92 0%, #8a2be2 60%, #ff69b4 100%);
  color: #f8f5ff;
  text-align: center;
}

.disclaimer-arcadfunplay__container {
  max-width: 1100px;
  margin: 0 auto;
}

.disclaimer-arcadfunplay__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

/* === IMAGE === */
.disclaimer-arcadfunplay__image {
  max-width: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.disclaimer-arcadfunplay__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* === HEADLINE === */
.disclaimer-arcadfunplay__headline {
  max-width: 800px;
}

.disclaimer-arcadfunplay__title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  margin-bottom: 15px;
}

.disclaimer-arcadfunplay__text {
  font-size: 1rem;
  color: #e6daff;
  line-height: 1.8;
  background: rgba(14, 3, 45, 0.4);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

/* === LOGOS === */
.disclaimer-arcadfunplay__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.disclaimer-arcadfunplay__logos img {
  height: 50px;
  width: auto;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

.disclaimer-arcadfunplay__logos a:hover img {
  filter: brightness(1.2);
  transform: scale(1.05);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .disclaimer-arcadfunplay__title {
    font-size: 1.7rem;
  }

  .disclaimer-arcadfunplay__text {
    font-size: 0.95rem;
    padding: 20px;
  }

  .disclaimer-arcadfunplay__logos img {
    height: 40px;
  }
}
/* === FOOTER arcadfunplay === */
#footer-arcadfunplay {
  background: linear-gradient(180deg, #0e032d 0%, #311b92 40%, #8a2be2 100%);
  color: #f8f5ff;
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-arcadfunplay__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-arcadfunplay__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* === LOGO === */
.footer-arcadfunplay__logo img {
  width: 90px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-arcadfunplay__logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* === DESCRIPTION === */
.footer-arcadfunplay__desc p {
  font-size: 1rem;
  max-width: 700px;
  line-height: 1.7;
  color: #e6daff;
}

/* === NAVIGATION === */
.footer-arcadfunplay__nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 15px 0;
}

.footer-arcadfunplay__nav a {
  text-decoration: none;
  color: #ffd700;
  font-weight: 600;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-arcadfunplay__nav a:hover {
  color: #ff69b4;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}

/* === SOCIALS === */
.footer-arcadfunplay__socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-arcadfunplay__socials a {
  color: #ffd700;
  font-size: 1.3rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-arcadfunplay__socials a:hover {
  color: #ff69b4;
  transform: scale(1.2);
}

/* === COPYRIGHT === */
.footer-arcadfunplay__copy {
  font-size: 0.9rem;
  color: #b8a9d0;
  margin-top: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer-arcadfunplay__nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .footer-arcadfunplay__desc p {
    font-size: 0.95rem;
  }
}
/* === PLAY arcadfunplay === */
#play-arcadfunplay {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0e032d 0%, #311b92 40%, #8a2be2 100%);
  color: #f8f5ff;
  text-align: center;
}

.play-arcadfunplay__container {
  max-width: 1100px;
  margin: 0 auto;
}

.play-arcadfunplay__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  margin-bottom: 15px;
}

.play-arcadfunplay__desc {
  font-size: 1.1rem;
  color: #e6daff;
  line-height: 1.7;
  margin-bottom: 50px;
}

.play-arcadfunplay__iframe-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 105, 180, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.4);
}

.play-arcadfunplay__iframe-wrap iframe {
  width: 100%;
  height: 700px;
  border: none;
  background-color: #0e032d;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .play-arcadfunplay__iframe-wrap iframe {
    height: 500px;
  }
}

@media (max-width: 600px) {
  .play-arcadfunplay__title {
    font-size: 2rem;
  }

  .play-arcadfunplay__desc {
    font-size: 1rem;
  }

  .play-arcadfunplay__iframe-wrap iframe {
    height: 420px;
  }
}
/* === CONTACT arcadfunplay === */
#contact-arcadfunplay {
  padding: 100px 20px;
  background: linear-gradient(180deg, #311b92 0%, #8a2be2 60%, #ff69b4 100%);
  color: #f8f5ff;
  text-align: center;
}

.contact-arcadfunplay__container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-arcadfunplay__header {
  margin-bottom: 50px;
}

.contact-arcadfunplay__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  margin-bottom: 15px;
}

.contact-arcadfunplay__subtitle {
  font-size: 1.1rem;
  color: #e6daff;
  line-height: 1.7;
}

/* === FORM === */
.contact-arcadfunplay__form form {
  background: rgba(14, 3, 45, 0.4);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
  backdrop-filter: blur(4px);
}

.contact-arcadfunplay__group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-arcadfunplay__group--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-arcadfunplay__group input,
.contact-arcadfunplay__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #f8f5ff;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}

.contact-arcadfunplay__group input:focus,
.contact-arcadfunplay__group textarea:focus {
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  outline: none;
}

/* === BUTTON === */
.contact-arcadfunplay__btn {
  background: linear-gradient(90deg, #ff69b4, #8a2be2);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
  transition: all 0.3s ease;
}

.contact-arcadfunplay__btn i {
  margin-right: 8px;
}

.contact-arcadfunplay__btn:hover {
  background: linear-gradient(90deg, #ffd700, #ff69b4);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  transform: translateY(-3px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact-arcadfunplay__title {
    font-size: 2rem;
  }

  .contact-arcadfunplay__subtitle {
    font-size: 1rem;
  }

  .contact-arcadfunplay__form form {
    padding: 30px 20px;
  }

  .contact-arcadfunplay__group--inline {
    flex-direction: column;
  }

  .contact-arcadfunplay__btn {
    width: 100%;
    font-size: 1rem;
  }
}
/* === PRIVACY arcadfunplay === */
#privacy-arcadfunplay {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0e032d 0%, #311b92 50%, #8a2be2 100%);
  color: #f8f5ff;
}

.privacy-arcadfunplay__container {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-arcadfunplay__content {
  background: rgba(14, 3, 45, 0.45);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
}

.privacy-arcadfunplay__title {
  text-align: center;
  font-size: 2.4rem;
  color: #ffd700;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.privacy-arcadfunplay__intro {
  font-size: 1.1rem;
  color: #e6daff;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.privacy-arcadfunplay__subtitle {
  color: #ff69b4;
  font-size: 1.3rem;
  margin-top: 35px;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.privacy-arcadfunplay__content p {
  color: #f8f5ff;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.privacy-arcadfunplay__content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.privacy-arcadfunplay__content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  color: #e6daff;
  line-height: 1.7;
}

.privacy-arcadfunplay__content ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .privacy-arcadfunplay__content {
    padding: 30px 20px;
  }

  .privacy-arcadfunplay__title {
    font-size: 2rem;
  }

  .privacy-arcadfunplay__subtitle {
    font-size: 1.2rem;
  }

  .privacy-arcadfunplay__intro {
    font-size: 1rem;
  }
}
/* === COOKIES arcadfunplay === */
#cookies-arcadfunplay {
  padding: 100px 20px;
  background: linear-gradient(180deg, #311b92 0%, #8a2be2 60%, #ff69b4 100%);
  color: #f8f5ff;
}

.cookies-arcadfunplay__container {
  max-width: 1000px;
  margin: 0 auto;
}

.cookies-arcadfunplay__content {
  background: rgba(14, 3, 45, 0.45);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
}

.cookies-arcadfunplay__title {
  text-align: center;
  font-size: 2.4rem;
  color: #ffd700;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.cookies-arcadfunplay__intro {
  font-size: 1.1rem;
  color: #e6daff;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.cookies-arcadfunplay__subtitle {
  color: #ff69b4;
  font-size: 1.3rem;
  margin-top: 35px;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.cookies-arcadfunplay__content p {
  color: #f8f5ff;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.cookies-arcadfunplay__content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.cookies-arcadfunplay__content ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  color: #e6daff;
  line-height: 1.7;
}

.cookies-arcadfunplay__content ul li::before {
  content: "☆";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .cookies-arcadfunplay__content {
    padding: 30px 20px;
  }

  .cookies-arcadfunplay__title {
    font-size: 2rem;
  }

  .cookies-arcadfunplay__subtitle {
    font-size: 1.2rem;
  }

  .cookies-arcadfunplay__intro {
    font-size: 1rem;
  }
}
/* === TERMS arcadfunplay === */
#terms-arcadfunplay {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0e032d 0%, #311b92 50%, #8a2be2 100%);
  color: #f8f5ff;
}

.terms-arcadfunplay__container {
  max-width: 1000px;
  margin: 0 auto;
}

.terms-arcadfunplay__content {
  background: rgba(14, 3, 45, 0.45);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
}

.terms-arcadfunplay__title {
  text-align: center;
  font-size: 2.4rem;
  color: #ffd700;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.terms-arcadfunplay__intro {
  font-size: 1.1rem;
  color: #e6daff;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.terms-arcadfunplay__subtitle {
  color: #ff69b4;
  font-size: 1.3rem;
  margin-top: 35px;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.terms-arcadfunplay__content p {
  color: #f8f5ff;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.terms-arcadfunplay__content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.terms-arcadfunplay__content ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  color: #e6daff;
  line-height: 1.7;
}

.terms-arcadfunplay__content ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .terms-arcadfunplay__content {
    padding: 30px 20px;
  }

  .terms-arcadfunplay__title {
    font-size: 2rem;
  }

  .terms-arcadfunplay__subtitle {
    font-size: 1.2rem;
  }

  .terms-arcadfunplay__intro {
    font-size: 1rem;
  }
}
/* === RESPONSIBLE arcadfunplay === */
#responsible-arcadfunplay {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0e032d 0%, #311b92 50%, #8a2be2 100%);
  color: #f8f5ff;
}

.responsible-arcadfunplay__container {
  max-width: 1000px;
  margin: 0 auto;
}

.responsible-arcadfunplay__content {
  background: rgba(14, 3, 45, 0.45);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
}

.responsible-arcadfunplay__title {
  text-align: center;
  font-size: 2.4rem;
  color: #ffd700;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.responsible-arcadfunplay__intro {
  font-size: 1.1rem;
  color: #e6daff;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.responsible-arcadfunplay__subtitle {
  color: #ff69b4;
  font-size: 1.3rem;
  margin-top: 35px;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.responsible-arcadfunplay__content p {
  color: #f8f5ff;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.responsible-arcadfunplay__content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.responsible-arcadfunplay__content ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  color: #e6daff;
  line-height: 1.7;
}

.responsible-arcadfunplay__content ul li::before {
  content: "🌙";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 1rem;
}

/* Link styles for support organizations */
.responsible-arcadfunplay__content a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.responsible-arcadfunplay__content a:hover {
  color: #ff69b4;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .responsible-arcadfunplay__content {
    padding: 30px 20px;
  }

  .responsible-arcadfunplay__title {
    font-size: 2rem;
  }

  .responsible-arcadfunplay__subtitle {
    font-size: 1.2rem;
  }

  .responsible-arcadfunplay__intro {
    font-size: 1rem;
  }
}
/* === AGE POPUP arcadfunplay === */
.age-popup-arcadfunplay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.age-popup-arcadfunplay.active {
  display: block;
}

.age-popup-arcadfunplay__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 3, 45, 0.9);
  backdrop-filter: blur(6px);
}

.age-popup-arcadfunplay__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.age-popup-arcadfunplay__inner {
  background: linear-gradient(180deg, #311b92 0%, #8a2be2 60%, #ff69b4 100%);
  border-radius: 20px;
  padding: 40px 30px;
  color: #fff;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.5);
  text-align: center;
  animation: popupFadeIn 0.6s ease forwards;
}

.age-popup-arcadfunplay__inner h2 {
  color: #ffd700;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  margin-bottom: 15px;
}

.age-popup-arcadfunplay__inner p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e6daff;
  margin-bottom: 30px;
}

.age-popup-arcadfunplay__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-age-yes,
.btn-age-no {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-age-yes {
  background: linear-gradient(90deg, #ffd700, #ff69b4);
  color: #0e032d;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.btn-age-yes:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.btn-age-no {
  background: rgba(255, 255, 255, 0.15);
  color: #f8f5ff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-age-no:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ANIMATION */
@keyframes popupFadeIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .age-popup-arcadfunplay__inner {
    padding: 25px 20px;
  }
  .age-popup-arcadfunplay__inner h2 {
    font-size: 1.5rem;
  }
  .age-popup-arcadfunplay__inner p {
    font-size: 0.95rem;
  }
}
