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

:root {
  --jnf-gradient-primary: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  --jnf-gradient-secondary: linear-gradient(45deg, #a8e6cf, #dcedc1, #ffd3b6, #ffaaa5);
  --jnf-gradient-dark: linear-gradient(135deg, #2c3e50, #3498db, #9b59b6, #1abc9c);
  --jnf-accent-coral: #ff6b6b;
  --jnf-accent-teal: #4ecdc4;
  --jnf-accent-blue: #45b7d1;
  --jnf-accent-green: #96ceb4;
  --jnf-text-dark: #2c3e50;
  --jnf-text-light: #ffffff;
  --jnf-shadow-soft: 0 8px 25px rgba(0,0,0,0.1);
  --jnf-shadow-medium: 0 12px 35px rgba(0,0,0,0.15);
  --jnf-radius-small: 12px;
  --jnf-radius-medium: 20px;
  --jnf-radius-large: 30px;
  --jnf-transition-fast: 0.3s ease;
  --jnf-transition-medium: 0.5s ease;
  --jnf-transition-slow: 0.8s ease;
}

body {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.6;
  color: var(--jnf-text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Serif Caption', serif;
  min-height: 1.2em;
}

.jnf__wrapper {
  margin: 0 auto;
  position: relative;
}

.jnf__header_navigation {
  background: var(--jnf-gradient-primary);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--jnf-shadow-soft);
}

.jnf__header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.jnf__header_logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--jnf-text-light);
  font-size: 1.5rem;
  font-weight: bold;
}

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

.jnf__header_link, .jnf__header_email {
  color: var(--jnf-text-light);
  text-decoration: none;
  transition: var(--jnf-transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.jnf__header_link:hover, .jnf__header_email:hover {
  transform: translateY(-2px);
}

.jnf__header_link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--jnf-text-light);
  transition: var(--jnf-transition-fast);
}

.jnf__header_link:hover::after {
  width: 100%;
}

.jnf__header_burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.jnf__header_burger span {
  width: 25px;
  height: 3px;
  background: var(--jnf-text-light);
  transition: var(--jnf-transition-fast);
  transform-origin: center;
}

.jnf__hero_platform {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jnf__hero_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jnf-core/jnf-images/jnf-logo-bg-2.webp') center/cover no-repeat;
  opacity: 0.24;
  z-index: -1;
}

.jnf__hero_container {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.jnf__hero_container h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--jnf-text-dark);
  animation: jnf__slideInDown 1s ease;
}

.jnf__hero_description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--jnf-text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: jnf__fadeInUp 1s ease 0.3s both;
}

.jnf__hero_cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: jnf__fadeInUp 1s ease 0.6s both;
}

.jnf__hero_card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: var(--jnf-radius-medium);
  box-shadow: var(--jnf-shadow-soft);
  transition: var(--jnf-transition-fast);
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.jnf__hero_card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--jnf-shadow-medium);
}

.jnf__hero_card .material-icons {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--jnf-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jnf__hero_note {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  opacity: 0.7;
  animation: jnf__fadeInUp 1s ease 0.9s both;
}

.jnf__hero_button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--jnf-gradient-primary);
  color: var(--jnf-text-light);
  text-decoration: none;
  border-radius: var(--jnf-radius-large);
  font-weight: bold;
  transition: var(--jnf-transition-fast);
  animation: jnf__bounceIn 1s ease 1.2s both;
}

.jnf__hero_button:hover {
  transform: scale(1.1);
  box-shadow: var(--jnf-shadow-medium);
}

.jnf__platform_selection {
  padding: 6rem 2rem;
  background: var(--jnf-gradient-dark);
}

.jnf__platform_container {
  max-width: 1400px;
  margin: 0 auto;
}

.jnf__platform_container h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--jnf-text-light);
}

.jnf__platform_cards {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.jnf__platform_cardwrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.jnf__platform_card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--jnf-radius-large);
  padding: 2.5rem;
  box-shadow: var(--jnf-shadow-medium);
  transition: var(--jnf-transition-medium);
  flex: 1;
  min-width: 350px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

.jnf__platform_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--jnf-gradient-primary);
}

.jnf__platform_card:hover {
  transform: translateY(-15px) rotate(2deg);
}

.jnf__platform_type {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--jnf-accent-coral);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.jnf__platform_logo {
  background: var(--jnf-text-dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

.jnf__platform_logo img {
  width: 100%;
  max-width: 290px;
  height: 100%;
  max-height: 110px;
  object-fit: contain;
}

.jnf__platform_card h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--jnf-text-dark);
}

.jnf__platform_advantages {
  list-style: none;
  margin-bottom: 2rem;
}

.jnf__platform_advantages li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  padding: 0.5rem;
  border-radius: var(--jnf-radius-small);
  transition: var(--jnf-transition-fast);
}

.jnf__platform_advantages li:hover {
  background: rgba(70, 130, 180, 0.1);
  transform: translateX(10px);
}

.jnf__platform_advantages .material-icons {
  color: var(--jnf-accent-teal);
}

.jnf__platform_rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.jnf__platform_rating .material-icons {
  color: #ffd700;
}

.jnf__platform_link {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  background: var(--jnf-gradient-primary);
  color: var(--jnf-text-light);
  text-decoration: none;
  border-radius: var(--jnf-radius-medium);
  transition: var(--jnf-transition-fast);
  font-weight: bold;
}

.jnf__platform_link:hover {
  transform: scale(1.05);
  box-shadow: var(--jnf-shadow-soft);
}

.payribbon-hr-a { text-align:center; margin-top:10px; }
.payribbon-hr-a_t { font-size:14px; letter-spacing:.3px; opacity:.85; text-transform:uppercase; }
.payribbon-hr-a_l { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; margin-top:6px; }
.payribbon-hr-a_l span { padding:4px 11px; border-radius:18px; background:rgba(255,255,255,.08); font-size:13px; }

.jnf__frequent_questions {
  position: relative;
  padding: 6rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.jnf__questions_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jnf-core/jnf-images/jnf-logo-bg-3.webp') center/cover no-repeat;
  opacity: 0.8;
  z-index: -1;
}

.jnf__questions_container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.jnf__questions_container h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--jnf-text-light);
}

.jnf__questions_blocks {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.jnf__questions_block {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: var(--jnf-radius-medium);
  box-shadow: var(--jnf-shadow-soft);
}

.jnf__questions_block h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--jnf-accent-blue);
  border-bottom: 2px solid var(--jnf-accent-blue);
  padding-bottom: 0.5rem;
}

.jnf__questions_item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.jnf__questions_question {
  font-weight: bold;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--jnf-radius-small);
  transition: var(--jnf-transition-fast);
  position: relative;
  padding-right: 2rem;
}

.jnf__questions_question::after {
  content: 'expand_more';
  font-family: 'Material Icons';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--jnf-transition-fast);
}

.jnf__questions_question.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.jnf__questions_question:hover {
  background: rgba(70, 130, 180, 0.1);
}

.jnf__questions_answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--jnf-transition-medium);
  padding-left: 1rem;
  border-left: 3px solid transparent;
}

.jnf__questions_answer.active {
  max-height: 500px;
  padding-top: 1rem;
  border-left-color: var(--jnf-accent-teal);
}

.jnf__questions_note {
  font-size: 0.8rem;
  margin-top: 1rem;
  opacity: 0.6;
  text-align: center;
}

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

.jnf__questions_more, .jnf__questions_email {
  padding: 1rem 2rem;
  border-radius: var(--jnf-radius-medium);
  text-decoration: none;
  font-weight: bold;
  transition: var(--jnf-transition-fast);
}

.jnf__questions_more {
  background: var(--jnf-gradient-primary);
  color: var(--jnf-text-light);
}

.jnf__questions_email {
  background: rgba(255, 255, 255, 0.9);
  color: var(--jnf-text-dark);
  border: 2px solid var(--jnf-accent-teal);
}

.jnf__questions_more:hover, .jnf__questions_email:hover {
  transform: translateY(-5px);
  box-shadow: var(--jnf-shadow-soft);
}

.jnf__about_us {
  padding: 6rem 2rem;
  background: var(--jnf-gradient-dark);
}

.jnf__about_container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  justify-items: center;
  align-items: start;
}

.jnf__about_block {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: var(--jnf-radius-large);
  transition: var(--jnf-transition-medium);
}

.jnf__about_block:hover {
  transform: scale(1.02);
}

.jnf__about_image1, .jnf__about_image2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jnf__about_image1 {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 500px;
  background: url('/jnf-core/jnf-images/jnf-logo-about-1.png') center/cover no-repeat;
  border-radius: var(--jnf-radius-medium);
  position: relative;
  overflow: hidden;
}

.jnf__about_image1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jnf-core/jnf-images/jnf-logo-about-1.png') center/cover no-repeat;
  opacity: 0.7;
  animation: jnf__pulse 3s ease-in-out infinite;
}

.jnf__about_image2 {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 500px;
  background: url('/jnf-core/jnf-images/jnf-logo-about-2.png') center/cover no-repeat;
  border-radius: var(--jnf-radius-medium);
  position: relative;
  overflow: hidden;
}

.jnf__about_image2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jnf-core/jnf-images/jnf-logo-about-2.png') center/cover no-repeat;
  opacity: 0.7;
  animation: jnf__pulse 3s ease-in-out infinite;
}

.jnf__about_text1 h2, .jnf__about_text2 h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--jnf-text-dark);
  text-align: center;
}

.jnf__about_text1 p, .jnf__about_text2 p {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.jnf__about_note {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 1rem;
  text-align: center;
}

.jnf__about_minicards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.jnf__about_minicard {
  text-align: center;
  padding: 1rem;
  background: rgba(70, 130, 180, 0.1);
  border-radius: var(--jnf-radius-small);
  transition: var(--jnf-transition-fast);
}

.jnf__about_minicard:hover {
  transform: translateY(-5px);
  background: rgba(70, 130, 180, 0.2);
}

.jnf__about_minicard .material-icons {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: var(--jnf-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jnf__about_minicard p {
  font-size: 0.9rem;
  margin: 0;
  font-weight: bold;
}

.jnf__about_center {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
}

.jnf__about_link {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--jnf-gradient-primary);
  color: var(--jnf-text-light);
  text-decoration: none;
  border-radius: var(--jnf-radius-large);
  font-weight: bold;
  transition: var(--jnf-transition-fast);
  font-size: 1.1rem;
}

.jnf__about_link:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: var(--jnf-shadow-medium);
}

.jnf__welcome_section {
  position: relative;
  padding: 6rem 2rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jnf__welcome_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jnf-core/jnf-images/jnf-logo-bg-1.webp') center/cover no-repeat;
  opacity: 0.23;
  z-index: -1;
}

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

.jnf__welcome_container h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--jnf-text-dark);
  animation: jnf__slideInDown 1s ease;
}

.jnf__welcome_description {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: jnf__fadeInUp 1s ease 0.3s both;
}

.jnf__welcome_cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  animation: jnf__fadeInUp 1s ease 0.6s both;
}

.jnf__welcome_card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: var(--jnf-radius-large);
  box-shadow: var(--jnf-shadow-soft);
  transition: var(--jnf-transition-fast);
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  position: relative;
  overflow: hidden;
}

.jnf__welcome_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--jnf-gradient-primary);
  opacity: 0.1;
  transition: var(--jnf-transition-medium);
}

.jnf__welcome_card:hover::before {
  left: 0;
}

.jnf__welcome_card:hover {
  transform: translateY(-10px) rotate(-2deg);
}

.jnf__welcome_card .material-icons {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--jnf-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jnf__welcome_card p {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--jnf-text-dark);
}

.jnf__welcome_button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--jnf-gradient-primary);
  color: var(--jnf-text-light);
  text-decoration: none;
  border-radius: var(--jnf-radius-large);
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--jnf-transition-fast);
  animation: jnf__bounceIn 1s ease 0.9s both;
}

.jnf__welcome_button:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: var(--jnf-shadow-medium);
}

.jnf__responsible_gaming {
  padding: 6rem 2rem;
  background: var(--jnf-gradient-primary);
}

.jnf__responsible_container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.jnf__responsible_content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--jnf-text-light);
  text-align: center;
}

.jnf__responsible_text {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: var(--jnf-radius-large);
  box-shadow: var(--jnf-shadow-medium);
}

.jnf__responsible_text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--jnf-text-dark);
}

.jnf__responsible_text a {
  color: var(--jnf-accent-blue);
  text-decoration: none;
  font-weight: bold;
  transition: var(--jnf-transition-fast);
}

.jnf__responsible_text a:hover {
  color: var(--jnf-accent-coral);
  text-decoration: underline;
}

.jnf__responsible_partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.jnf__responsible_link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  padding: 1.5rem;
  border-radius: var(--jnf-radius-medium);
  box-shadow: var(--jnf-shadow-soft);
  transition: var(--jnf-transition-fast);
  height: 120px;
}

.jnf__responsible_link:hover {
  transform: scale(1.05);
  box-shadow: var(--jnf-shadow-medium);
}

.jnf__responsible_link img {
  width: 100%;
  max-width: 120px;
  height: 100%;
  max-height: 60px;
  object-fit: contain;
}

.jnf__responsible_age {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

.jnf__responsible_age img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.jnf__footer_section {
  background: var(--jnf-gradient-dark);
  padding: 3rem 2rem 1rem;
  color: var(--jnf-text-light);
}

.jnf__footer_container {
  max-width: 1400px;
  margin: 0 auto;
}

.jnf__footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 2rem;
}

.jnf__footer_logo p {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 'PT Serif Caption', serif;
}

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

.jnf__footer_link, .jnf__footer_email {
  color: var(--jnf-text-light);
  text-decoration: none;
  transition: var(--jnf-transition-fast);
}

.jnf__footer_link:hover, .jnf__footer_email:hover {
  color: var(--jnf-accent-teal);
  transform: translateY(-2px);
}

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

.jnf__footer_copyright {
  opacity: 0.8;
}

.jnf__footer_links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.jnf__footer_smalllink {
  color: var(--jnf-text-light);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: var(--jnf-transition-fast);
}

.jnf__footer_smalllink:hover {
  opacity: 1;
  color: var(--jnf-accent-teal);
}

.jnf__footer_note {
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

.jnf__cookies_modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(44, 62, 80, 0.95);
  color: var(--jnf-text-light);
  padding: 1.5rem 2rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: var(--jnf-transition-medium);
}

.jnf__cookies_modal.active {
  transform: translateY(0);
}

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

.jnf__cookies_container p {
  flex: 1;
  margin: 0;
}

.jnf__cookies_container a {
  color: var(--jnf-accent-teal);
  text-decoration: none;
}

.jnf__cookies_container a:hover {
  text-decoration: underline;
}

.jnf__cookies_accept {
  background: var(--jnf-accent-teal);
  color: var(--jnf-text-light);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: var(--jnf-radius-medium);
  cursor: pointer;
  font-weight: bold;
  transition: var(--jnf-transition-fast);
  white-space: nowrap;
}

.jnf__cookies_accept:hover {
  background: var(--jnf-accent-blue);
  transform: scale(1.05);
}

.jnf__age_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--jnf-transition-medium);
}

.jnf__age_modal.active {
  opacity: 1;
  visibility: visible;
}

.jnf__age_container {
  background: var(--jnf-gradient-primary);
  padding: 3rem;
  border-radius: var(--jnf-radius-large);
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--jnf-shadow-medium);
  transform: scale(0.8);
  transition: var(--jnf-transition-medium);
}

.jnf__age_modal.active .jnf__age_container {
  transform: scale(1);
}

.jnf__age_container h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--jnf-text-light);
}

.jnf__age_container p {
  margin-bottom: 2.5rem;
  color: var(--jnf-text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.jnf__age_confirm, .jnf__age_deny {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--jnf-radius-medium);
  font-weight: bold;
  cursor: pointer;
  transition: var(--jnf-transition-fast);
  font-size: 1rem;
}

.jnf__age_confirm {
  background: var(--jnf-accent-green);
  color: var(--jnf-text-dark);
}

.jnf__age_deny {
  background: var(--jnf-accent-coral);
  color: var(--jnf-text-light);
}

.jnf__age_confirm:hover {
  transform: scale(1.1);
  background: #7bc8a8;
}

.jnf__age_deny:hover {
  transform: scale(1.1);
  background: #ff5252;
}

@keyframes jnf__slideInDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

@keyframes jnf__bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes jnf__pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@media (max-width: 1024px) {
  .jnf__about_container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .jnf__responsible_container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .jnf__platform_cards {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .jnf__header_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--jnf-gradient-primary);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--jnf-shadow-medium);
  }
  
  .jnf__header_nav.active {
    display: flex;
  }
  
  .jnf__header_burger {
    display: flex;
  }
  
  .jnf__header_burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .jnf__header_burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .jnf__header_burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .jnf__hero_container h1 {
    font-size: 2.5rem;
  }
  
  .jnf__platform_container h2,
  .jnf__questions_container h2,
  .jnf__welcome_container h2 {
    font-size: 2.5rem;
  }
  
  .jnf__responsible_content h2 {
    font-size: 2.2rem;
  }
  
  .jnf__footer_top {
    flex-direction: column;
    text-align: center;
  }
  
  .jnf__footer_bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .jnf__cookies_container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .jnf__hero_container,
  .jnf__platform_container,
  .jnf__questions_container,
  .jnf__about_container,
  .jnf__welcome_container,
  .jnf__responsible_container {
    padding: 0 1rem;
  }
  
  .jnf__hero_container h1 {
    font-size: 2rem;
  }
  
  .jnf__platform_container h2,
  .jnf__questions_container h2,
  .jnf__welcome_container h2 {
    font-size: 2rem;
  }
  
  .jnf__responsible_content h2 {
    font-size: 1.8rem;
  }
  
  .jnf__platform_card {
    min-width: 100%;
  }
  
  .jnf__questions_blocks {
    flex-direction: column;
  }
  
  .jnf__about_minicards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jnf__responsible_partners {
    grid-template-columns: 1fr;
  }
  
  .jnf__age_buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .jnf__age_confirm,
  .jnf__age_deny {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 440px) {
  .jnf__frequent_questions,
  .jnf__questions_container,
  .jnf__hero_container {
    padding: 6rem 0.2rem;
  }

  .jnf__hero_card,
  .jnf__welcome_card {
    min-width: 100%;
  }
  
  .jnf__about_minicards {
    grid-template-columns: 1fr;
  }
  
  .jnf__footer_links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

.jnfpage__privacy_hero {
padding: 6rem 2rem 4rem;
text-align: center;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}

.jnfpage__privacy_container h1 {
font-family: 'PT Serif Caption', serif;
font-size: 3.5rem;
color: white;
margin-bottom: 2rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.jnfpage__privacy_intro {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
color: white;
font-size: 1.3rem;
}

.jnfpage__privacy_intro .material-icons {
font-size: 2.5rem;
animation: jnfpage__float 3s ease-in-out infinite;
}

.jnfpage__privacy_content {
padding: 4rem 2rem;
}

.jnfpage__privacy_wrapper {
max-width: 1200px;
margin: 0 auto;
display: grid;
gap: 3rem;
}

.jnfpage__privacy_item {
background: rgba(255, 255, 255, 0.95);
border-radius: 25px;
padding: 3rem;
display: flex;
gap: 2rem;
align-items: flex-start;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: 2px solid transparent;
position: relative;
overflow: hidden;
}

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

.jnfpage__privacy_item:hover::before {
left: 100%;
}

.jnfpage__privacy_item:hover {
transform: translateY(-10px) scale(1.02);
border-color: #667eea;
box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.jnfpage__privacy_icon {
flex-shrink: 0;
width: 80px;
height: 80px;
background: linear-gradient(135deg, #667eea, #764ba2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 2.5rem;
box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.jnfpage__privacy_text h2 {
font-family: 'PT Serif Caption', serif;
font-size: 2rem;
color: #2c3e50;
margin-bottom: 1rem;
min-height: 2.4rem;
}

.jnfpage__privacy_text p {
font-size: 1.1rem;
line-height: 1.8;
color: #5a6c7d;
margin-bottom: 0;
}

.jnfpage__privacy_text a {
color: #667eea;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}

.jnfpage__privacy_text a:hover {
color: #764ba2;
text-decoration: underline;
}

.jnfpage__privacy_contact {
padding: 4rem 2rem;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}

.jnfpage__privacy_contact_container {
max-width: 800px;
margin: 0 auto;
text-align: center;
color: white;
}

.jnfpage__privacy_contact_container h2 {
font-family: 'PT Serif Caption', serif;
font-size: 2.5rem;
margin-bottom: 2rem;
}

.jnfpage__privacy_contact_container p {
font-size: 1.2rem;
margin-bottom: 2rem;
line-height: 1.6;
}

.jnfpage__privacy_email {
display: inline-flex;
align-items: center;
gap: 1rem;
background: white;
color: #667eea;
padding: 1.5rem 3rem;
border-radius: 50px;
text-decoration: none;
font-size: 1.3rem;
font-weight: bold;
margin: 2rem 0;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.jnfpage__privacy_email:hover {
transform: scale(1.05);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
background: #f8f9fa;
}

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

@media (max-width: 768px) {
.jnfpage__privacy_container h1 {
font-size: 2.5rem;
}

.jnfpage__privacy_item {
flex-direction: column;
text-align: center;
padding: 2rem;
}

.jnfpage__privacy_icon {
align-self: center;
}

.jnfpage__privacy_text h2 {
font-size: 1.8rem;
}
}

@media (max-width: 480px) {
.jnfpage__privacy_hero {
padding: 4rem 1rem 2rem;
}

.jnfpage__privacy_content {
padding: 2rem 1rem;
}

.jnfpage__privacy_container h1 {
font-size: 2rem;
}

.jnfpage__privacy_intro {
flex-direction: column;
font-size: 1.1rem;
}

.jnfpage__privacy_email {
flex-direction: column;
gap: 5px;
align-items: center;
padding: 1rem 2rem;
width: 100%;
max-width: 280px;
font-size: .9rem;
}

.jnfpage__privacy_text a {
font-size: .9rem;
}
}

.jnfpage__terms_usage {
background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff9ff3, #f368e0);
min-height: 100vh;
}

.jnfpage__terms_hero {
padding: 6rem 2rem 4rem;
text-align: center;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(15px);
border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.jnfpage__terms_container h1 {
font-family: 'PT Serif Caption', serif;
font-size: 3.5rem;
color: white;
margin-bottom: 2rem;
text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.jnfpage__terms_intro {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
color: white;
font-size: 1.4rem;
font-weight: 500;
}

.jnfpage__terms_intro .material-icons {
font-size: 3rem;
animation: jnfpage__pulse 2s ease-in-out infinite;
}

.jnfpage__terms_content {
padding: 5rem 2rem;
}

.jnfpage__terms_wrapper {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 3rem;
}

.jnfpage__terms_card {
background: rgba(255, 255, 255, 0.95);
border-radius: 30px;
padding: 0;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
border: 3px solid transparent;
position: relative;
}

.jnfpage__terms_card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff9ff3, #f368e0);
}

.jnfpage__terms_card:hover {
transform: translateY(-15px) rotate(1deg);
box-shadow: 0 30px 60px rgba(0,0,0,0.25);
border-color: #ff6b6b;
}

.jnfpage__terms_header {
background: linear-gradient(135deg, #ff6b6b, #ee5a24);
padding: 2.5rem 2rem;
display: flex;
align-items: center;
gap: 1.5rem;
color: white;
}

.jnfpage__terms_header .material-icons {
font-size: 3rem;
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.jnfpage__terms_header h2 {
font-family: 'PT Serif Caption', serif;
font-size: 1.8rem;
margin: 0;
min-height: 2.2rem;
text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.jnfpage__terms_body {
padding: 2.5rem 2rem;
}

.jnfpage__terms_body p {
font-size: 1.1rem;
line-height: 1.7;
color: #5a6c7d;
margin-bottom: 0;
}

.jnfpage__terms_body a {
color: #ff6b6b;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}

.jnfpage__terms_body a:hover {
color: #ee5a24;
text-decoration: underline;
}

.jnfpage__terms_acceptance {
padding: 4rem 2rem;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(20px);
}

.jnfpage__terms_acceptance_container {
max-width: 800px;
margin: 0 auto;
text-align: center;
color: white;
}

.jnfpage__terms_acceptance_container h2 {
font-family: 'PT Serif Caption', serif;
font-size: 2.8rem;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.jnfpage__terms_acceptance_container p {
font-size: 1.3rem;
margin-bottom: 3rem;
line-height: 1.6;
}

.jnfpage__terms_actions {
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
}

.jnfpage__terms_accept,
.jnfpage__terms_decline {
padding: 1.5rem 3rem;
border-radius: 50px;
text-decoration: none;
font-size: 1.2rem;
font-weight: bold;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
display: inline-flex;
align-items: center;
gap: 1rem;
}

.jnfpage__terms_accept {
background: linear-gradient(135deg, #00b894, #00a085);
color: white;
}

.jnfpage__terms_decline {
background: linear-gradient(135deg, #ff7675, #ff5252);
color: white;
}

.jnfpage__terms_accept:hover,
.jnfpage__terms_decline:hover {
transform: scale(1.1);
box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.jnfpage__terms_accept:hover {
background: linear-gradient(135deg, #00a085, #008b74);
}

.jnfpage__terms_decline:hover {
background: linear-gradient(135deg, #ff5252, #ff3838);
}

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

@media (max-width: 1024px) {
.jnfpage__terms_wrapper {
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
}

@media (max-width: 768px) {
.jnfpage__terms_container h1 {
font-size: 2.8rem;
}

.jnfpage__terms_wrapper {
grid-template-columns: 1fr;
}

.jnfpage__terms_header {
flex-direction: column;
text-align: center;
gap: 1rem;
}

.jnfpage__terms_actions {
flex-direction: column;
align-items: center;
}

.jnfpage__terms_accept,
.jnfpage__terms_decline {
width: 100%;
max-width: 300px;
justify-content: center;
}
}

@media (max-width: 480px) {
.jnfpage__terms_hero {
padding: 4rem 1rem 2rem;
}

.jnfpage__terms_content {
padding: 3rem 1rem;
}

.jnfpage__terms_container h1 {
font-size: 2.2rem;
}

.jnfpage__terms_intro {
flex-direction: column;
font-size: 1.2rem;
}

.jnfpage__terms_header {
padding: 2rem 1.5rem;
}

.jnfpage__terms_body {
padding: 2rem 1.5rem;
}

.jnfpage__terms_body a {
font-size: .9rem;
}
}

.jnfpage__cookies_terms {
  background: var(--jnfpage-gradient-primary);
  min-height: 100vh;
}

.jnfpage__cookies_hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

.jnfpage__cookies_container h1 {
  font-family: 'PT Serif Caption', serif;
  font-size: 3.5rem;
  color: var(--jnfpage-text-dark);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.jnfpage__cookies_intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--jnfpage-text-dark);
  font-size: 1.3rem;
  font-weight: 600;
}

.jnfpage__cookies_intro .material-icons {
  font-size: 3rem;
  color: #e17055;
  animation: jnfpage__rotate 4s linear infinite;
}

.jnfpage__cookies_content {
  padding: 5rem 2rem;
}

.jnfpage__cookies_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.jnfpage__cookies_item {
  background: var(--jnfpage-bg-light);
  border-radius: var(--jnfpage-radius-large);
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: var(--jnfpage-shadow-soft);
  transition: all var(--jnfpage-transition-medium);
  border-left: 6px solid #a8e6cf;
  position: relative;
  overflow: hidden;
}

.jnfpage__cookies_item:nth-child(even) {
  border-left-color: #ffd3b6;
}

.jnfpage__cookies_item:nth-child(3n) {
  border-left-color: #ffaaa5;
}

.jnfpage__cookies_item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(168, 230, 207, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform var(--jnfpage-transition-slow);
}

.jnfpage__cookies_item:hover::after {
  transform: translateX(100%);
}

.jnfpage__cookies_item:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: var(--jnfpage-shadow-medium);
}

.jnfpage__cookies_icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--jnfpage-gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jnfpage-text-light);
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(168, 230, 207, 0.4);
}

.jnfpage__cookies_item:nth-child(even) .jnfpage__cookies_icon {
  background: var(--jnfpage-gradient-warning);
}

.jnfpage__cookies_item:nth-child(3n) .jnfpage__cookies_icon {
  background: var(--jnfpage-gradient-accent);
}

.jnfpage__cookies_text h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 1.8rem;
  color: var(--jnfpage-text-dark);
  margin-bottom: 1rem;
  min-height: 2.2rem;
}

.jnfpage__cookies_text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--jnfpage-text-muted);
  margin-bottom: 0;
}

.jnfpage__cookies_text a {
  color: #e17055;
  text-decoration: none;
  font-weight: bold;
  transition: color var(--jnfpage-transition-fast);
}

.jnfpage__cookies_text a:hover {
  color: #d63031;
  text-decoration: underline;
}

.jnfpage__cookies_management {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  border-radius: 0 0 30px 30px;
}

.jnfpage__cookies_management_container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.jnfpage__cookies_management_container h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2.5rem;
  color: var(--jnfpage-text-dark);
  margin-bottom: 3rem;
}

.jnfpage__cookies_controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.jnfpage__cookies_control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--jnfpage-bg-light);
  padding: 1.5rem 2rem;
  border-radius: var(--jnfpage-radius-medium);
  box-shadow: var(--jnfpage-shadow-soft);
  transition: all var(--jnfpage-transition-fast);
  border: 2px solid transparent;
}

.jnfpage__cookies_control:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: #a8e6cf;
}

.jnfpage__cookies_control .material-icons {
  font-size: 2rem;
  color: #a8e6cf;
  flex-shrink: 0;
  transition: color var(--jnfpage-transition-fast);
}

.jnfpage__cookies_control:hover .material-icons {
  color: #78c2ad;
}

.jnfpage__cookies_control p {
  flex: 1;
  margin: 0 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--jnfpage-text-dark);
  text-align: left;
}

.jnfpage__cookies_toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  flex-shrink: 0;
}

.jnfpage__cookies_toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.jnfpage__cookies_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.jnfpage__cookies_slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .jnfpage__cookies_slider {
  background: var(--jnfpage-gradient-secondary);
}

input:checked + .jnfpage__cookies_slider:before {
  transform: translateX(26px);
}

input:disabled + .jnfpage__cookies_slider {
  background: #b2bec3;
  cursor: not-allowed;
}

input:disabled + .jnfpage__cookies_slider:before {
  background: #dfe6e9;
}

.jnfpage__cookies_actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.jnfpage__cookies_actions button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--jnfpage-transition-fast);
  box-shadow: var(--jnfpage-shadow-soft);
}

.jnfpage__cookies_save {
  background: var(--jnfpage-gradient-secondary);
  color: var(--jnfpage-text-light);
}

.jnfpage__cookies_reject {
  background: var(--jnfpage-gradient-accent);
  color: var(--jnfpage-text-light);
}

.jnfpage__cookies_accept_all {
  background: var(--jnfpage-gradient-warning);
  color: var(--jnfpage-text-dark);
}

.jnfpage__cookies_save:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(168, 230, 207, 0.4);
  background: linear-gradient(135deg, #78c2ad, #5aa892);
}

.jnfpage__cookies_reject:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 170, 165, 0.4);
  background: linear-gradient(135deg, #ff8b94, #ff6b7a);
}

.jnfpage__cookies_accept_all:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 211, 182, 0.4);
  background: linear-gradient(135deg, #ffb38a, #ff9a6a);
}

.jnfpage__cookies_contact {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
}

.jnfpage__cookies_contact_container {
  max-width: 600px;
  margin: 0 auto;
}

.jnfpage__cookies_contact_container h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2.5rem;
  color: var(--jnfpage-text-dark);
  margin-bottom: 1rem;
}

.jnfpage__cookies_contact_container p {
  font-size: 1.2rem;
  color: var(--jnfpage-text-muted);
  margin-bottom: 2rem;
}

.jnfpage__cookies_contact_link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--jnfpage-bg-light);
  color: var(--jnfpage-text-dark);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all var(--jnfpage-transition-fast);
  box-shadow: var(--jnfpage-shadow-soft);
  border: 2px solid #a8e6cf;
}

.jnfpage__cookies_contact_link:hover {
  transform: scale(1.05);
  box-shadow: var(--jnfpage-shadow-medium);
  background: #a8e6cf;
  color: var(--jnfpage-text-light);
}

.jnfpage__cookies_success_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--jnfpage-transition-medium);
  backdrop-filter: blur(10px);
}

.jnfpage__cookies_success_modal.active {
  opacity: 1;
  visibility: visible;
}

.jnfpage__cookies_success_content {
  background: var(--jnfpage-gradient-primary);
  padding: 3rem;
  border-radius: var(--jnfpage-radius-large);
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--jnfpage-shadow-strong);
  transform: scale(0.7) translateY(-50px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.jnfpage__cookies_success_modal.active .jnfpage__cookies_success_content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.jnfpage__cookies_success_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a8e6cf, #dcedc1, #ffd3b6, #ffaaa5);
  animation: jnfpage__successShimmer 3s ease-in-out infinite;
}

.jnfpage__cookies_success_icon {
  width: 80px;
  height: 80px;
  background: var(--jnfpage-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(168, 230, 207, 0.4);
  animation: jnfpage__successIcon 0.6s ease-out;
}

.jnfpage__cookies_success_icon .material-icons {
  font-size: 3rem;
  background: var(--jnfpage-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jnfpage__cookies_success_content h3 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2.2rem;
  color: var(--jnfpage-text-dark);
  margin-bottom: 1rem;
}

.jnfpage__cookies_success_content p {
  font-size: 1.1rem;
  color: var(--jnfpage-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.jnfpage__cookies_success_details {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--jnfpage-radius-medium);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.jnfpage__cookies_success_detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(168, 230, 207, 0.3);
}

.jnfpage__cookies_success_detail:last-child {
  border-bottom: none;
}

.jnfpage__cookies_success_detail .material-icons {
  font-size: 1.5rem;
  color: #a8e6cf;
  flex-shrink: 0;
}

.jnfpage__cookies_success_detail span {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  color: var(--jnfpage-text-dark);
}

.jnfpage__cookies_success_detail strong {
  color: #78c2ad;
}

.jnfpage__cookies_success_close {
  background: var(--jnfpage-gradient-secondary);
  color: var(--jnfpage-text-light);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--jnfpage-transition-fast);
  box-shadow: 0 8px 25px rgba(168, 230, 207, 0.4);
  width: 100%;
  max-width: 300px;
}

.jnfpage__cookies_success_close:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(168, 230, 207, 0.6);
  background: linear-gradient(135deg, #78c2ad, #5aa892);
}

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

@keyframes jnfpage__successShimmer {
  0%, 100% {
    background-position: -200% 0;
  }
  50% {
    background-position: 200% 0;
  }
}

@keyframes jnfpage__successIcon {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .jnfpage__cookies_container h1 {
    font-size: 2.8rem;
  }
  
  .jnfpage__cookies_item {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .jnfpage__cookies_icon {
    align-self: center;
  }
  
  .jnfpage__cookies_control {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
  }
  
  .jnfpage__cookies_control p {
    text-align: center;
    margin: 0;
  }
  
  .jnfpage__cookies_management_container h2 {
    font-size: 2rem;
  }
  
  .jnfpage__cookies_actions {
    flex-direction: column;
    align-items: center;
  }
  
  .jnfpage__cookies_actions button {
    width: 100%;
    max-width: 300px;
  }
  
  .jnfpage__cookies_success_content {
    padding: 2rem;
    margin: 1rem;
  }
  
  .jnfpage__cookies_success_content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .jnfpage__cookies_hero {
    padding: 4rem 1rem 2rem;
  }
  
  .jnfpage__cookies_content {
    padding: 3rem 1rem;
  }
  
  .jnfpage__cookies_management {
    padding: 3rem 1rem;
  }
  
  .jnfpage__cookies_contact {
    padding: 3rem 1rem;
  }
  
  .jnfpage__cookies_container h1 {
    font-size: 2.2rem;
  }
  
  .jnfpage__cookies_intro {
    flex-direction: column;
    font-size: 1.1rem;
  }
  
  .jnfpage__cookies_management_container h2 {
    font-size: 1.8rem;
  }
  
  .jnfpage__cookies_controls {
    gap: 1rem;
  }
  
  .jnfpage__cookies_success_content {
    padding: 1.5rem;
  }
  
  .jnfpage__cookies_success_icon {
    width: 60px;
    height: 60px;
  }
  
  .jnfpage__cookies_success_icon .material-icons {
    font-size: 2.5rem;
  }

  .jnfpage__cookies_text a {
    font-size: 0.8rem;
  }

  .jnfpage__cookies_contact_link {
    flex-direction: column;
    gap: 5px;
    align-items: center;
    width: 100%;
    max-width: 280px;
    font-size: .8rem;
  }
}

.jnfpage__responsible_gaming {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 25%, #6c5ce7 50%, #a29bfe 75%, #fd79a8 100%);
  min-height: 100vh;
}

.jnfpage__responsible_hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.jnfpage__responsible_container h1 {
  font-family: 'PT Serif Caption', serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.jnfpage__responsible_intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
}

.jnfpage__responsible_intro .material-icons {
  font-size: 3rem;
  animation: jnfpage__bounce 2s ease-in-out infinite;
}

.jnfpage__responsible_content {
  padding: 5rem 2rem;
}

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

.jnfpage__responsible_card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.jnfpage__responsible_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #74b9ff, #0984e3, #6c5ce7, #a29bfe, #fd79a8);
}

.jnfpage__responsible_card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  border-color: #74b9ff;
}

.jnfpage__responsible_icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.8rem;
  box-shadow: 0 10px 25px rgba(116, 185, 255, 0.4);
  transition: all 0.3s ease;
}

.jnfpage__responsible_card:hover .jnfpage__responsible_icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(116, 185, 255, 0.6);
}

.jnfpage__responsible_card h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 1.6rem;
  color: #2d3436;
  margin-bottom: 1.5rem;
  min-height: 3.2rem;
  line-height: 1.3;
}

.jnfpage__responsible_card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #636e72;
  margin-bottom: 0;
}

.jnfpage__responsible_help {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
}

.jnfpage__responsible_help_container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.jnfpage__responsible_help_container h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.jnfpage__responsible_help_container p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.jnfpage__responsible_contacts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.jnfpage__responsible_contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  color: #2d3436;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.jnfpage__responsible_contact:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  background: white;
}

.jnfpage__responsible_contact .material-icons {
  font-size: 2.5rem;
  color: #74b9ff;
  flex-shrink: 0;
}

.jnfpage__responsible_contact div {
  text-align: left;
  flex: 1;
}

.jnfpage__responsible_contact strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.jnfpage__responsible_contact span {
  font-size: 0.9rem;
  color: #636e72;
}

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

@media (max-width: 1024px) {
  .jnfpage__responsible_wrapper {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .jnfpage__responsible_container h1 {
    font-size: 2.8rem;
  }
  
  .jnfpage__responsible_wrapper {
    grid-template-columns: 1fr;
  }
  
  .jnfpage__responsible_card {
    padding: 2.5rem 2rem;
  }
  
  .jnfpage__responsible_help_container h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .jnfpage__responsible_hero {
    padding: 4rem 1rem 2rem;
  }
  
  .jnfpage__responsible_content {
    padding: 3rem 1rem;
  }
  
  .jnfpage__responsible_container h1 {
    font-size: 2.2rem;
  }
  
  .jnfpage__responsible_intro {
    flex-direction: column;
    font-size: 1.2rem;
  }
  
  .jnfpage__responsible_card {
    padding: 2rem 1.5rem;
  }
  
  .jnfpage__responsible_contact {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .jnfpage__responsible_contact div {
    text-align: center;
  }

  .jnfpage__responsible_contact strong {
    font-size: .9rem;
  }
}

.jnfpage__about_main {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  min-height: 100vh;
}

.jnfpage__about_journey {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.jnfpage__about_svg_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.jnfpage__about_svg {
  width: 100%;
  height: 600px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.jnfpage__about_path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: jnfpage__drawPath 3s ease-in-out forwards;
}

.jnfpage__about_dot {
  opacity: 0;
  transform: scale(0);
  animation: jnfpage__popIn 0.6s ease-out forwards;
}

.jnfpage__dot1 { animation-delay: 0.5s; }
.jnfpage__dot2 { animation-delay: 1s; }
.jnfpage__dot3 { animation-delay: 1.5s; }
.jnfpage__dot4 { animation-delay: 2s; }
.jnfpage__dot5 { animation-delay: 2.5s; }
.jnfpage__dot6 { animation-delay: 3s; }

.jnfpage__about_marker {
  opacity: 0;
  animation: jnfpage__fadeInUp 0.6s ease-out forwards;
}

.jnfpage__marker1 { animation-delay: 0.7s; }
.jnfpage__marker2 { animation-delay: 1.2s; }
.jnfpage__marker3 { animation-delay: 1.7s; }
.jnfpage__marker4 { animation-delay: 2.2s; }
.jnfpage__marker5 { animation-delay: 2.7s; }
.jnfpage__marker6 { animation-delay: 3.2s; }

.jnfpage__about_journey_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  max-width: 500px;
}

.jnfpage__about_journey_content h1 {
  font-family: 'PT Serif Caption', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.jnfpage__about_journey_text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.jnfpage__about_stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.jnfpage__about_stat {
  text-align: center;
}

.jnfpage__about_number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.jnfpage__about_label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.jnfpage__about_details {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.jnfpage__about_container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.jnfpage__about_block {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.jnfpage__about_block:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.jnfpage__about_image_block {
  grid-column: 1;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.jnfpage__about_image_content {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jnfpage__about_image_placeholder {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.jnfpage__about_image_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.jnfpage__about_text_block {
  grid-column: 2;
}

.jnfpage__about_text_block h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2.5rem;
  color: #2d3436;
  margin-bottom: 1.5rem;
  text-align: center;
}

.jnfpage__about_text_block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #636e72;
  margin-bottom: 2.5rem;
  text-align: center;
}

.jnfpage__about_minicards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.jnfpage__about_minicard {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.jnfpage__about_minicard:hover {
  transform: scale(1.05);
  background: rgba(102, 126, 234, 0.2);
}

.jnfpage__about_minicard .material-icons {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.jnfpage__about_minicard p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3436;
  margin: 0;
}

.jnfpage__about_vision_block {
  grid-column: 1;
}

.jnfpage__about_vision_block h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2.5rem;
  color: #2d3436;
  margin-bottom: 1.5rem;
  text-align: center;
}

.jnfpage__about_vision_block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #636e72;
  margin-bottom: 2.5rem;
  text-align: center;
}

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

.jnfpage__about_feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(245, 87, 108, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.jnfpage__about_feature:hover {
  transform: translateX(10px);
  background: rgba(245, 87, 108, 0.2);
}

.jnfpage__about_feature .material-icons {
  font-size: 2.5rem;
  color: #f5576c;
  flex-shrink: 0;
}

.jnfpage__about_feature h3 {
  font-size: 1.3rem;
  color: #2d3436;
  margin-bottom: 0.5rem;
}

.jnfpage__about_feature p {
  font-size: 1rem;
  color: #636e72;
  margin: 0;
  text-align: left;
}

.jnfpage__about_values_block {
  grid-column: 2;
}

.jnfpage__about_values_content h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2.5rem;
  color: #2d3436;
  margin-bottom: 1.5rem;
  text-align: center;
}

.jnfpage__about_values_content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #636e72;
  margin-bottom: 2rem;
  text-align: center;
}

.jnfpage__about_values_list {
  list-style: none;
  margin-bottom: 2rem;
}

.jnfpage__about_values_list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.jnfpage__about_values_list li:hover {
  transform: translateX(5px);
  background: rgba(102, 126, 234, 0.2);
}

.jnfpage__about_values_list .material-icons {
  color: #667eea;
  flex-shrink: 0;
}

.jnfpage__about_note {
  font-size: 0.9rem;
  opacity: 0.6;
  text-align: center;
  margin: 0;
  font-style: italic;
}

@keyframes jnfpage__drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes jnfpage__popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 1024px) {
  .jnfpage__about_container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .jnfpage__about_image_block,
  .jnfpage__about_text_block,
  .jnfpage__about_vision_block,
  .jnfpage__about_values_block {
    grid-column: 1;
  }
  
  .jnfpage__about_minicards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jnfpage__about_journey_content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 2rem;
  }
  
  .jnfpage__about_svg_container {
    flex-direction: column;
    min-height: auto;
  }
  
  .jnfpage__about_svg {
    height: 400px;
  }
  
  .jnfpage__about_journey_content h1 {
    font-size: 2.5rem;
  }
  
  .jnfpage__about_block {
    padding: 2rem;
  }
  
  .jnfpage__about_minicards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .jnfpage__about_journey {
    padding: 2rem 1rem;
  }
  
  .jnfpage__about_details {
    padding: 3rem 1rem;
  }
  
  .jnfpage__about_journey_content {
    padding: 2rem;
  }
  
  .jnfpage__about_journey_content h1 {
    font-size: 2rem;
  }
  
  .jnfpage__about_stats {
    gap: 1.5rem;
  }
  
  .jnfpage__about_number {
    font-size: 2rem;
  }
  
  .jnfpage__about_feature {
    flex-direction: column;
    text-align: center;
  }
}

.jnfpage__faq_main {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  min-height: 100vh;
}

.jnfpage__faq_hero {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.jnfpage__faq_svg_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jnfpage__faq_svg {
  width: 100%;
  height: 400px;
  opacity: 0.8;
}

.jnfpage__faq_bubble {
  opacity: 0;
  transform: scale(0);
  animation: jnfpage__bubblePop 0.8s ease-out forwards;
}

.jnfpage__bubble1 { animation-delay: 0.2s; }
.jnfpage__bubble2 { animation-delay: 0.4s; }
.jnfpage__bubble3 { animation-delay: 0.6s; }
.jnfpage__bubble4 { animation-delay: 0.8s; }
.jnfpage__bubble5 { animation-delay: 1s; }

.jnfpage__faq_text {
  opacity: 0;
  animation: jnfpage__fadeIn 0.5s ease-out forwards;
}

.jnfpage__text1 { animation-delay: 0.3s; }
.jnfpage__text2 { animation-delay: 0.5s; }
.jnfpage__text3 { animation-delay: 0.7s; }
.jnfpage__text4 { animation-delay: 0.9s; }
.jnfpage__text5 { animation-delay: 1.1s; }

.jnfpage__faq_connection {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: jnfpage__drawLine 2s ease-in-out forwards;
}

.jnfpage__faq_hero_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  max-width: 600px;
  width: 90%;
}

.jnfpage__faq_hero_content h1 {
  font-family: 'PT Serif Caption', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.jnfpage__faq_hero_content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.jnfpage__faq_search {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.jnfpage__faq_search .material-icons {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #4facfe;
}

.jnfpage__faq_search input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.jnfpage__faq_search input:focus {
  outline: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transform: scale(1.02);
}

.jnfpage__faq_content {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.jnfpage__faq_container {
  max-width: 1200px;
  margin: 0 auto;
}

.jnfpage__faq_categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.jnfpage__faq_category {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.jnfpage__faq_category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.jnfpage__faq_category h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2rem;
  min-height: 122px;
  color: #2d3436;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #4facfe;
  padding-bottom: 1rem;
}

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

.jnfpage__faq_item {
  border: 2px solid #e9ecef;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.jnfpage__faq_item:hover {
  border-color: #4facfe;
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.2);
}

.jnfpage__faq_question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.jnfpage__faq_question:hover {
  background: #e9ecef;
}

.jnfpage__faq_question .material-icons {
  color: #4facfe;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.jnfpage__faq_question p {
  flex: 1;
  margin: 0;
  font-weight: 600;
  color: #2d3436;
  font-size: 1.1rem;
}

.jnfpage__faq_toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4facfe;
  transition: transform 0.3s ease;
}

.jnfpage__faq_item.active .jnfpage__faq_toggle {
  transform: rotate(45deg);
}

.jnfpage__faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: white;
}

.jnfpage__faq_item.active .jnfpage__faq_answer {
  max-height: 500px;
}

.jnfpage__faq_answer p {
  padding: 1.5rem;
  margin: 0;
  color: #636e72;
  line-height: 1.6;
  border-top: 1px solid #e9ecef;
}

.jnfpage__faq_answer a {
  color: #4facfe;
  text-decoration: none;
  font-weight: bold;
}

.jnfpage__faq_answer a:hover {
  text-decoration: underline;
}

.jnfpage__faq_support {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.jnfpage__faq_support h2 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2.5rem;
  color: #2d3436;
  margin-bottom: 1rem;
}

.jnfpage__faq_support p {
  font-size: 1.2rem;
  color: #636e72;
  margin-bottom: 2rem;
}

.jnfpage__faq_contact {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.jnfpage__faq_contact:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(79, 172, 254, 0.6);
}

.jnfpage__faq_note {
  font-size: 0.9rem;
  opacity: 0.6;
  margin: 2rem 0 0 0;
  font-style: italic;
}

@keyframes jnfpage__bubblePop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes jnfpage__drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1024px) {
  .jnfpage__faq_categories {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .jnfpage__faq_hero_content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 2rem;
  }
  
  .jnfpage__faq_svg_container {
    flex-direction: column;
    min-height: auto;
  }
  
  .jnfpage__faq_svg {
    height: 300px;
  }
  
  .jnfpage__faq_hero_content h1 {
    font-size: 2.5rem;
  }
  
  .jnfpage__faq_category {
    padding: 2rem;
  }
  
  .jnfpage__faq_question {
    padding: 1.2rem;
  }
  
  .jnfpage__faq_question p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .jnfpage__faq_hero {
    padding: 2rem 1rem;
  }
  
  .jnfpage__faq_content {
    padding: 3rem 1rem;
  }
  
  .jnfpage__faq_hero_content {
    padding: 2rem;
  }
  
  .jnfpage__faq_hero_content h1 {
    font-size: 2rem;
  }
  
  .jnfpage__faq_hero_content p {
    font-size: 1.1rem;
  }
  
  .jnfpage__faq_support {
    padding: 2rem;
  }
  
  .jnfpage__faq_support h2 {
    font-size: 2rem;
  }

  .jnfpage__faq_content,
  .jnfpage__faq_category {
    padding: .1rem;
  }
}

.jnfpage__error_404 {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 50%, #fecfef 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jnfpage__error_hero {
  padding: 2rem;
  width: 100%;
}

.jnfpage__error_container {
  max-width: 1200px;
  margin: 0 auto;
}

.jnfpage__error_content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jnfpage__error_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ff9a9e, #fecfef, #a18cd1, #fbc2eb);
  animation: jnfpage__shimmer 3s ease-in-out infinite;
}

.jnfpage__error_animation {
  margin-bottom: 3rem;
}

.jnfpage__error_number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.jnfpage__digit {
  font-family: 'PT Serif Caption', serif;
  font-size: 8rem;
  font-weight: bold;
  color: #ff6b6b;
  text-shadow: 4px 4px 0px rgba(255, 107, 107, 0.3);
  animation: jnfpage__bounce 2s ease-in-out infinite;
}

.jnfpage__digit:nth-child(1) {
  animation-delay: 0.1s;
}

.jnfpage__digit:nth-child(3) {
  animation-delay: 0.2s;
}

.jnfpage__error_icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  box-shadow: 0 15px 30px rgba(255, 154, 158, 0.4);
  animation: jnfpage__pulse 2s ease-in-out infinite;
}

.jnfpage__error_content h1 {
  font-family: 'PT Serif Caption', serif;
  font-size: 3.5rem;
  color: #2d3436;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.jnfpage__error_message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 107, 107, 0.1);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  border-left: 5px solid #ff6b6b;
}

.jnfpage__error_message .material-icons {
  font-size: 3rem;
  color: #ff6b6b;
  flex-shrink: 0;
}

.jnfpage__error_message p {
  font-size: 1.2rem;
  color: #636e72;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

.jnfpage__error_details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.jnfpage__error_detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.jnfpage__error_detail:hover {
  transform: translateY(-5px);
  border-color: #ff9a9e;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.jnfpage__error_detail .material-icons {
  font-size: 2.5rem;
  color: #ff9a9e;
  flex-shrink: 0;
  background: rgba(255, 154, 158, 0.1);
  padding: 1rem;
  border-radius: 50%;
}

.jnfpage__error_detail h3 {
  color: #2d3436;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.jnfpage__error_detail p {
  color: #636e72;
  margin: 0;
  line-height: 1.5;
}

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

.jnfpage__error_home,
.jnfpage__error_contact {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.jnfpage__error_home {
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  color: white;
}

.jnfpage__error_contact {
  background: rgba(255, 255, 255, 0.9);
  color: #2d3436;
  border: 2px solid #ff9a9e;
}

.jnfpage__error_home:hover,
.jnfpage__error_contact:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.jnfpage__error_links {
  margin-bottom: 4rem;
}

.jnfpage__error_links h3 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2rem;
  color: #2d3436;
  margin-bottom: 2rem;
}

.jnfpage__error_links_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.jnfpage__error_link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 154, 158, 0.1);
  border-radius: 15px;
  text-decoration: none;
  color: #2d3436;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.jnfpage__error_link:hover {
  background: rgba(255, 154, 158, 0.2);
  border-color: #ff9a9e;
  transform: translateY(-3px);
}

.jnfpage__error_link .material-icons {
  color: #ff9a9e;
  font-size: 1.5rem;
}

.jnfpage__error_policy {
  background: rgba(255, 255, 255, 0.8);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 154, 158, 0.3);
  text-align: left;
}

.jnfpage__error_policy h3 {
  font-family: 'PT Serif Caption', serif;
  font-size: 2rem;
  color: #2d3436;
  margin-bottom: 1.5rem;
  text-align: center;
}

.jnfpage__error_policy > p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #636e72;
  margin-bottom: 2.5rem;
  text-align: center;
}

.jnfpage__error_policy_points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.jnfpage__error_policy_point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.jnfpage__error_policy_point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.jnfpage__error_policy_point .material-icons {
  font-size: 2rem;
  color: #ff9a9e;
  flex-shrink: 0;
  background: rgba(255, 154, 158, 0.1);
  padding: 1rem;
  border-radius: 50%;
}

.jnfpage__error_policy_point h4 {
  color: #2d3436;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.jnfpage__error_policy_point p {
  color: #636e72;
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.jnfpage__error_policy_point a {
  color: #ff9a9e;
  text-decoration: none;
  font-weight: bold;
}

.jnfpage__error_policy_point a:hover {
  text-decoration: underline;
}

.jnfpage__error_contact_info {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 154, 158, 0.3);
}

.jnfpage__error_contact_info p {
  font-size: 1.1rem;
  color: #636e72;
  margin-bottom: 1.5rem;
}

.jnfpage__error_contact_link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 154, 158, 0.4);
}

.jnfpage__error_contact_link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 154, 158, 0.6);
}

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

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

@keyframes jnfpage__shimmer {
  0%, 100% {
    background-position: -200% 0;
  }
  50% {
    background-position: 200% 0;
  }
}

@media (max-width: 768px) {
  .jnfpage__error_content {
    padding: 2rem;
  }
  
  .jnfpage__error_number {
    gap: 1rem;
  }
  
  .jnfpage__digit {
    font-size: 5rem;
  }
  
  .jnfpage__error_icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .jnfpage__error_content h1 {
    font-size: 2.5rem;
  }
  
  .jnfpage__error_message {
    flex-direction: column;
    text-align: center;
  }
  
  .jnfpage__error_message p {
    text-align: center;
  }
  
  .jnfpage__error_details {
    grid-template-columns: 1fr;
  }
  
  .jnfpage__error_actions {
    flex-direction: column;
    align-items: center;
  }
  
  .jnfpage__error_home,
  .jnfpage__error_contact {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .jnfpage__error_policy_points {
    grid-template-columns: 1fr;
  }
  
  .jnfpage__error_policy_point,
  .jnfpage__error_contact_link,
  .jnfpage__error_detail {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .jnfpage__error_hero {
    padding: 1rem;
  }
  
  .jnfpage__error_content {
    padding: 1.5rem;
  }
  
  .jnfpage__error_number {
    gap: 0.5rem;
  }
  
  .jnfpage__digit {
    font-size: 4rem;
  }
  
  .jnfpage__error_icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .jnfpage__error_content h1 {
    font-size: 2rem;
  }
  
  .jnfpage__error_links_grid {
    grid-template-columns: 1fr;
  }
  
  .jnfpage__error_policy,
  .jnfpage__error_policy_point {
    padding: .5rem;
  }

  .jnfpage__error_policy_point a,
  .jnfpage__error_contact_link {
    width: 100%;
    max-width: 280px;
    font-size: 0.8rem;
  }
}