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

:root {
  --ef-gradient-primary: linear-gradient(135deg, #ff00cc, #3333ff, #00ffcc);
  --ef-gradient-secondary: linear-gradient(45deg, #ff3366, #ffcc00, #33ccff);
  --ef-gradient-tertiary: linear-gradient(225deg, #9933ff, #ff3399, #66ff33);
  --ef-color-accent-vibrant: #ff00cc;
  --ef-color-accent-bright: #33ccff;
  --ef-color-accent-neon: #66ff33;
  --ef-color-text-light: #ffffff;
  --ef-color-text-dim: rgba(255, 255, 255, 0.8);
  --ef-color-background-dark: #0a0a1a;
  --ef-color-background-semi: rgba(10, 10, 26, 0.85);
  --ef-shadow-glow: 0 0 20px rgba(255, 0, 204, 0.5);
  --ef-shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.2);
  --ef-border-radius-smooth: 12px;
  --ef-border-radius-pill: 50px;
  --ef-transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ef-transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--ef-color-text-light);
  line-height: 1.6;
  background: url('/ef-core/ef-img/lucky-bg-img.webp') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 26, 0.7);
  z-index: -1;
}

.ef-page-wrapper {
  margin: 0 auto;
  position: relative;
  background: transparent;
  box-shadow: none;
  z-index: 11;
}

.ef-global-header {
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(15px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.ef-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1510px;
  margin: 0 auto;
}

.ef-header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  background: var(--ef-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: var(--ef-transition-smooth);
}

.ef-header-brand:hover {
  transform: scale(1.05);
}

.ef-brand-icon {
  font-size: 2rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-global-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 1.5rem;
}

.ef-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1rem;
}

.ef-nav-link {
  text-decoration: none;
  color: var(--ef-color-text-light);
  font-weight: 500;
  left: 0;
  padding: 0.5rem 1rem;
  border-radius: var(--ef-border-radius-pill);
  transition: var(--ef-transition-smooth);
  position: relative;
  overflow: hidden;
}

.ef-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ef-gradient-secondary);
  transition: var(--ef-transition-smooth);
  z-index: -1;
  border-radius: var(--ef-border-radius-pill);
}

.ef-nav-link:hover::before {
  left: 0;
}

.ef-nav-link:hover {
  color: var(--ef-color-background-dark);
  transform: translateY(-2px);
}

.ef-contact-trigger {
  background: var(--ef-gradient-tertiary);
  border: none;
  color: var(--ef-color-text-light);
  padding: 0.7rem 1.5rem;
  border-radius: var(--ef-border-radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ef-transition-smooth);
  box-shadow: var(--ef-shadow-glow);
}

.ef-contact-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 204, 0.6);
}

.ef-mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ef-color-text-light);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--ef-transition-smooth);
}

.ef-mobile-nav-toggle:hover {
  transform: scale(1.1);
}

.ef-content-main {
  background: transparent;
  position: relative;
  z-index: 1;
}

.ef-section-welcome {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  background: transparent;
}

.ef-welcome-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ef-welcome-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--ef-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 4.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ef-welcome-text {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ef-color-text-dim);
  min-height: 3.6rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.ef-welcome-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ef-welcome-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--ef-border-radius-smooth);
  width: 200px;
  transition: var(--ef-transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ef-welcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.ef-welcome-card:hover::before {
  left: 100%;
}

.ef-welcome-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--ef-shadow-glow);
}

.ef-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-card-text {
  font-size: 0.9rem;
  color: var(--ef-color-text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.ef-welcome-cta {
  display: inline-block;
  background: var(--ef-gradient-primary);
  color: var(--ef-color-text-light);
  padding: 1rem 2.5rem;
  border-radius: var(--ef-border-radius-pill);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ef-transition-smooth);
  box-shadow: var(--ef-shadow-glow);
  position: relative;
  overflow: hidden;
}

.ef-welcome-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.ef-welcome-cta:hover::before {
  left: 100%;
}

.ef-welcome-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(51, 204, 255, 0.6);
}

.ef-section-features {
  padding: 5rem 2rem;
  background: rgba(10, 10, 26, 0.7);
}

.ef-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ef-features-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.ef-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.ef-feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--ef-border-radius-smooth);
  width: 250px;
  text-align: center;
  transition: var(--ef-transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ef-feature-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--ef-shadow-glow);
}

.ef-feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--ef-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ef-feature-icon {
  font-size: 2.5rem;
  color: var(--ef-color-text-light);
}

.ef-feature-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  min-height: 2.2rem;
}

.ef-feature-description {
  color: var(--ef-color-text-dim);
  font-size: 0.95rem;
  min-height: 4.5rem;
}

.ef-section-about {
  padding: 5rem 2rem;
}

.ef-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.ef-about-visual {
  flex: 1;
}

.ef-about-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 500px;
  border-radius: var(--ef-border-radius-smooth);
  background: var(--ef-gradient-primary);
  box-shadow: var(--ef-shadow-glow);
  overflow: hidden;
}

.ef-about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ef-gradient-primary);
  opacity: 0.7;
  border-radius: var(--ef-border-radius-smooth);
}

.ef-about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ef-about-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--ef-border-radius-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ef-about-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: var(--ef-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 2.5rem;
}

.ef-about-text {
  margin-bottom: 2rem;
  color: var(--ef-color-text-dim);
  min-height: 4.5rem;
}

.ef-about-minicards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ef-minicard {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--ef-border-radius-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 120px;
}

.ef-minicard-icon {
  font-size: 1.2rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-minicard-text {
  font-size: 0.8rem;
  color: var(--ef-color-text-light);
}

.ef-about-cta {
  display: inline-block;
  background: var(--ef-gradient-tertiary);
  color: var(--ef-color-text-light);
  padding: 0.8rem 1.8rem;
  border-radius: var(--ef-border-radius-pill);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ef-transition-smooth);
}

.ef-about-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--ef-shadow-glow);
}

.ef-section-games {
  padding: 5rem 2rem;
  background: rgba(10, 10, 26, 0.7);
}

.ef-games-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ef-games-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--ef-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.ef-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.ef-game-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--ef-border-radius-smooth);
  overflow: hidden;
  width: 350px;
  transition: var(--ef-transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.ef-game-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--ef-shadow-glow);
}

.ef-game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--ef-gradient-secondary);
  color: var(--ef-color-text-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--ef-border-radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.ef-game-image {
  width: 100%;
  max-width: 350px;
  height: 100%;
  max-height: 200px;
  border-radius: var(--ef-border-radius-smooth) var(--ef-border-radius-smooth) 0 0;
}

.ef-game-content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 116px;
}

.ef-game-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem;
  min-height: 2rem;
}

.ef-game-icon {
  font-size: 2rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-game-link {
  display: block;
  background: var(--ef-gradient-primary);
  color: var(--ef-color-text-light);
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--ef-transition-smooth);
}

.ef-game-link:hover {
  background: var(--ef-gradient-secondary);
}

.ef-section-testimonials {
  padding: 5rem 2rem;
}

.ef-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ef-testimonials-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--ef-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.ef-testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.ef-testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--ef-border-radius-smooth);
  width: 350px;
  transition: var(--ef-transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ef-testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--ef-shadow-glow);
}

.ef-testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.ef-testimonial-avatar {
  width: 100%;
  max-width: 60px;
  height: 100%;
  max-height: 60px;
  border-radius: 50%;
  border: 2px solid var(--ef-color-accent-bright);
}

.ef-testimonial-meta {
  flex: 1;
}

.ef-testimonial-name {
  font-weight: 500;
  margin-bottom: 0.5rem;
  min-height: 1.5rem;
}

.ef-testimonial-rating {
  display: flex;
  gap: 0.2rem;
}

.ef-rating-star {
  font-size: 1.2rem;
  background: var(--ef-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-testimonial-icon {
  font-size: 2rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.7;
}

.ef-testimonial-text {
  margin-bottom: 1.5rem;
  color: var(--ef-color-text-dim);
  min-height: 4.5rem;
  font-style: italic;
  min-height: 107px;
}

.ef-testimonial-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ef-color-text-dim);
}

.ef-testimonial-location, .ef-testimonial-date {
  min-height: 1.2rem;
}

.ef-section-faq {
  padding: 5rem 2rem;
  background: rgba(10, 10, 26, 0.7);
  position: relative;
}

.ef-faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ef-faq-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.ef-faq-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.ef-faq-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--ef-border-radius-smooth);
  flex: 1;
  min-width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ef-faq-block-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--ef-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 2rem;
}

.ef-faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ef-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  transition: var(--ef-transition-smooth);
}

.ef-faq-question:hover {
  color: var(--ef-color-accent-bright);
}

.ef-faq-question p {
  flex: 1;
  min-height: 1.5rem;
}

.ef-faq-icon {
  transition: var(--ef-transition-smooth);
}

.ef-faq-item.active .ef-faq-icon {
  transform: rotate(180deg);
}

.ef-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--ef-transition-smooth);
}

.ef-faq-item.active .ef-faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

.ef-faq-answer p {
  color: var(--ef-color-text-dim);
  min-height: 3rem;
}

.ef-faq-cta {
  display: block;
  text-align: center;
  background: var(--ef-gradient-primary);
  color: var(--ef-color-text-light);
  padding: 1rem 2rem;
  border-radius: var(--ef-border-radius-pill);
  text-decoration: none;
  font-weight: 500;
  margin: 0 auto;
  max-width: 300px;
  transition: var(--ef-transition-smooth);
}

.ef-faq-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--ef-shadow-glow);
}

.ef-section-responsible {
  padding: 5rem 2rem;
}

.ef-responsible-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ef-responsible-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--ef-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.ef-responsible-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--ef-border-radius-smooth);
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ef-responsible-text {
  margin-bottom: 1.5rem;
  color: var(--ef-color-text-dim);
  min-height: 4.5rem;
}

.ef-responsible-text a {
  color: var(--ef-color-accent-bright);
  text-decoration: none;
  transition: var(--ef-transition-smooth);
}

.ef-responsible-text a:hover {
  color: var(--ef-color-accent-vibrant);
  text-decoration: underline;
}

.ef-responsible-link {
  display: inline-block;
  background: var(--ef-gradient-secondary);
  color: var(--ef-color-text-light);
  padding: 0.8rem 1.8rem;
  border-radius: var(--ef-border-radius-pill);
  text-decoration: none;
  font-weight: 500;
  transition: var(--ef-transition-smooth);
}

.ef-responsible-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--ef-shadow-glow);
}

.ef-responsible-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ef-partner-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--ef-border-radius-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ef-partner-item img {
  border-radius: 8px;
}

.ef-section-contact {
  padding: 5rem 2rem;
  background: rgba(10, 10, 26, 0.7);
}

.ef-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
}

.ef-contact-form-block {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--ef-border-radius-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ef-contact-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  background: var(--ef-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 2.8rem;
}

.ef-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ef-form-group {
  position: relative;
}

.ef-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  min-height: 1.2rem;
}

.ef-form-input, .ef-form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--ef-border-radius-smooth);
  color: var(--ef-color-text-light);
  font-family: 'Quicksand', sans-serif;
  transition: var(--ef-transition-smooth);
}

.ef-form-input:focus, .ef-form-textarea:focus {
  outline: none;
  border-color: var(--ef-color-accent-bright);
  box-shadow: 0 0 0 2px rgba(51, 204, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.ef-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.ef-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.ef-form-checkbox {
  margin-top: 0.3rem;
}

.ef-checkbox-label {
  font-size: 0.9rem;
  color: var(--ef-color-text-dim);
}

.ef-checkbox-label a {
  color: var(--ef-color-accent-bright);
  text-decoration: none;
}

.ef-checkbox-label a:hover {
  text-decoration: underline;
}

.ef-form-validation {
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  font-size: 0.8rem;
  color: var(--ef-color-accent-neon);
  opacity: 0;
  transition: var(--ef-transition-smooth);
}

.ef-form-group.error .ef-form-validation {
  opacity: 1;
}

.ef-form-group.valid .ef-form-input,
.ef-form-group.valid .ef-form-textarea {
  border-color: var(--ef-color-accent-neon);
}

.ef-form-submit {
  background: var(--ef-gradient-primary);
  color: var(--ef-color-text-light);
  border: none;
  padding: 1.2rem 2rem;
  border-radius: var(--ef-border-radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ef-transition-smooth);
  margin-top: 1rem;
}

.ef-form-submit:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: var(--ef-shadow-glow);
}

.ef-form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ef-contact-info-block {
  flex: 1;
}

.ef-contact-info-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 2.3rem;
}

.ef-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ef-contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--ef-border-radius-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--ef-transition-smooth);
}

.ef-contact-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
}

.ef-contact-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--ef-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-contact-card-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  min-height: 1.5rem;
}

.ef-contact-card-text {
  color: var(--ef-color-text-dim);
  font-size: 0.9rem;
  min-height: 3.5rem;
}

.ef-contact-details {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--ef-border-radius-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ef-contact-email {
  margin-bottom: 1rem;
  min-height: 1.2rem;
}

.ef-contact-email a {
  color: var(--ef-color-accent-bright);
  text-decoration: none;
}

.ef-contact-email a:hover {
  text-decoration: underline;
}

.ef-contact-response {
  color: var(--ef-color-text-dim);
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.ef-global-footer {
  background: var(--ef-color-background-semi);
  backdrop-filter: blur(10px);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ef-footer-container {
  max-width: 1510px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ef-footer-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ef-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem;
  background: var(--ef-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-footer-icon {
  font-size: 1.8rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-footer-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ef-footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.ef-footer-nav-link {
  text-decoration: none;
  color: var(--ef-color-text-dim);
  font-size: 0.9rem;
  transition: var(--ef-transition-smooth);
}

.ef-footer-nav-link:hover {
  color: var(--ef-color-accent-bright);
}

.ef-footer-contact-trigger {
  background: var(--ef-gradient-secondary);
  border: none;
  color: var(--ef-color-text-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--ef-border-radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--ef-transition-smooth);
}

.ef-footer-contact-trigger:hover {
  transform: scale(1.05);
  box-shadow: var(--ef-shadow-glow);
}

.ef-footer-secondary {
  text-align: center;
}

.ef-footer-copyright {
  color: var(--ef-color-text-dim);
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.ef-age-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--ef-transition-smooth);
}

.ef-age-modal.active {
  opacity: 1;
  visibility: visible;
}

.ef-age-container {
  background: var(--ef-color-background-dark);
  border-radius: var(--ef-border-radius-smooth);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--ef-shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.9);
  transition: var(--ef-transition-smooth);
}

.ef-age-modal.active .ef-age-container {
  transform: scale(1);
}

.ef-age-content {
  text-align: center;
}

.ef-age-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: var(--ef-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 2.8rem;
}

.ef-age-text {
  margin-bottom: 2rem;
  color: var(--ef-color-text-dim);
  line-height: 1.6;
  min-height: 3.5rem;
}

.ef-age-partners {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ef-age-partner-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem;
  border-radius: var(--ef-border-radius-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ef-partner-item img,
.ef-age-partner-item img {
  width: 100%;
  max-width: 120px;
  max-height: 60px;
  border-radius: 8px;
}

.ef-age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.ef-age-confirm {
  background: var(--ef-gradient-primary);
  color: var(--ef-color-text-light);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--ef-border-radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ef-transition-smooth);
  flex: 1;
}

.ef-age-confirm:hover {
  transform: scale(1.05);
  box-shadow: var(--ef-shadow-glow);
}

.ef-age-decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ef-color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: var(--ef-border-radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ef-transition-smooth);
  flex: 1;
}

.ef-age-decline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.ef-cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ef-cookie-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ef-cookie-container {
  max-width: 1510px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ef-cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  text-align: left;
}

.ef-cookie-text {
  flex: 1;
  color: var(--ef-color-text-dim);
  line-height: 1.5;
  min-height: 3rem;
  font-size: 0.95rem;
}

.ef-cookie-text a {
  color: var(--ef-color-accent-bright);
  text-decoration: none;
  transition: var(--ef-transition-smooth);
}

.ef-cookie-text a:hover {
  color: var(--ef-color-accent-vibrant);
  text-decoration: underline;
}

.ef-cookie-accept {
  background: var(--ef-gradient-primary);
  color: var(--ef-color-text-light);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: var(--ef-border-radius-pill);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ef-transition-smooth);
  white-space: nowrap;
  flex-shrink: 0;
}

.ef-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--ef-shadow-glow);
}

.ef-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: var(--ef-transition-smooth);
}

.ef-success-modal.active {
  opacity: 1;
  visibility: visible;
}

.ef-success-container {
  background: var(--ef-color-background-dark);
  border-radius: var(--ef-border-radius-smooth);
  padding: 2rem;
  max-width: 450px;
  width: 90%;
  box-shadow: var(--ef-shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.9);
  transition: var(--ef-transition-smooth);
}

.ef-success-modal.active .ef-success-container {
  transform: scale(1);
}

.ef-success-content {
  position: relative;
  text-align: center;
}

.ef-success-close {
  position: absolute;
  top: -3rem;
  right: -1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--ef-color-text-light);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ef-transition-smooth);
}

.ef-success-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.ef-success-title {
  position: relative;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.8rem;
  margin-top: 2.3rem;
  margin-bottom: 1rem;
  background: var(--ef-gradient-tertiary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 2.3rem;
}

.ef-success-text {
  color: var(--ef-color-text-dim);
  line-height: 1.5;
  margin: 0;
  min-height: 3.5rem;
}

.ef-success-email {
  color: var(--ef-color-accent-bright);
  font-weight: 500;
}

.ef-subscribe-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.ef-subscribe-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ef-subscribe-modal-container {
  background: transparent;
  border-radius: 25px;
  padding: 0;
  max-width: 500px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.8) rotateX(10deg);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ef-subscribe-modal-overlay.active .ef-subscribe-modal-container {
  transform: scale(1) rotateX(0);
}

.ef-subscribe-modal-content {
  padding: 3rem;
  position: relative;
  color: #ffffff;
}

.ef-subscribe-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.ef-subscribe-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.ef-subscribe-modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ef-subscribe-modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: pulse 2s infinite;
}

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

.ef-subscribe-modal-icon span {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #ffeb3b, #ffa726);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-subscribe-modal-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #ffeb3b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 2.5rem;
}

.ef-subscribe-modal-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  min-height: 3.5rem;
}

.ef-subscribe-modal-benefits {
  margin-bottom: 2.5rem;
}

.ef-subscribe-modal-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.ef-subscribe-modal-benefit:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
}

.ef-subscribe-benefit-icon {
  font-size: 1.8rem;
  background: linear-gradient(45deg, #ffeb3b, #ffa726);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.ef-subscribe-benefit-content {
  flex: 1;
}

.ef-subscribe-benefit-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  min-height: 1.5rem;
}

.ef-subscribe-benefit-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  min-height: 2.5rem;
}

.ef-subscribe-modal-form-container {
  text-align: center;
}

.ef-subscribe-modal-cta {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.ef-subscribe-modal-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.ef-subscribe-modal-cta:hover::before {
  left: 100%;
}

.ef-subscribe-modal-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

.ef-subscribe-modal-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  min-height: 1.2rem;
}

.ef-subscribe-modal-success {
  text-align: center;
  animation: fadeIn 0.6s ease;
}

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

.ef-subscribe-success-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.ef-subscribe-success-icon span {
  font-size: 2rem;
  color: #ffffff;
}

.ef-subscribe-success-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  min-height: 1.8rem;
}

.ef-subscribe-success-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.5;
  min-height: 2.5rem;
}

.ef-subscribe-unsubscribe-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ef-subscribe-unsubscribe-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .ef-header-container, .ef-footer-container {
    padding: 0 1.5rem;
  }
  
  .ef-welcome-title {
    font-size: 3rem;
  }
  
  .ef-about-container {
    flex-direction: column;
  }
  
  .ef-contact-container {
    flex-direction: column;
  }
  
  .ef-footer-primary {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .ef-footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .ef-header-container {
    padding: 0 1rem;
  }
  
  .ef-global-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ef-mobile-nav-toggle {
    display: block;
  }
  
  .ef-global-nav.active {
    display: flex;
    flex-direction: column;
  }

  .ef-nav-list {
    flex-direction: column;
    gap: 1.3rem;
    justify-content: center;
    align-items: center;
  }
  
  .ef-welcome-title {
    font-size: 2.5rem;
  }
  
  .ef-welcome-cards {
    gap: 1rem;
  }
  
  .ef-welcome-card {
    width: 160px;
  }

  .ef-testimonial-avatar {
    max-width: 50px;
    max-height: 50px;
  }
  
  .ef-game-image {
    max-height: 180px;
  }
  
  .ef-about-image {
    max-height: 400px;
  }
  
  .ef-partner-item img,
  .ef-age-partner-item img {
    max-width: 100px;
    max-height: 50px;
  }
  
  .ef-features-grid, .ef-games-grid, .ef-testimonials-grid {
    gap: 1.5rem;
  }
  
  .ef-feature-item, .ef-game-card, .ef-testimonial-card {
    width: 100%;
    max-width: 300px;
  }
  
  .ef-faq-blocks {
    flex-direction: column;
  }
  
  .ef-age-container,
  .ef-success-container {
    padding: 2rem 1.5rem;
  }
  
  .ef-age-title {
    font-size: 1.8rem;
  }
  
  .ef-age-buttons {
    flex-direction: column;
  }
  
  .ef-cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .ef-cookie-container {
    padding: 0 1rem;
  }
  
  .ef-footer-container {
    padding: 0 1rem;
  }

  .ef-subscribe-modal-content {
    padding: 2rem;
  }
  
  .ef-subscribe-modal-title {
    font-size: 1.7rem;
  }
  
  .ef-subscribe-modal-subtitle {
    font-size: 1rem;
  }
  
  .ef-subscribe-modal-benefit {
    padding: 0.8rem;
  }
  
  .ef-subscribe-benefit-icon {
    font-size: 1.5rem;
  }
  
  .ef-subscribe-benefit-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .ef-header-container, .ef-footer-container {
    padding: 0 0.5rem;
  }
  
  .ef-section-welcome, .ef-section-features, .ef-section-about, 
  .ef-section-games, .ef-section-testimonials, .ef-section-faq,
  .ef-section-responsible, .ef-section-contact {
    padding: 3rem 0.5rem;
  }
  
  .ef-welcome-title {
    font-size: 2rem;
  }
  
  .ef-welcome-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .ef-welcome-card {
    width: 100%;
    max-width: 250px;
  }
  
  .ef-features-title, .ef-games-title, .ef-testimonials-title, 
  .ef-faq-title, .ef-responsible-title {
    font-size: 2.2rem;
  }
  
  .ef-about-minicards {
    flex-direction: column;
  }

  .ef-testimonial-avatar {
    max-width: 45px;
    max-height: 45px;
  }
  
  .ef-game-image {
    max-height: 160px;
  }
  
  .ef-about-image {
    max-height: 300px;
  }
  
  .ef-partner-item img,
  .ef-age-partner-item img {
    max-width: 80px;
    max-height: 40px;
  }
  
  .ef-contact-form-block {
    padding: 1.5rem;
  }
  
  .ef-age-container,
  .ef-success-container {
    padding: 1.5rem 1rem;
  }
  
  .ef-age-title {
    font-size: 1.6rem;
  }
  
  .ef-cookie-container {
    padding: 0 0.5rem;
  }
  
  .ef-cookie-content {
    padding: 1rem 0;
  }
  
  .ef-cookie-text {
    font-size: 0.9rem;
  }
  
  .ef-cookie-accept {
    padding: 0.7rem 1.5rem;
  }
  
  .ef-footer-nav-list {
    flex-direction: column;
    gap: 1rem;
  }

    .ef-subscribe-modal-content {
    padding: 1.5rem;
  }
  
  .ef-subscribe-modal-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .ef-subscribe-modal-icon span {
    font-size: 2rem;
  }
  
  .ef-subscribe-modal-title {
    font-size: 1.5rem;
  }
  
  .ef-subscribe-modal-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .ef-subscribe-modal-benefit {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .ef-subscribe-modal-benefit:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 320px) {
  .ef-header-container, .ef-footer-container {
    padding: 0 0.3rem;
  }
  
  .ef-section-welcome, .ef-section-features, .ef-section-about, 
  .ef-section-games, .ef-section-testimonials, .ef-section-faq,
  .ef-section-responsible, .ef-section-contact {
    padding: 2rem 0.3rem;
  }
  
  .ef-welcome-title {
    font-size: 1.8rem;
  }
  
  .ef-features-title, .ef-games-title, .ef-testimonials-title, 
  .ef-faq-title, .ef-responsible-title {
    font-size: 1.8rem;
  }
  
  .ef-feature-item, .ef-game-card, .ef-testimonial-card {
    padding: 1.5rem;
  }
  
  .ef-contact-form-block {
    padding: 1rem;
  }
  
  .ef-modal-container {
    padding: 1rem;
  }
}

.efpage-privacy-main {
  min-height: 100vh;
  background: transparent;
}

.efpage-privacy-hero {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efpage-privacy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.efpage-privacy-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #00ffcc, #33ccff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.efpage-privacy-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  min-height: 4rem;
}

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

.efpage-privacy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.efpage-privacy-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  width: 350px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.efpage-privacy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.efpage-privacy-item:hover::before {
  left: 100%;
}

.efpage-privacy-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 255, 204, 0.2);
}

.efpage-privacy-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ffcc, #33ccff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.efpage-privacy-icon-wrapper::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #00ffcc, #33ccff);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  animation: pulse 2s infinite;
}

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

.efpage-privacy-icon {
  font-size: 2.5rem;
  color: #0f3460;
}

.efpage-privacy-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
  min-height: 2.2rem;
}

.efpage-privacy-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-align: center;
}

.efpage-privacy-text p {
  margin-bottom: 1rem;
  min-height: 4.5rem;
}

.efpage-privacy-text a {
  color: #00ffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.efpage-privacy-text a:hover {
  color: #33ccff;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .efpage-privacy-grid {
    gap: 1.5rem;
  }
  
  .efpage-privacy-item {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .efpage-privacy-hero {
    padding: 3rem 1rem;
  }
  
  .efpage-privacy-title {
    font-size: 2.5rem;
  }
  
  .efpage-privacy-content {
    padding: 3rem 1rem;
  }
  
  .efpage-privacy-grid {
    gap: 1rem;
  }
  
  .efpage-privacy-item {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .efpage-privacy-hero {
    padding: 2rem 0.5rem;
  }
  
  .efpage-privacy-title {
    font-size: 2rem;
  }
  
  .efpage-privacy-intro {
    font-size: 1.1rem;
  }
  
  .efpage-privacy-content {
    padding: 2rem 0.5rem;
  }
  
  .efpage-privacy-item {
    padding: 1.5rem;
  }
  
  .efpage-privacy-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .efpage-privacy-icon {
    font-size: 2rem;
  }
  
  .efpage-privacy-heading {
    font-size: 1.3rem;
  }
}

.efpage-terms-main {
  min-height: 100vh;
  background: transparent;
}

.efpage-terms-hero {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efpage-terms-container {
  max-width: 1000px;
  margin: 0 auto;
}

.efpage-terms-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.efpage-terms-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  min-height: 4rem;
}

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

.efpage-terms-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.efpage-terms-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.efpage-terms-item.active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.efpage-terms-header {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  gap: 1rem;
}

.efpage-terms-header:hover {
  background: rgba(255, 255, 255, 0.1);
}

.efpage-terms-icon {
  font-size: 1.8rem;
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.efpage-terms-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.4rem;
  color: #ffffff;
  flex: 1;
  margin: 0;
  min-height: 1.8rem;
}

.efpage-terms-toggle {
  font-size: 1.5rem;
  color: #ffa726;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.efpage-terms-item.active .efpage-terms-toggle {
  transform: rotate(180deg);
}

.efpage-terms-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(0, 0, 0, 0.2);
}

.efpage-terms-item.active .efpage-terms-body {
  max-height: 300px;
}

.efpage-terms-body p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
  min-height: 4.5rem;
}

.efpage-terms-body a {
  color: #ffa726;
  text-decoration: none;
  transition: color 0.3s ease;
}

.efpage-terms-body a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .efpage-terms-hero {
    padding: 3rem 1rem;
  }
  
  .efpage-terms-title {
    font-size: 2.5rem;
  }
  
  .efpage-terms-content {
    padding: 3rem 1rem;
  }
  
  .efpage-terms-header {
    padding: 1.2rem 1.5rem;
  }
  
  .efpage-terms-heading {
    font-size: 1.2rem;
  }
  
  .efpage-terms-body p {
    padding: 0 1.5rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .efpage-terms-hero {
    padding: 2rem 0.5rem;
  }
  
  .efpage-terms-title {
    font-size: 2rem;
  }
  
  .efpage-terms-intro {
    font-size: 1.1rem;
  }
  
  .efpage-terms-content {
    padding: 2rem 0.5rem;
  }
  
  .efpage-terms-header {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
  }
  
  .efpage-terms-icon {
    font-size: 1.5rem;
  }
  
  .efpage-terms-heading {
    font-size: 1.1rem;
  }
  
  .efpage-terms-body p {
    padding: 0 1.2rem 1rem;
  }
}

.efpage-cookie-main {
  min-height: 100vh;
  background: transparent;
}

.efpage-cookie-hero {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efpage-cookie-container {
  max-width: 1000px;
  margin: 0 auto;
}

.efpage-cookie-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.efpage-cookie-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  min-height: 4rem;
}

.efpage-cookie-content {
  padding: 4rem 2rem;
}

.efpage-cookie-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.efpage-cookie-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: linear-gradient(to bottom, #4facfe, #00f2fe);
  border-radius: 2px;
}

.efpage-cookie-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.efpage-cookie-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.efpage-cookie-timeline-item:nth-child(1) { animation-delay: 0.1s; }
.efpage-cookie-timeline-item:nth-child(2) { animation-delay: 0.2s; }
.efpage-cookie-timeline-item:nth-child(3) { animation-delay: 0.3s; }
.efpage-cookie-timeline-item:nth-child(4) { animation-delay: 0.4s; }
.efpage-cookie-timeline-item:nth-child(5) { animation-delay: 0.5s; }
.efpage-cookie-timeline-item:nth-child(6) { animation-delay: 0.6s; }
.efpage-cookie-timeline-item:nth-child(7) { animation-delay: 0.7s; }
.efpage-cookie-timeline-item:nth-child(8) { animation-delay: 0.8s; }

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

.efpage-cookie-timeline-marker {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.efpage-cookie-timeline-marker:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
}

.efpage-cookie-timeline-icon {
  font-size: 2rem;
  color: #1e3c72;
}

.efpage-cookie-timeline-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 2rem;
  margin: 0 2rem;
  flex: 1;
  transition: all 0.3s ease;
}

.efpage-cookie-timeline-content:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.2);
}

.efpage-cookie-timeline-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  min-height: 2rem;
}

.efpage-cookie-timeline-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  min-height: 4.5rem;
}

.efpage-cookie-timeline-text a {
  color: #00f2fe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.efpage-cookie-timeline-text a:hover {
  color: #4facfe;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .efpage-cookie-timeline::before {
    left: 40px;
  }
  
  .efpage-cookie-timeline-item {
    flex-direction: row !important;
    align-items: flex-start;
  }
  
  .efpage-cookie-timeline-marker {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
  }
  
  .efpage-cookie-timeline-icon {
    font-size: 1.5rem;
  }
  
  .efpage-cookie-timeline-content {
    margin: 0;
    flex: 1;
  }
  
  .efpage-cookie-hero {
    padding: 3rem 1rem;
  }
  
  .efpage-cookie-title {
    font-size: 2.5rem;
  }
  
  .efpage-cookie-content {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .efpage-cookie-hero {
    padding: 2rem 0.5rem;
  }
  
  .efpage-cookie-title {
    font-size: 2rem;
  }
  
  .efpage-cookie-intro {
    font-size: 1.1rem;
  }
  
  .efpage-cookie-content {
    padding: 2rem 0.5rem;
  }
  
  .efpage-cookie-timeline-marker {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
  
  .efpage-cookie-timeline-icon {
    font-size: 1.2rem;
  }
  
  .efpage-cookie-timeline-content {
    padding: 1.5rem;
  }
  
  .efpage-cookie-timeline-title {
    font-size: 1.3rem;
  }

  .efpage-cookie-timeline-text a {
    font-size: 0.8rem;
  }
}

.efpage-responsible-main {
  min-height: 100vh;
  background: transparent;
}

.efpage-responsible-hero {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efpage-responsible-container {
  max-width: 1200px;
  margin: 0 auto;
}

.efpage-responsible-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #4ecdc4, #f7fff7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.efpage-responsible-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  min-height: 4rem;
}

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

.efpage-responsible-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.efpage-responsible-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  width: 300px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.efpage-responsible-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4ecdc4, #f7fff7);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.efpage-responsible-card:hover::before {
  transform: scaleX(1);
}

.efpage-responsible-card:hover {
  transform: translateY(-10px) rotate(2deg);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(78, 205, 196, 0.3);
}

.efpage-responsible-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4ecdc4, #f7fff7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.efpage-responsible-card:hover .efpage-responsible-card-icon {
  transform: scale(1.1) rotate(10deg);
}

.efpage-responsible-card-icon span {
  font-size: 2.5rem;
  color: #1a535c;
}

.efpage-responsible-card-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.4rem;
  color: #f7fff7;
  margin-bottom: 1.5rem;
  min-height: 2.2rem;
}

.efpage-responsible-card-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  min-height: 6.5rem;
}

.efpage-responsible-card-text a {
  color: #4ecdc4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.efpage-responsible-card-text a:hover {
  color: #f7fff7;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .efpage-responsible-cards {
    gap: 1.5rem;
  }
  
  .efpage-responsible-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .efpage-responsible-hero {
    padding: 3rem 1rem;
  }
  
  .efpage-responsible-title {
    font-size: 2.5rem;
  }
  
  .efpage-responsible-content {
    padding: 3rem 1rem;
  }
  
  .efpage-responsible-cards {
    gap: 1rem;
  }
  
  .efpage-responsible-card {
    width: 100%;
    max-width: 350px;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .efpage-responsible-hero {
    padding: 2rem 0.5rem;
  }
  
  .efpage-responsible-title {
    font-size: 2rem;
  }
  
  .efpage-responsible-intro {
    font-size: 1.1rem;
  }
  
  .efpage-responsible-content {
    padding: 2rem 0.5rem;
  }
  
  .efpage-responsible-card {
    padding: 1.5rem;
  }
  
  .efpage-responsible-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  
  .efpage-responsible-card-icon span {
    font-size: 2rem;
  }
  
  .efpage-responsible-card-title {
    font-size: 1.2rem;
  }
}

.efpage-404-main {
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.efpage-404-hero {
  padding: 10rem 2rem 2rem 2rem;
  width: 100%;
}

.efpage-404-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.efpage-404-content {
  flex: 1;
  text-align: center;
}

.efpage-404-icon {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.efpage-404-icon span {
  font-size: 4rem;
  background: linear-gradient(45deg, #667eea, #f093fb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.efpage-404-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #667eea, #f093fb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 4.5rem;
}

.efpage-404-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  min-height: 6rem;
}

.efpage-404-link {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #f093fb);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}

.efpage-404-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.efpage-404-link:hover::before {
  left: 100%;
}

.efpage-404-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.6);
}

.efpage-404-animation {
  flex: 1;
  position: relative;
  height: 300px;
}

.efpage-404-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: orbFloat 6s ease-in-out infinite;
}

.efpage-404-orb-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.efpage-404-orb-2 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: 30%;
  animation-delay: 2s;
}

.efpage-404-orb-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateY(0) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translateY(20px) scale(1.05);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .efpage-404-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .efpage-404-title {
    font-size: 3rem;
  }
  
  .efpage-404-text {
    font-size: 1.1rem;
  }
  
  .efpage-404-animation {
    height: 200px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .efpage-404-hero {
    padding: 1rem;
  }
  
  .efpage-404-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
  }
  
  .efpage-404-icon span {
    font-size: 3rem;
  }
  
  .efpage-404-title {
    font-size: 2.5rem;
  }
  
  .efpage-404-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .efpage-404-link {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .efpage-404-orb-1 {
    width: 60px;
    height: 60px;
  }
  
  .efpage-404-orb-2 {
    width: 90px;
    height: 90px;
  }
  
  .efpage-404-orb-3 {
    width: 45px;
    height: 45px;
  }
}

.efpage-subscribe-main {
  min-height: 100vh;
  background: inherit;
}

.efpage-subscribe-hero {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efpage-subscribe-container {
  max-width: 1000px;
  margin: 0 auto;
}

.efpage-subscribe-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ff6b6b, #ffeb3b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3.5rem;
}

.efpage-subscribe-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  min-height: 4rem;
}

.efpage-subscribe-form-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.efpage-subscribe-form-container:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.efpage-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.efpage-subscribe-form-group {
  position: relative;
}

.efpage-subscribe-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #ffffff;
  min-height: 1.2rem;
}

.efpage-subscribe-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.efpage-subscribe-input:focus {
  outline: none;
  border-color: #ffeb3b;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.2);
}

.efpage-subscribe-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
}

.efpage-subscribe-checkbox {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.efpage-subscribe-checkbox-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.efpage-subscribe-checkbox-label a {
  color: #ffeb3b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.efpage-subscribe-checkbox-label a:hover {
  color: #ffa726;
  text-decoration: underline;
}

.efpage-subscribe-validation {
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  font-size: 0.8rem;
  color: #ffeb3b;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.efpage-subscribe-form-group.error .efpage-subscribe-validation,
.efpage-subscribe-checkbox-group.error .efpage-subscribe-validation {
  opacity: 1;
}

.efpage-subscribe-form-group.valid .efpage-subscribe-input {
  border-color: #4caf50;
}

.efpage-subscribe-button {
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  color: #ffffff;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.efpage-subscribe-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.efpage-subscribe-button:not(:disabled):hover::before {
  left: 100%;
}

.efpage-subscribe-button:not(:disabled):hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.efpage-subscribe-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.efpage-subscribe-success {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeIn 0.6s ease;
}

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

.efpage-subscribe-success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.efpage-subscribe-success-icon span {
  font-size: 2.5rem;
  color: #ffffff;
}

.efpage-subscribe-success-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.efpage-subscribe-success-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
  min-height: 3.5rem;
}

.efpage-subscribe-success-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.efpage-subscribe-home-button {
  background: linear-gradient(45deg, #2196f3, #03a9f4);
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.efpage-subscribe-home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.efpage-subscribe-unsubscribe-button {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.efpage-subscribe-unsubscribe-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.efpage-subscribe-benefits {
  padding: 4rem 2rem;
}

.efpage-subscribe-benefits-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffa726, #ffeb3b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 3rem;
}

.efpage-subscribe-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.efpage-subscribe-benefit {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 2rem;
  width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.efpage-subscribe-benefit:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 167, 38, 0.2);
}

.efpage-subscribe-benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffa726, #ffeb3b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.efpage-subscribe-benefit-icon span {
  font-size: 2rem;
  color: #ff6b6b;
}

.efpage-subscribe-benefit-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  min-height: 1.8rem;
}

.efpage-subscribe-benefit-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
  min-height: 4.5rem;
}

.efpage-subscribe-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.efpage-subscribe-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.efpage-subscribe-modal-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.efpage-subscribe-modal-overlay.active .efpage-subscribe-modal-container {
  transform: scale(1);
}

.efpage-subscribe-modal-content {
  text-align: center;
  position: relative;
}

.efpage-subscribe-modal-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.efpage-subscribe-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.efpage-subscribe-modal-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  min-height: 2.2rem;
}

.efpage-subscribe-modal-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.5;
  min-height: 4.5rem;
}

.efpage-subscribe-modal-button {
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.efpage-subscribe-modal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

@media (max-width: 768px) {
  .efpage-subscribe-hero {
    padding: 3rem 1rem;
  }
  
  .efpage-subscribe-title {
    font-size: 2.5rem;
  }
  
  .efpage-subscribe-form-container {
    padding: 2rem;
  }
  
  .efpage-subscribe-benefits {
    padding: 3rem 1rem;
  }
  
  .efpage-subscribe-benefits-title {
    font-size: 2rem;
  }
  
  .efpage-subscribe-benefits-grid {
    gap: 1.5rem;
  }
  
  .efpage-subscribe-benefit {
    width: 100%;
    max-width: 300px;
  }
  
  .efpage-subscribe-success-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .efpage-subscribe-hero {
    padding: 2rem 0.5rem;
  }
  
  .efpage-subscribe-title {
    font-size: 2rem;
  }
  
  .efpage-subscribe-intro {
    font-size: 1.1rem;
  }
  
  .efpage-subscribe-form-container {
    padding: 1.5rem;
  }
  
  .efpage-subscribe-benefits {
    padding: 2rem 0.5rem;
  }
  
  .efpage-subscribe-benefits-title {
    font-size: 1.8rem;
  }
  
  .efpage-subscribe-benefit {
    padding: 1.5rem;
  }
  
  .efpage-subscribe-modal-container {
    padding: 2rem;
  }
}