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

:root {
  --jw-gradient-primary: linear-gradient(135deg, #ff00cc, #3333ff, #00ffcc);
  --jw-gradient-secondary: linear-gradient(45deg, #ff0066, #ffcc00, #00ff99);
  --jw-gradient-tertiary: linear-gradient(225deg, #9900ff, #ff6600, #00ccff);
  --jw-gradient-quaternary: linear-gradient(315deg, #ff3399, #66ff33, #3366ff);
  --jw-color-accent-vibrant: #ff00aa;
  --jw-color-accent-bright: #33ffcc;
  --jw-color-accent-neon: #ffcc00;
  --jw-color-background-dark: #0a0a1a;
  --jw-color-text-light: #ffffff;
  --jw-color-text-dim: rgba(255, 255, 255, 0.8);
  --jw-shadow-glow: 0 0 20px rgba(255, 0, 170, 0.5);
  --jw-shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.3);
  --jw-border-radius-smooth: 12px;
  --jw-border-radius-rounded: 25px;
  --jw-transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --jw-transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: 'Asap', sans-serif;
  background: var(--jw-gradient-primary);
  color: var(--jw-color-text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Unna', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  min-height: 4.2rem;
}

h2 {
  font-size: 2.8rem;
  min-height: 3.4rem;
}

h3 {
  font-size: 2rem;
  min-height: 2.4rem;
}

p {
  font-size: 1.1rem;
  min-height: 1.8rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--jw-transition-smooth);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--jw-transition-smooth);
}

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

.jw-age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 1rem;
  overflow-y: auto;
}

.jw-age-content {
  background: var(--jw-gradient-secondary);
  padding: 3rem;
  border-radius: var(--jw-border-radius-smooth);
  text-align: center;
   width: 100%;
  max-width: 600px;
  margin: auto;
  box-shadow: var(--jw-shadow-glow);
  animation: jw-modal-appear 0.8s var(--jw-transition-bounce);
}

.jw-age-modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.jw-age-modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.jw-age-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--jw-color-accent-neon);
}

.jw-age-title {
  margin-bottom: 1rem;
  color: var(--jw-color-text-light);
}

.jw-age-text {
  margin-bottom: 2rem;
  color: var(--jw-color-text-dim);
}

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

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

.jw-age-confirm, .jw-age-decline {
  padding: 1rem 2rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jw-age-confirm {
  background: var(--jw-color-accent-bright);
  color: var(--jw-color-background-dark);
}

.jw-age-decline {
  background: transparent;
  color: var(--jw-color-text-light);
  border: 2px solid var(--jw-color-text-light);
}

.jw-cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--jw-gradient-tertiary);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.jw-cookie-content {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.jw-cookie-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.jw-cookie-text .material-icons {
  font-size: 2rem;
  color: var(--jw-color-accent-neon);
}

.jw-cookie-accept {
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 0.8rem 2rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  white-space: nowrap;
}

.jw-navigation {
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.jw-nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jw-nav-logo {
  width: 50px;
  height: 50px;
}

.jw-nav-title {
  font-family: 'Unna', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--jw-color-text-light);
}

.jw-nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.jw-nav-link, .jw-contact-trigger {
  color: var(--jw-color-text-dim);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.jw-nav-link::after, .jw-contact-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--jw-color-accent-bright);
  transition: var(--jw-transition-smooth);
}

.jw-nav-link:hover::after, .jw-contact-trigger:hover::after {
  width: 100%;
}

.jw-contact-trigger {
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 0.8rem 1.5rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
}

.jw-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  padding: 0.5rem;
}

.jw-toggle-icon, .jw-toggle-icon::before, .jw-toggle-icon::after {
  width: 25px;
  height: 3px;
  background: var(--jw-color-text-light);
  transition: var(--jw-transition-smooth);
}

.jw-toggle-icon::before, .jw-toggle-icon::after {
  content: '';
  position: absolute;
}

.jw-toggle-icon::before {
  transform: translateY(-8px);
}

.jw-toggle-icon::after {
  transform: translateY(8px);
}

.jw-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.jw-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jw-core/jw-imgs/jw-background-img-1.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: -1;
}

.jw-hero-content {
  text-align: center;
  max-width: 1200px;
  z-index: 1;
}

.jw-hero-title {
  margin-bottom: 1.5rem;
  animation: jw-title-float 3s ease-in-out infinite;
}

.jw-hero-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--jw-color-text-dim);
}

.jw-hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.jw-feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--jw-shadow-glow);
}

.jw-feature-card .material-icons {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--jw-color-accent-neon);
}

.jw-hero-cta {
  display: inline-block;
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 1.2rem 3rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--jw-shadow-glow);
  transition: var(--jw-transition-smooth);
}

.jw-hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 170, 0.7);
}

.jw-advantages-section {
  padding: 6rem 2rem;
  background: var(--jw-gradient-primary);
}

.jw-advantages-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--jw-color-text-light);
}

.jw-advantages-grid {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.jw-advantage-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: var(--jw-border-radius-smooth);
  text-align: center;
  transition: var(--jw-transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.jw-advantage-item::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.7s ease;
}

.jw-advantage-item:hover::before {
  left: 100%;
}

.jw-advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--jw-shadow-glow);
}

.jw-advantage-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--jw-color-accent-bright);
}

.jw-advantage-heading {
  margin-bottom: 1rem;
  color: var(--jw-color-text-light);
}

.jw-advantage-text {
  color: var(--jw-color-text-dim);
  line-height: 1.6;
}

.jw-about-section {
  padding: 6rem 2rem;
  background: var(--jw-gradient-secondary);
}

.jw-about-container, .jw-milestones-container {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.jw-about-container:last-child, .jw-milestones-container:last-child {
  margin-bottom: 0;
}

.jw-about-visual, .jw-milestones-visual {
  flex: 1;
}

.jw-about-image, .jw-milestones-image {
  width: 100%;
  max-width: 600px;
  height: 100%;
  max-height: 500px;
  border-radius: var(--jw-border-radius-smooth);
  box-shadow: var(--jw-shadow-soft);
}

.jw-about-content, .jw-milestones-content {
  flex: 1;
}

.jw-about-title, .jw-milestones-title {
  margin-bottom: 1.5rem;
  color: var(--jw-color-text-light);
}

.jw-about-text, .jw-milestones-text {
  margin-bottom: 2rem;
  color: var(--jw-color-text-dim);
  font-size: 1.1rem;
  line-height: 1.7;
}

.jw-about-highlights, .jw-milestones-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.jw-highlight-item, .jw-milestone-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--jw-border-radius-smooth);
  transition: var(--jw-transition-smooth);
}

.jw-highlight-item:hover, .jw-milestone-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.jw-highlight-item .material-icons, .jw-milestone-feature .material-icons {
  color: var(--jw-color-accent-neon);
  font-size: 1.8rem;
}

.jw-about-cta, .jw-milestones-cta {
  display: inline-block;
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 1rem 2.5rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--jw-transition-smooth);
}

.jw-about-cta:hover, .jw-milestones-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--jw-shadow-glow);
}

.jw-games-section {
  padding: 6rem 2rem;
  background: var(--jw-gradient-tertiary);
}

.jw-games-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--jw-color-text-light);
}

.jw-games-grid {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

.jw-game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--jw-shadow-glow);
}

.jw-game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 0.5rem 1rem;
  border-radius: var(--jw-border-radius-rounded);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.jw-game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.jw-game-content {
  padding: 1.5rem;
  text-align: center;
}

.jw-game-name {
  margin-bottom: 1rem;
  color: var(--jw-color-text-light);
}

.jw-game-content .material-icons {
  font-size: 2rem;
  color: var(--jw-color-accent-neon);
  margin-bottom: 1rem;
}

.jw-game-link {
  display: inline-block;
  background: var(--jw-color-accent-bright);
  color: var(--jw-color-background-dark);
  padding: 0.8rem 2rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  transition: var(--jw-transition-smooth);
}

.jw-game-link:hover {
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  transform: scale(1.05);
}

.jw-testimonials-section {
  padding: 6rem 2rem;
  background: var(--jw-gradient-quaternary);
}

.jw-testimonials-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--jw-color-text-light);
}

.jw-testimonials-grid {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

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

.jw-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--jw-shadow-glow);
}

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

.jw-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.jw-testimonial-info {
  flex: 1;
}

.jw-testimonial-name {
  margin-bottom: 0.5rem;
  color: var(--jw-color-text-light);
}

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

.jw-testimonial-rating .material-icons {
  font-size: 1.2rem;
  color: var(--jw-color-accent-neon);
}

.jw-testimonial-text {
  margin-bottom: 1.5rem;
  color: var(--jw-color-text-dim);
  line-height: 1.6;
  font-style: italic;
}

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

.jw-faq-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.jw-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jw-core/jw-imgs/jw-background-img-2.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.jw-faq-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--jw-color-text-light);
}

.jw-faq-container {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.jw-faq-category-title {
  margin-bottom: 1.5rem;
  color: var(--jw-color-accent-bright);
  text-align: center;
  font-size: 1.5rem;
}

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

.jw-faq-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

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

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

.jw-faq-question .material-icons {
  transition: var(--jw-transition-smooth);
  color: var(--jw-color-accent-neon);
}

.jw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.jw-faq-answer p {
  padding: 0 0 1rem 0;
  color: var(--jw-color-text-dim);
  line-height: 1.6;
}

.jw-faq-item.active .jw-faq-answer {
  max-height: 500px;
}

.jw-faq-item.active .jw-faq-question .material-icons {
  transform: rotate(180deg);
}

.jw-faq-cta {
  display: block;
  text-align: center;
  margin-top: 3rem;
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 1.2rem 3rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  transition: var(--jw-transition-smooth);
}

.jw-faq-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--jw-shadow-glow);
}

.jw-welcome-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.jw-welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jw-core/jw-imgs/jw-background-img-3.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: -1;
}

.jw-welcome-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.jw-welcome-title {
  margin-bottom: 1.5rem;
  color: var(--jw-color-text-light);
}

.jw-welcome-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--jw-color-text-dim);
}

.jw-welcome-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.jw-welcome-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 1rem;
  border-radius: var(--jw-border-radius-smooth);
  text-align: center;
  transition: var(--jw-transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.jw-welcome-feature::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.jw-welcome-feature:hover::before {
  animation: jw-shine 1.5s ease;
}

.jw-welcome-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--jw-shadow-glow);
}

.jw-welcome-feature .material-icons {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--jw-color-accent-neon);
}

.jw-welcome-cta {
  display: inline-block;
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 1.2rem 3rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--jw-shadow-glow);
  transition: var(--jw-transition-smooth);
}

.jw-welcome-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 170, 0.7);
}

.jw-responsibility-section {
  padding: 6rem 2rem;
  background: var(--jw-gradient-tertiary);
}

.jw-responsibility-container {
  max-width: 1520px;
  margin: 0 auto;
  text-align: center;
}

.jw-responsibility-title {
  margin-bottom: 2rem;
  color: var(--jw-color-text-light);
}

.jw-responsibility-content {
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.jw-responsibility-text {
  margin-bottom: 1.5rem;
  color: var(--jw-color-text-dim);
  font-size: 1.1rem;
  line-height: 1.7;
}

.jw-responsibility-text a {
  color: var(--jw-color-accent-bright);
  text-decoration: underline;
}

.jw-responsibility-text a:hover {
  color: var(--jw-color-accent-neon);
}

.jw-responsibility-link {
  display: inline-block;
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 1rem 2.5rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--jw-transition-smooth);
}

.jw-responsibility-link:hover {
  transform: scale(1.05);
  box-shadow: var(--jw-shadow-glow);
}

.jw-responsibility-partners {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.jw-contact-section {
  padding: 6rem 2rem;
  background: var(--jw-gradient-quaternary);
}

.jw-contact-container {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
}

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

.jw-contact-title {
  margin-bottom: 2rem;
  color: var(--jw-color-text-light);
  text-align: center;
}

.jw-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.jw-form-input, .jw-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(--jw-border-radius-smooth);
  color: var(--jw-color-text-light);
  font-size: 1rem;
  transition: var(--jw-transition-smooth);
}

.jw-form-textarea {
  min-height: 150px;
  resize: vertical;
}

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

.jw-form-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--jw-color-text-dim);
  transition: var(--jw-transition-smooth);
  pointer-events: none;
}

.jw-form-input:focus ~ .jw-form-label,
.jw-form-input:not(:placeholder-shown) ~ .jw-form-label,
.jw-form-textarea:focus ~ .jw-form-label,
.jw-form-textarea:not(:placeholder-shown) ~ .jw-form-label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.8rem;
  background: var(--jw-gradient-primary);
  padding: 0 0.5rem;
  color: var(--jw-color-accent-bright);
}

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

.jw-form-checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.jw-checkbox-input {
  margin-top: 0.3rem;
}

.jw-checkbox-label {
  position: relative;
  font-size: 0.9rem;
  color: var(--jw-color-text-dim);
  line-height: 1.4;
}

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

.jw-checkbox-label a:hover {
  color: var(--jw-color-accent-neon);
}

.jw-form-submit {
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 1.2rem 2rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--jw-transition-smooth);
  opacity: 0.6;
  cursor: not-allowed;
}

.jw-form-submit:enabled {
  opacity: 1;
  cursor: pointer;
}

.jw-form-submit:enabled:hover {
  transform: scale(1.05);
  box-shadow: var(--jw-shadow-glow);
}

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

.jw-contact-info-title {
  margin-bottom: 1.5rem;
  color: var(--jw-color-text-light);
}

.jw-contact-info-text {
  margin-bottom: 2.5rem;
  color: var(--jw-color-text-dim);
  line-height: 1.6;
}

.jw-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.jw-contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.jw-contact-method .material-icons {
  font-size: 2rem;
  color: var(--jw-color-accent-neon);
  margin-top: 0.2rem;
}

.jw-contact-method h4 {
  margin-bottom: 0.5rem;
  color: var(--jw-color-text-light);
}

.jw-contact-method a, .jw-contact-method p {
  color: var(--jw-color-text-dim);
}

.jw-contact-method a:hover {
  color: var(--jw-color-accent-bright);
}

.jw-footer {
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.jw-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jw-core/jw-imgs/jw-background-img-4.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.jw-footer-container {
  max-width: 1520px;
  margin: 0 auto;
}

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

.jw-footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jw-footer-logo {
  width: 40px;
  height: 40px;
}

.jw-footer-title {
  font-family: 'Unna', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jw-color-text-light);
}

.jw-footer-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.jw-footer-link, .jw-footer .jw-contact-trigger {
  color: var(--jw-color-text-dim);
  font-weight: 500;
  transition: var(--jw-transition-smooth);
}

.jw-footer-link:hover, .jw-footer .jw-contact-trigger:hover {
  color: var(--jw-color-accent-bright);
}

.jw-footer .jw-contact-trigger {
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
}

.jw-footer-bottom {
  text-align: center;
}

.jw-footer-copyright {
  color: var(--jw-color-text-dim);
  font-size: 0.9rem;
}

.jw-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: var(--jw-transition-smooth);
}

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

.jw-success-content {
  background: var(--jw-gradient-secondary);
  padding: 3rem;
  border-radius: var(--jw-border-radius-smooth);
  text-align: center;
  max-width: 500px;
  box-shadow: var(--jw-shadow-glow);
  position: relative;
  transform: scale(0.8);
  transition: var(--jw-transition-bounce);
}

.jw-success-modal.active .jw-success-content {
  transform: scale(1);
}

.jw-success-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--jw-color-text-dim);
  transition: var(--jw-transition-smooth);
}

.jw-success-close:hover {
  color: var(--jw-color-text-light);
  transform: scale(1.2);
}

.jw-success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--jw-color-accent-neon);
}

.jw-success-title {
  margin-bottom: 1rem;
  color: var(--jw-color-text-light);
}

.jw-success-text {
  margin-bottom: 2rem;
  color: var(--jw-color-text-dim);
  line-height: 1.6;
}

.jw-success-confirm {
  background: var(--jw-color-accent-bright);
  color: var(--jw-color-background-dark);
  padding: 1rem 2rem;
  border-radius: var(--jw-border-radius-rounded);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--jw-transition-smooth);
}

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

.jw-scroll-top {
  position: fixed;
  bottom: 9rem;
  right: 2rem;
  background: var(--jw-color-accent-vibrant);
  color: var(--jw-color-text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--jw-transition-smooth);
  z-index: 999;
  box-shadow: var(--jw-shadow-glow);
}

.jw-scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.jw-scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.7);
}

@keyframes jw-modal-appear {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  70% {
    transform: scale(1.05) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes jw-title-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes jw-shine {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
    min-height: 3.6rem;
  }
  
  h2 {
    font-size: 2.4rem;
    min-height: 2.9rem;
  }
  
  h3 {
    font-size: 1.8rem;
    min-height: 2.2rem;
  }
  
  .jw-hero-features, .jw-advantages-grid, .jw-games-grid, .jw-testimonials-grid, .jw-faq-container, .jw-welcome-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jw-about-container, .jw-milestones-container, .jw-contact-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .jw-about-highlights, .jw-milestones-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    min-height: 3rem;
  }
  
  h2 {
    font-size: 2rem;
    min-height: 2.4rem;
  }
  
  h3 {
    font-size: 1.6rem;
    min-height: 1.9rem;
  }
  
  .jw-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--jw-gradient-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--jw-transition-smooth);
    z-index: 999;
  }
  
  .jw-nav-menu.active {
    left: 0;
  }
  
  .jw-nav-toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }
  
  .jw-nav-toggle.active .jw-toggle-icon {
    background: transparent;
  }
  
  .jw-nav-toggle.active .jw-toggle-icon::before {
    transform: rotate(45deg);
  }
  
  .jw-nav-toggle.active .jw-toggle-icon::after {
    transform: rotate(-45deg);
  }
  
  .jw-hero-features, .jw-advantages-grid, .jw-games-grid, .jw-testimonials-grid, .jw-faq-container, .jw-welcome-features {
    grid-template-columns: 1fr;
  }
  
  .jw-age-content, .jw-cookie-content, .jw-success-content {
    padding: 2rem;
  }
  
  .jw-age-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .jw-cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .jw-footer-main {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .jw-footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
    min-height: 2.4rem;
  }
  
  h2 {
    font-size: 1.8rem;
    min-height: 2.2rem;
  }
  
  h3 {
    font-size: 1.4rem;
    min-height: 1.7rem;
  }
  
  .jw-hero-section, .jw-advantages-section, .jw-about-section, .jw-games-section, .jw-testimonials-section, .jw-faq-section, .jw-welcome-section, .jw-responsibility-section, .jw-contact-section, .jw-footer {
    padding: 4rem 0.5rem;
  }
  
  .jw-nav-container, .jw-age-content, .jw-cookie-content, .jw-contact-form-container, .jw-contact-info, .jw-success-content {
    padding: 1.5rem;
  }
  
  .jw-age-partners, .jw-responsibility-partners {
    gap: 1rem;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  
  .jw-age-partners img {
    width: 100px;
    height: 50px;
  }
  
  .jw-scroll-top {
    bottom: 13rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 1.8rem;
    min-height: 2.2rem;
  }
  
  h2 {
    font-size: 1.6rem;
    min-height: 1.9rem;
  }
  
  h3 {
    font-size: 1.3rem;
    min-height: 1.6rem;
  }
  
  .jw-hero-section, .jw-advantages-section, .jw-about-section, .jw-games-section, .jw-testimonials-section, .jw-faq-section, .jw-welcome-section, .jw-responsibility-section, .jw-contact-section, .jw-footer {
    padding: 3rem 0.3rem;
  }
  
  .jw-nav-container, .jw-age-content, .jw-cookie-content, .jw-contact-form-container, .jw-contact-info, .jw-success-content {
    padding: 1rem;
  }
  
  .jw-feature-card, .jw-advantage-item, .jw-testimonial-card, .jw-faq-category, .jw-welcome-feature, .jw-contact-form-container, .jw-contact-info {
    padding: 1.5rem 1rem;
  }
  
  .jw-age-partners img {
    width: 80px;
    height: 40px;
  }
}

.jwpage-privacy-policy {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  color: #ffffff;
  min-height: 100vh;
}

.jwpage-privacy-hero {
  padding: 5rem 2rem;
  background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jwpage-privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jw-core/jw-imgs/jw-background-img-1.webp') center/cover no-repeat;
  opacity: 0.1;
}

.jwpage-privacy-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.jwpage-privacy-title {
  font-family: 'Unna', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.jwpage-privacy-intro {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
}

.jwpage-privacy-content {
  padding: 4rem 2rem;
  max-width: 1520px;
  margin: 0 auto;
}

.jwpage-privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

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

.jwpage-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;
}

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

.jwpage-privacy-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.4);
}

.jwpage-privacy-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #33ffcc;
  text-align: center;
}

.jwpage-privacy-heading {
  font-family: 'Unna', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #ffffff;
  min-height: 2.2rem;
}

.jwpage-privacy-text {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  text-align: center;
}

.jwpage-privacy-text a {
  color: #33ffcc;
  text-decoration: underline;
}

.jwpage-privacy-text a:hover {
  color: #ff00aa;
}

@media (max-width: 768px) {
  .jwpage-privacy-title {
    font-size: 2.5rem;
  }
  
  .jwpage-privacy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .jwpage-privacy-item {
    padding: 2rem;
  }
  
  .jwpage-privacy-hero, .jwpage-privacy-content {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .jwpage-privacy-title {
    font-size: 2rem;
  }
  
  .jwpage-privacy-intro {
    font-size: 1.1rem;
  }
  
  .jwpage-privacy-item {
    padding: 1.5rem;
  }
  
  .jwpage-privacy-heading {
    font-size: 1.5rem;
  }
}

.jwpage-terms-service {
  background: linear-gradient(225deg, #0c2461, #1e3799, #4a69bd);
  color: #ffffff;
  min-height: 100vh;
}

.jwpage-terms-banner {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ff0066, #ffcc00, #00ff99);
  text-align: center;
  position: relative;
}

.jwpage-terms-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.jwpage-terms-header {
  max-width: 800px;
  margin: 0 auto;
}

.jwpage-terms-title {
  font-family: 'Unna', serif;
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.jwpage-terms-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.jwpage-terms-sections {
  padding: 4rem 2rem;
}

.jwpage-terms-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.jwpage-terms-article {
  background: rgba(255,255,255,0.08);
  border-radius: 15px;
  padding: 2.5rem;
  border-left: 4px solid #ff00aa;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.jwpage-terms-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.jwpage-terms-article:hover::before {
  transform: translateX(100%);
}

.jwpage-terms-article:hover {
  transform: translateX(10px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.jwpage-terms-icon {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 1.5rem;
  text-align: center;
}

.jwpage-terms-heading {
  font-family: 'Unna', serif;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-align: center;
  min-height: 2rem;
}

.jwpage-terms-content {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  text-align: center;
}

.jwpage-terms-content a {
  color: #ffcc00;
  text-decoration: underline;
}

.jwpage-terms-content a:hover {
  color: #ff00aa;
}

@media (max-width: 768px) {
  .jwpage-terms-title {
    font-size: 2.3rem;
  }
  
  .jwpage-terms-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .jwpage-terms-article {
    padding: 2rem;
  }
  
  .jwpage-terms-banner, .jwpage-terms-sections {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .jwpage-terms-title {
    font-size: 1.8rem;
  }
  
  .jwpage-terms-subtitle {
    font-size: 1rem;
  }
  
  .jwpage-terms-article {
    padding: 1.5rem;
  }
  
  .jwpage-terms-heading {
    font-size: 1.4rem;
  }
}

.jwpage-cookie-policy {
  background: linear-gradient(315deg, #1d2b64, #2c3e50, #3498db);
  color: #ffffff;
  min-height: 100vh;
}

.jwpage-cookie-hero {
  padding: 5rem 2rem;
  background: linear-gradient(225deg, #9900ff, #ff6600, #00ccff);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jwpage-cookie-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.jwpage-cookie-intro {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.jwpage-cookie-title {
  font-family: 'Unna', serif;
  font-size: 3.3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.jwpage-cookie-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.jwpage-cookie-details {
  padding: 4rem 2rem;
}

.jwpage-cookie-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.jwpage-cookie-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.jwpage-cookie-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff00aa, #33ffcc, #ffcc00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.jwpage-cookie-card:hover::after {
  transform: scaleX(1);
}

.jwpage-cookie-card:hover {
  transform: translateY(-8px) rotate(1deg);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.jwpage-cookie-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.jwpage-cookie-header .material-icons {
  font-size: 2.8rem;
  color: #ffcc00;
}

.jwpage-cookie-heading {
  font-family: 'Unna', serif;
  font-size: 1.7rem;
  color: #ffffff;
  margin: 0;
  min-height: 2.1rem;
}

.jwpage-cookie-body {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-size: 1.05rem;
}

.jwpage-cookie-body a {
  color: #33ffcc;
  text-decoration: underline;
}

.jwpage-cookie-body a:hover {
  color: #ff00aa;
}

@media (max-width: 768px) {
  .jwpage-cookie-title {
    font-size: 2.4rem;
  }
  
  .jwpage-cookie-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .jwpage-cookie-card {
    padding: 2rem;
  }
  
  .jwpage-cookie-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .jwpage-cookie-hero, .jwpage-cookie-details {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .jwpage-cookie-title {
    font-size: 2rem;
  }
  
  .jwpage-cookie-description {
    font-size: 1.1rem;
  }
  
  .jwpage-cookie-card {
    padding: 1.5rem;
  }
  
  .jwpage-cookie-heading {
    font-size: 1.5rem;
  }
}

.jwpage-responsible-gaming {
  background: linear-gradient(135deg, #2c3e50, #34495e, #16a085);
  color: #ffffff;
  min-height: 100vh;
}

.jwpage-responsible-intro {
  padding: 4rem 2rem;
  background: linear-gradient(45deg, #ff3399, #66ff33, #3366ff);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jwpage-responsible-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jw-core/jw-imgs/jw-background-img-2.webp') center/cover no-repeat;
  opacity: 0.1;
}

.jwpage-responsible-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.jwpage-responsible-title {
  font-family: 'Unna', serif;
  font-size: 3.4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.jwpage-responsible-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

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

.jwpage-responsible-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.jwpage-responsible-card {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.jwpage-responsible-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.jwpage-responsible-card:hover::before {
  opacity: 1;
}

.jwpage-responsible-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.jwpage-responsible-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffcc00;
  text-align: center;
}

.jwpage-responsible-heading {
  font-family: 'Unna', serif;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-align: center;
  min-height: 2.1rem;
}

.jwpage-responsible-text {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  text-align: center;
}

.jwpage-responsible-text a {
  color: #33ffcc;
  text-decoration: underline;
}

.jwpage-responsible-text a:hover {
  color: #ff00aa;
}

.jwpage-responsible-partners {
  padding: 4rem 2rem;
  background: rgba(0,0,0,0.2);
}

.jwpage-responsible-partners-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.jwpage-responsible-partners-title {
  font-family: 'Unna', serif;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.jwpage-responsible-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.jwpage-responsible-partner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.jwpage-responsible-partner:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .jwpage-responsible-title {
    font-size: 2.5rem;
  }
  
  .jwpage-responsible-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .jwpage-responsible-card {
    padding: 2rem;
  }
  
  .jwpage-responsible-partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .jwpage-responsible-intro, .jwpage-responsible-content, .jwpage-responsible-partners {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .jwpage-responsible-title {
    font-size: 2rem;
  }
  
  .jwpage-responsible-subtitle {
    font-size: 1.1rem;
  }
  
  .jwpage-responsible-card {
    padding: 1.5rem;
  }
  
  .jwpage-responsible-heading {
    font-size: 1.5rem;
  }
  
  .jwpage-responsible-partners-grid {
    grid-template-columns: 1fr;
  }
}

.jwpage-not-found {
  background: linear-gradient(225deg, #8e2de2, #4a00e0, #8e2de2);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.jwpage-not-found::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jw-core/jw-imgs/jw-background-img-3.webp') center/cover no-repeat;
  opacity: 0.1;
}

.jwpage-notfound-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.jwpage-notfound-content {
  flex: 1;
  text-align: center;
}

.jwpage-notfound-icon {
  font-size: 6rem;
  margin-bottom: 2rem;
  color: #ffcc00;
  animation: jwpage-bounce 2s ease-in-out infinite;
}

.jwpage-notfound-title {
  font-family: 'Unna', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.jwpage-notfound-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.jwpage-notfound-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.jwpage-notfound-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  min-width: 160px;
  background: rgba(255,255,255,0.1);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.jwpage-notfound-feature:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.jwpage-notfound-feature .material-icons {
  font-size: 2.5rem;
  color: #33ffcc;
}

.jwpage-notfound-feature p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.jwpage-notfound-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(45deg, #ff00aa, #ffcc00);
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-decoration: none;
}

.jwpage-notfound-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  background: linear-gradient(45deg, #ffcc00, #ff00aa);
}

.jwpage-notfound-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jwpage-notfound-animation {
  font-size: 15rem;
  color: rgba(255,255,255,0.1);
  animation: jwpage-rotate 20s linear infinite;
}

@keyframes jwpage-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes jwpage-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .jwpage-notfound-container {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  
  .jwpage-notfound-title {
    font-size: 2.8rem;
  }
  
  .jwpage-notfound-text {
    font-size: 1.1rem;
  }
  
  .jwpage-notfound-animation {
    font-size: 10rem;
  }
  
  .jwpage-notfound-icon {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .jwpage-notfound-title {
    font-size: 2.2rem;
  }
  
  .jwpage-notfound-text {
    font-size: 1rem;
  }
  
  .jwpage-notfound-features {
    gap: 1rem;
  }
  
  .jwpage-notfound-feature {
    min-width: 120px;
    padding: 1rem 0.8rem;
  }
  
  .jwpage-notfound-animation {
    font-size: 8rem;
  }
  
  .jwpage-notfound-container {
    padding: 1rem;
  }

  .jwpage-notfound-button {
    flex-direction: column;
    gap: 13px;
  }
}

.jwpage-subscribe-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  min-height: 100vh;
}

.jwpage-subscribe-hero {
  padding: 5rem 2rem;
  background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jwpage-subscribe-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jw-core/jw-imgs/jw-background-img-4.webp') center/cover no-repeat;
  opacity: 0.1;
}

.jwpage-subscribe-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.jwpage-subscribe-title {
  font-family: 'Unna', serif;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.jwpage-subscribe-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
}

.jwpage-subscribe-form-container {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 2rem;
}

.jwpage-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.jwpage-form-input {
  width: 100%;
  padding: 1.2rem;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.jwpage-form-input:focus {
  outline: none;
  border-color: #33ffcc;
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 15px rgba(51,255,204,0.3);
}

.jwpage-form-label {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  pointer-events: none;
}

.jwpage-form-input:focus ~ .jwpage-form-label,
.jwpage-form-input:not(:placeholder-shown) ~ .jwpage-form-label {
  top: -0.8rem;
  left: 1rem;
  font-size: 0.9rem;
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  padding: 0 0.5rem;
  color: #ffffff;
}

.jwpage-form-validation {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  font-size: 0.85rem;
  color: #ffcc00;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jwpage-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.jwpage-checkbox-input {
  margin-top: 0.3rem;
}

.jwpage-checkbox-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  text-align: left;
}

.jwpage-checkbox-label a {
  color: #33ffcc;
  text-decoration: underline;
}

.jwpage-checkbox-label a:hover {
  color: #ff00aa;
}

.jwpage-subscribe-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(45deg, #ff00aa, #ffcc00);
  color: #ffffff;
  padding: 1.3rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  opacity: 0.6;
  cursor: not-allowed;
}

.jwpage-subscribe-button:enabled {
  opacity: 1;
  cursor: pointer;
}

.jwpage-subscribe-button:enabled:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #ffcc00, #ff00aa);
}

.jwpage-subscribed-success {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.jwpage-success-icon {
  font-size: 4rem;
  color: #33ffcc;
  margin-bottom: 1.5rem;
}

.jwpage-success-title {
  font-family: 'Unna', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.jwpage-success-text {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.jwpage-home-button, .jwpage-unsubscribe-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.jwpage-home-button {
  background: #33ffcc;
  color: #1a1a2e;
}

.jwpage-unsubscribe-button {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.jwpage-home-button:hover, .jwpage-unsubscribe-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.jwpage-subscribe-benefits {
  padding: 5rem 2rem;
  background: rgba(0,0,0,0.2);
}

.jwpage-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jwpage-benefits-title {
  font-family: 'Unna', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
}

.jwpage-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.jwpage-benefit-card {
  background: rgba(255,255,255,0.08);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}

.jwpage-benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.jwpage-benefit-icon {
  font-size: 3rem;
  color: #ffcc00;
  margin-bottom: 1.5rem;
}

.jwpage-benefit-heading {
  font-family: 'Unna', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  min-height: 1.8rem;
}

.jwpage-benefit-text {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.jwpage-subscribe-frequency {
  padding: 4rem 2rem;
}

.jwpage-frequency-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.jwpage-frequency-title {
  font-family: 'Unna', serif;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.jwpage-frequency-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.jwpage-frequency-item {
  background: rgba(255,255,255,0.07);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1);
}

.jwpage-frequency-item .material-icons {
  font-size: 2.5rem;
  color: #33ffcc;
  margin-bottom: 1rem;
}

.jwpage-frequency-item h3 {
  font-family: 'Unna', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.jwpage-frequency-item p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.jwpage-unsubscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.jwpage-unsubscribe-modal.active {
  opacity: 1;
  visibility: visible;
}

.jwpage-unsubscribe-content {
  background: linear-gradient(45deg, #ff0066, #ffcc00);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.jwpage-unsubscribe-modal.active .jwpage-unsubscribe-content {
  transform: scale(1);
}

.jwpage-unsubscribe-icon {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.jwpage-unsubscribe-title {
  font-family: 'Unna', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.jwpage-unsubscribe-text {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.jwpage-unsubscribe-close {
  background: #ffffff;
  color: #ff0066;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jwpage-unsubscribe-close:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .jwpage-subscribe-title {
    font-size: 2.5rem;
  }
  
  .jwpage-subscribe-form-container, .jwpage-subscribed-success {
    padding: 2rem;
  }
  
  .jwpage-benefits-grid, .jwpage-frequency-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .jwpage-success-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .jwpage-home-button, .jwpage-unsubscribe-button {
    width: 200px;
    justify-content: center;
  }
  
  .jwpage-subscribe-hero, .jwpage-subscribe-benefits, .jwpage-subscribe-frequency {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .jwpage-subscribe-title {
    font-size: 2rem;
  }
  
  .jwpage-subscribe-description {
    font-size: 1.1rem;
  }
  
  .jwpage-benefit-card, .jwpage-frequency-item {
    padding: 1.5rem;
  }
  
  .jwpage-unsubscribe-content {
    padding: 2rem;
    margin: 1rem;
  }
}

.jwpage-subscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.jwpage-subscribe-modal-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 25px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  transform: scale(0.8) rotate(-5deg);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.jwpage-subscribe-modal.active .jwpage-subscribe-modal-content {
  transform: scale(1) rotate(0);
}

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

.jwpage-subscribe-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.jwpage-subscribe-modal-body {
  text-align: center;
  color: #ffffff;
}

.jwpage-subscribe-modal-icon {
  font-size: 4rem;
  color: #ffcc00;
  margin-bottom: 1.5rem;
  animation: jwpage-pulse 2s ease-in-out infinite;
}

.jwpage-subscribe-modal-title {
  font-family: 'Unna', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.jwpage-subscribe-modal-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.jwpage-subscribe-modal-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.jwpage-modal-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 12px;
  min-width: 100px;
  transition: all 0.3s ease;
}

.jwpage-modal-feature:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.jwpage-modal-feature .material-icons {
  font-size: 2rem;
  color: #33ffcc;
}

.jwpage-modal-feature p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.jwpage-subscribe-modal-form {
  margin-bottom: 1.5rem;
}

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

.jwpage-modal-form-group {
  position: relative;
}

.jwpage-modal-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.jwpage-modal-input:focus {
  outline: none;
  border-color: #33ffcc;
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 15px rgba(51,255,204,0.3);
}

.jwpage-modal-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.jwpage-modal-validation {
  position: absolute;
  bottom: -1.2rem;
  left: 1.5rem;
  font-size: 0.8rem;
  color: #ffcc00;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.jwpage-modal-checkbox {
  margin-top: 0.2rem;
}

.jwpage-modal-checkbox-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  text-align: left;
}

.jwpage-modal-subscribe-button {
  background: linear-gradient(45deg, #ff00aa, #ffcc00);
  color: #ffffff;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  opacity: 0.6;
  cursor: not-allowed;
}

.jwpage-modal-subscribe-button:enabled {
  opacity: 1;
  cursor: pointer;
}

.jwpage-modal-subscribe-button:enabled:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #ffcc00, #ff00aa);
}

.jwpage-modal-success {
  margin-bottom: 1.5rem;
}

.jwpage-modal-success-icon {
  font-size: 3.5rem;
  color: #33ffcc;
  margin-bottom: 1rem;
}

.jwpage-modal-success-title {
  font-family: 'Unna', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.jwpage-modal-success-text {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.jwpage-modal-unsubscribe-button {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jwpage-modal-unsubscribe-button:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.jwpage-modal-learn-more {
  color: #33ffcc;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.jwpage-modal-learn-more:hover {
  color: #ff00aa;
}

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

@media (max-width: 768px) {
  .jwpage-subscribe-modal-content {
    padding: 2rem;
    margin: 1rem;
  }
  
  .jwpage-subscribe-modal-title {
    font-size: 1.8rem;
  }
  
  .jwpage-subscribe-modal-text {
    font-size: 1rem;
  }
  
  .jwpage-subscribe-modal-features {
    gap: 1rem;
  }
  
  .jwpage-modal-feature {
    min-width: 80px;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .jwpage-subscribe-modal-content {
    padding: 1.5rem;
  }
  
  .jwpage-subscribe-modal-title {
    font-size: 1.6rem;
  }
  
  .jwpage-subscribe-modal-features {
    flex-direction: column;
    align-items: center;
  }
  
  .jwpage-modal-feature {
    width: 100%;
    max-width: 200px;
  }
}