@charset "UTF-8";
@font-face {
  font-family: "Jaro";
  src: url("./Jaro-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./Inter_18pt-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

:root {
  --color-primary-dark: #00001b;
  --color-primary-medium: #001523;
  --color-primary-light: #003457;
  --color-accent-blue: #0190f0;
  --color-accent-blue-light: #c9e9ff;
  --color-accent-red: #e40b00;
  --color-white: #ffffff;
  --color-text-light: #f2f2f2;
  --color-text-dark: #262626;
  --font-main: "Prompt", sans-serif;
  --font-display: "Poor Story", cursive;
  --font-alt: "Kanit", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-primary-dark);
  font-family: var(--font-main);
  color: var(--color-white);
  overflow-x: hidden;
}

.main-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1200px) {
  .section-padding {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
:root {
  --gradient-bar: linear-gradient(90deg, #ff5c55 0%, #f7bb04 24.04%, #72de05 48.56%, #07a1e7 72.6%, #ce62f7 100%);
  --text-white: #ffffff;
  --burger-color: #ffffff;
  --transition-speed: 0.3s;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #160013;
}

* {
  box-sizing: border-box;
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jaro", sans-serif;
  font-weight: 400;
  margin: 0;
}

p {
  margin: 0;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-bar);
  padding: 14px 24px;
  border-radius: 20px;
  color: #ffffff;
  font-family: "Jaro", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  width: 100%;
  max-width: 260px;
  text-align: center;
  text-shadow: -1px -1px 0 #6e6e6e, 1px -1px 0 #6e6e6e, -1px 1px 0 #6e6e6e, 1px 1px 0 #6e6e6e;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .cta-button {
    max-width: 100%;
  }
}

.cta-button:hover {
  transform: scale(1.05);
}

/* Base Header Styles */
.site-header {
  width: 100%;
  height: 64px;
  background: var(--gradient-bar);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 100px;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo:hover {
  opacity: 0.9;
}

.logo-icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  width: 100%;
  height: auto;
  display: block;
}

.logo-text {
  font-family: "Jaro", sans-serif;
  font-size: 28px;
  color: var(--text-white);
  line-height: 1.5;
  font-weight: 400;
}

/* Navigation Styles */
.main-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: "Jaro", sans-serif;
  font-size: 18px;
  color: var(--text-white);
  text-decoration: none;
  transition: opacity var(--transition-speed);
  position: relative;
  padding: 5px 0;
}
.main-nav a:hover {
  opacity: 0.8;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-white);
  transition: width var(--transition-speed);
}
.main-nav a:hover::after {
  width: 100%;
}

/* Burger Menu Styles */
.burger-menu {
  display: flex;
  align-items: center;
}

/* Burger Menu Styles */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  width: 24px;
  height: 18px;
  position: relative;
  margin-left: auto;
}
.mobile-nav-toggle .burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--burger-color);
  border-radius: 1px;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}
.mobile-nav-toggle .burger-line:nth-child(1) {
  top: 0;
}
.mobile-nav-toggle .burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.mobile-nav-toggle .burger-line:nth-child(3) {
  bottom: 0;
}
.mobile-nav-toggle[aria-expanded=true] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle[aria-expanded=true] .burger-line:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle[aria-expanded=true] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
    position: relative;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 64px;
    right: 16px;
    width: 160px;
    background: var(--gradient-bar);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    overflow: hidden;
    z-index: 1000;
    padding: 8px 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav li {
    padding: 8px 16px;
    transition: background-color 0.2s ease;
  }
  .main-nav li:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .main-nav a {
    font-size: 14px;
    padding: 0;
    display: block;
  }
  .main-nav a::after {
    display: none;
  }
  /* When menu is open */
  .mobile-nav-toggle[aria-expanded=true] + .main-nav {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}
.funuola-hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 800px;
  padding: 40px 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/assets/img/hero.webp");
  background-size: cover;
  background-position: center;
}

.funuola-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 1000px;
  padding: 40px;
  border-radius: 20px;
}

.funuola-hero-title {
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
}

.funuola-cta-button {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 28px;
  color: #fff;
  background-color: #0094f7;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}
.funuola-cta-button:hover {
  background-color: #0076c9;
}

@media (max-width: 768px) {
  .funuola-hero-section {
    min-height: 600px;
  }
  .funuola-hero-title {
    font-size: 24px;
    font-weight: normal;
  }
  .funuola-hero-content {
    padding: 20px;
  }
}
.funuola-about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px 100px;
}

.funuola-about-content {
  flex: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.funuola-about-title {
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #160013;
}
@media (max-width: 768px) {
  .funuola-about-title {
    font-size: 20px;
  }
}

.funuola-about-text {
  font-size: 16px;
  line-height: 1.5;
  color: #160013;
}
@media (max-width: 768px) {
  .funuola-about-text {
    display: none;
  }
}

.funuola-mob-version {
  display: none;
}
@media (max-width: 768px) {
  .funuola-mob-version {
    display: flex;
    font-size: 16px;
  }
}

.funuola-about-image-container {
  flex-basis: 500px;
  flex-shrink: 0;
}

.funuola-about-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .funuola-about-section {
    flex-direction: column-reverse;
    padding: 60px 40px;
  }
  .funuola-about-content {
    max-width: 100%;
    text-align: left;
  }
  .funuola-about-image-container {
    flex-basis: auto;
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .funuola-about-section {
    padding: 40px 20px;
  }
}
.funuola-games-section {
  background-color: rgba(186, 203, 36, 0.1);
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.funuola-games-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 1240px;
}
@media (max-width: 768px) {
  .funuola-games-intro {
    align-items: flex-start;
  }
}

.funuola-games-title {
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #160013;
}
@media (max-width: 768px) {
  .funuola-games-title {
    text-align: left;
  }
}

.funuola-games-description {
  font-size: 16px;
  line-height: 1.5;
  color: #160013;
}
@media (max-width: 768px) {
  .funuola-games-description {
    text-align: left;
  }
}

.funuola-games-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.funuola-game-image-1,
.funuola-game-image-2 {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.funuola-game-image-1 {
  width: 492px;
  height: 281px;
  align-self: center;
}

.funuola-game-image-2 {
  width: 708px;
  height: 414px;
}

@media (max-width: 1200px) {
  .funuola-games-gallery {
    flex-direction: column;
    align-items: center;
  }
  .funuola-game-image-1 {
    align-self: center;
    width: 100%;
    max-width: 492px;
    height: auto;
  }
  .funuola-game-image-2 {
    width: 100%;
    max-width: 708px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .funuola-games-section {
    padding: 40px 20px;
  }
  .funuola-games-title {
    font-size: 24px;
  }
}
.funuola-disclaimer-section {
  padding: 80px 100px;
}

.funuola-disclaimer-box {
  background: var(--gradient-bar);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.funuola-disclaimer-title {
  font-size: 38px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow: -1px -1px 0 #160013, 1px -1px 0 #160013, -1px 1px 0 #160013, 1px 1px 0 #160013;
}

.funuola-disclaimer-text {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: normal;
  text-shadow: -0.5px -0.5px 0 #2c1028, 0.5px -0.5px 0 #2c1028, -0.5px 0.5px 0 #2c1028, 0.5px 0.5px 0 #2c1028;
  max-width: 1160px;
}

@media (max-width: 768px) {
  .funuola-disclaimer-section {
    padding: 40px 20px;
  }
  .funuola-disclaimer-box {
    padding: 20px;
  }
  .funuola-disclaimer-title {
    font-size: 28px;
  }
}
/* CSS from section:footer */
.site-footer {
  background-color: #9424cb;
  padding: 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: #ffffff;
}

.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  width: 100%;
  flex-wrap: wrap;
}

.footer-age-rating img {
  width: 82px;
  height: 50px;
}

.footer-logo {
  align-self: center;
}

.footer-column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 120px;
}
@media (max-width: 768px) {
  .footer-column {
    gap: 20px 60px;
  }
}

.contact-info {
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .contact-info {
    text-align: left;
    max-width: 250px;
  }
}

.contact-info-p {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .contact-info-p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .contact-info p {
    font-size: 16px;
  }
}

.contact-info span {
  font-weight: 700;
}
@media (max-width: 768px) {
  .contact-info span {
    font-size: 16px;
  }
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-nav a {
  font-family: "Jaro", sans-serif;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .footer-nav a {
    font-size: 16px;
  }
}

.footer-nav a:hover {
  opacity: 0.8;
}

.copyright {
  color: #f1d6ff;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 1200px) {
  .footer-main {
    gap: 60px;
  }
}
@media (max-width: 992px) {
  .site-footer {
    padding: 20px;
  }
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-nav ul {
    align-items: center;
    gap: 16px;
    width: 100px;
  }
}
/* CSS for Play Section with Game Iframe */
.play-section {
  padding: 80px 100px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .play-section {
    padding: 40px 20px;
  }
}

.play-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.play-title {
  font-family: "Jaro", sans-serif;
  font-size: 38px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .play-title {
    font-size: 28px;
  }
}

.game-frame-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: #000;
}

.play-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-white);
  text-align: center;
  max-width: 800px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .play-description {
    font-size: 14px;
  }
}

/* Animation for the play section */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 15px rgba(148, 0, 211, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(148, 0, 211, 0.8);
  }
  100% {
    box-shadow: 0 0 15px rgba(148, 0, 211, 0.5);
  }
}
.game-frame-wrapper:hover {
  animation: pulse-glow 2s infinite;
  border-color: rgba(148, 0, 211, 0.5);
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 100px;
  background: #000;
  min-height: 100vh;
}

.contact-widget {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  gap: 80px;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.form-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.title {
  color: #160013;
  font-family: "Jaro", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin: 0;
}

.subtitle {
  color: #160013;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

.form-fields-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #160013;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #160013;
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #999999;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999999;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.custom-checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.custom-checkbox:checked {
  background-color: #9425cc;
  border-color: #9425cc;
}

.custom-checkbox:checked::after {
  content: "✔";
  font-size: 14px;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-group label {
  color: #160013;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  max-width: 250px;
}

.checkbox-group a {
  text-decoration: underline;
  color: inherit;
}

.submit-button {
  background: linear-gradient(90deg, #ff5c55 0%, #f7bb04 24.04%, #72de05 48.56%, #07a1e7 72.6%, #ce62f7 100%);
  padding: 14px 24px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-family: "Jaro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.submit-button:hover {
  transform: scale(1.05);
}

.image-column {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.image-column img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1200px) {
  .contact-widget {
    flex-direction: column;
    gap: 40px;
  }
  .image-column {
    order: -1;
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .submit-button {
    text-align: center;
  }
  .checkbox-group {
    justify-content: flex-start;
  }
}
.email-group {
  position: relative;
  /* Warning State */
  /* Error State */
  /* Success State */
}
.email-group .input-wrapper {
  position: relative;
}
.email-group .validation-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.email-group .validation-message {
  font-size: 12px;
  margin-top: 4px;
  height: 16px;
  color: transparent;
  transition: color 0.3s ease;
  font-family: "Inter", sans-serif;
}
.email-group.warning input {
  border-color: #ffc107 !important;
  box-shadow: 0 0 0 1px #ffc107;
}
.email-group.warning .validation-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFC107'%3E%3Cpath d='M12 2L1 21h22L12 2zm0 3.5L19.5 19h-15L12 5.5z'/%3E%3Cpath d='M12 16c.8 0 1.5-.7 1.5-1.5S12.8 13 12 13s-1.5.7-1.5 1.5.7 1.5 1.5 1.5z'/%3E%3Cpath d='M12 9c.6 0 1-.4 1-1V7c0-.6-.4-1-1-1s-1 .4-1 1v1c0 .6.4 1 1 1z'/%3E%3C/svg%3E");
  opacity: 1;
}
.email-group.warning .validation-message {
  color: #ffc107;
}
.email-group.error input {
  border-color: #f44336 !important;
  box-shadow: 0 0 0 1px #f44336;
}
.email-group.error .validation-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F44336'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z'/%3E%3Cpath d='M16.6 7.4L12 12l-4.6-4.6-1.4 1.4L10.6 13l-4.6 4.6 1.4 1.4L12 14.6l4.6 4.6 1.4-1.4L13.4 13l4.6-4.6z'/%3E%3C/svg%3E");
  opacity: 1;
}
.email-group.error .validation-message {
  color: #f44336;
}
.email-group.success input {
  border-color: #4caf50 !important;
  box-shadow: 0 0 0 1px #4caf50;
}
.email-group.success .validation-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z'/%3E%3Cpath d='M16.6 7.4L12 12l-2.6-2.6-1.4 1.4L12 14.6l6-6-1.4-1.4z'/%3E%3C/svg%3E");
  opacity: 1;
}
.email-group.success .validation-message {
  color: #4caf50;
}

/* Success Modal Styles */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.success-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: #160013;
}
.modal-content h3 {
  font-family: "Jaro", sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: #9424cb;
}
.modal-content p {
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}

.modal-close-btn {
  background: var(--gradient-bar);
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  color: white;
  font-family: "Jaro", sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.modal-close-btn:hover {
  transform: scale(1.05);
}

/* Age Verification Modal */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.age-verification-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #160013;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.modal-header {
  margin-bottom: 20px;
}

.logo {
  max-width: 150px;
  height: auto;
}

.modal-content {
  background: #160013;
}

.modal-content h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: bold;
}

.buttons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.age-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.yes-btn {
  background-color: #4caf50;
  color: white;
}

.yes-btn:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
}

.no-btn {
  background-color: #f44336;
  color: white;
}

.no-btn:hover {
  background-color: #d32f2f;
  transform: translateY(-2px);
}

.modal-footer {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
}

/* Blocked Content */
.content-blocked {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blocked-message {
  max-width: 500px;
  padding: 30px;
}

.blocked-message h2 {
  color: #f44336;
  font-size: 28px;
  margin-bottom: 20px;
}

.blocked-message p {
  font-size: 18px;
  margin-bottom: 30px;
}

.exit-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.exit-btn:hover {
  background-color: #555;
}

/* Responsive */
@media (max-width: 480px) {
  .age-verification-modal {
    padding: 20px;
  }
  .modal-content h2 {
    font-size: 20px;
  }
  .buttons-container {
    flex-direction: column;
    gap: 15px;
  }
  .age-btn {
    width: 100%;
  }
}
/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 380px;
  background-color: #160013;
  color: #160013;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateX(120%);
  transition: transform 0.3s ease-out;
  display: none;
  font-family: "Inter", sans-serif;
}
.cookie-banner.show {
  transform: translateX(0);
  display: block;
}
.cookie-banner .cookie-title {
  font-family: "Jaro", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
}
.cookie-banner .cookie-text {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.cookie-banner .cookie-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(22, 0, 19, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  margin: 16px 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.cookie-banner .cookie-buttons button,
.cookie-banner .cookie-buttons a {
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
}
.cookie-banner .cookie-confirm {
  background: var(--gradient-bar);
  color: white;
  border: none;
  text-shadow: -1px -1px 0 #6e6e6e, 1px -1px 0 #6e6e6e, -1px 1px 0 #6e6e6e, 1px 1px 0 #6e6e6e;
}
.cookie-banner .cookie-confirm:hover {
  transform: scale(1.05);
}
.cookie-banner .cookie-more {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .cookie-more:hover {
  background: rgba(22, 0, 19, 0.1);
}

@media (max-width: 480px) {
  .cookie-banner {
    max-width: calc(100% - 40px);
    left: 20px;
    right: 20px;
  }
}
.funuola-privacy-policy {
  background-color: #ffffff;
  padding: 5rem 2rem;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.funuola-privacy-policy .funuola-privacy-policy-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
}
.funuola-privacy-policy .funuola-privacy-policy-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #001b28;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid #0094f7;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.funuola-privacy-policy .funuola-privacy-policy-content {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}
.funuola-privacy-policy .funuola-privacy-policy-content p {
  margin-bottom: 1.5rem;
}
.funuola-privacy-policy .funuola-privacy-policy-content strong {
  color: #0094f7;
}/*# sourceMappingURL=main.css.map */