:root {
  --nmp_gradient-primary: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  --nmp_gradient-secondary: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --nmp_gradient-tertiary: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
  --nmp_gradient-quaternary: linear-gradient(135deg, #5ee7df 0%, #b490ca 100%);
  --nmp_gradient-quinary: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
  --nmp_color-accent: #ff6b6b;
  --nmp_color-dark: #2d3436;
  --nmp_color-light: #f7f7f7;
  --nmp_color-text: #2d3436;
  --nmp_color-text-light: #636e72;
  --nmp_shadow-soft: 0 8px 30px rgba(0,0,0,0.12);
  --nmp_shadow-medium: 0 15px 35px rgba(0,0,0,0.1);
  --nmp_radius-small: 12px;
  --nmp_radius-medium: 20px;
  --nmp_radius-large: 30px;
  --nmp_transition-fast: 0.3s ease;
  --nmp_transition-medium: 0.5s ease;
  --nmp_transition-slow: 0.8s ease;
}

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

body {
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1.6;
  color: var(--nmp_color-text);
  background: var(--nmp_color-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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 {
  margin-bottom: 1rem;
  min-height: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--nmp_transition-fast);
}

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

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

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

.nmp_age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 52, 54, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.nmp_age-content {
  background: white;
  padding: 3rem;
  border-radius: var(--nmp_radius-large);
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--nmp_shadow-medium);
  position: relative;
  overflow-y: auto;

}

.nmp_age-icon {
  font-size: 4rem;
  color: var(--nmp_color-accent);
  margin-bottom: 1.5rem;
}

.nmp_age-title {
  color: var(--nmp_color-dark);
  margin-bottom: 1rem;
}

.nmp_age-text {
  color: var(--nmp_color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.nmp_age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.nmp_age-confirm, .nmp_age-decline {
  padding: 1rem 2rem;
  border-radius: var(--nmp_radius-medium);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--nmp_transition-fast);
  min-width: 180px;
}

.nmp_age-confirm {
  background: var(--nmp_gradient-primary);
  color: white;
}

.nmp_age-confirm:hover {
  transform: translateY(-3px);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_age-decline {
  background: var(--nmp_color-light);
  color: var(--nmp_color-text);
  border: 2px solid var(--nmp_color-text-light);
}

.nmp_age-decline:hover {
  background: var(--nmp_color-text-light);
  color: white;
}

.nmp_age-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.nmp_age-partner img {
  border-radius: var(--nmp_radius-small);
  transition: var(--nmp_transition-fast);
}

.nmp_age-partner:hover img {
  transform: scale(1.05);
}

.nmp_age-symbol {
  margin: 0 auto;
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nmp_cookies-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--nmp_color-dark);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform var(--nmp_transition-medium);
}

.nmp_cookies-notice.active {
  transform: translateY(0);
}

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

.nmp_cookies-text {
  flex: 1;
  min-width: 300px;
}

.nmp_cookies-text a {
  color: var(--nmp_color-accent);
  text-decoration: underline;
}

.nmp_cookies-accept {
  background: var(--nmp_gradient-primary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: var(--nmp_radius-medium);
  font-weight: 600;
  white-space: nowrap;
}

.nmp_cookies-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_site-header {
  background: var(--nmp_gradient-primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--nmp_shadow-soft);
}

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

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

.nmp_header-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.nmp_header-title {
  font-family: 'Spectral', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

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

.nmp_nav-icon {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: var(--nmp_transition-fast);
}

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

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

.nmp_nav-link {
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--nmp_radius-medium);
  transition: var(--nmp_transition-fast);
}

.nmp_nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nmp_nav-actions {
  margin-left: 1rem;
}

.nmp_contact-trigger {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--nmp_radius-medium);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: var(--nmp_transition-fast);
}

.nmp_contact-trigger:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.nmp_main-content {
  overflow: hidden;
}

.nmp_welcome-section {
  background: var(--nmp_gradient-secondary);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.nmp_welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/nmp-engine/nmp-imgs/welcome-bg.webp') center/cover no-repeat;
  opacity: 0.1;
}

.nmp_welcome-content {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.nmp_welcome-title {
  color: var(--nmp_color-dark);
  margin-bottom: 1.5rem;
  font-size: 4rem;
}

.nmp_welcome-text {
  font-size: 1.3rem;
  color: var(--nmp_color-text-light);
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

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

.nmp_highlight-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--nmp_radius-large);
  box-shadow: var(--nmp_shadow-soft);
  text-align: center;
  max-width: 280px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--nmp_transition-medium);
}

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

.nmp_highlight-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_highlight-content {
  margin-bottom: 2rem;
}

.nmp_highlight-title {
  color: var(--nmp_color-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  min-height: 58px;
}

.nmp_highlight-text {
  color: var(--nmp_color-text-light);
  line-height: 1.6;
}

.nmp_highlight-icon {
  font-size: 3rem;
  color: var(--nmp_color-accent);
  margin-bottom: 1.5rem;
}

.nmp_highlight-link {
  display: inline-block;
  background: var(--nmp_gradient-primary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: var(--nmp_radius-medium);
  font-weight: 600;
  transition: var(--nmp_transition-fast);
}

.nmp_highlight-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_about-section {
  padding: 6rem 0;
  background: var(--nmp_color-light);
}

.nmp_about-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.nmp_about-visual {
  flex: 1;
  position: relative;
}

.nmp_about-image {
  border-radius: var(--nmp_radius-large);
  overflow: hidden;
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_about-image img {
  width: 100%;
  max-width: 450px;
  height: 100%;
  max-height: 450px;
  transition: var(--nmp_transition-slow);
}

.nmp_about-image:hover img {
  transform: scale(1.05);
}

.nmp_about-features {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}

.nmp_feature-bubble {
  background: var(--nmp_gradient-tertiary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--nmp_radius-medium);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--nmp_shadow-soft);
  animation: float 3s ease-in-out infinite;
}

.nmp_feature-bubble:nth-child(2) {
  animation-delay: 0.5s;
}

.nmp_feature-bubble:nth-child(3) {
  animation-delay: 1s;
}

.nmp_feature-bubble:nth-child(4) {
  animation-delay: 1.5s;
}

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

.nmp_about-content {
  flex: 1;
}

.nmp_about-title {
  color: var(--nmp_color-dark);
  margin-bottom: 2rem;
}

.nmp_about-text {
  color: var(--nmp_color-text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.nmp_about-milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.nmp_milestone {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--nmp_radius-medium);
  box-shadow: var(--nmp_shadow-soft);
  transition: var(--nmp_transition-fast);
}

.nmp_milestone:hover {
  transform: translateY(-5px);
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_milestone-icon {
  font-size: 2.5rem;
  color: var(--nmp_color-accent);
  flex-shrink: 0;
}

.nmp_milestone-content {
  flex: 1;
}

.nmp_milestone-title {
  color: var(--nmp_color-dark);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.nmp_milestone-text {
  color: var(--nmp_color-text-light);
  font-size: 0.95rem;
}

.nmp_about-cta {
  text-align: center;
}

.nmp_about-link {
  display: inline-block;
  background: var(--nmp_gradient-quaternary);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: var(--nmp_radius-medium);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--nmp_transition-medium);
}

.nmp_about-link:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_features-section {
  background: var(--nmp_gradient-tertiary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.nmp_features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/nmp-engine/nmp-imgs/features-bg.webp') center/cover no-repeat;
  opacity: 0.1;
}

.nmp_features-content {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.nmp_features-title {
  color: white;
  margin-bottom: 1.5rem;
}

.nmp_features-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.nmp_features-grid {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.nmp_feature-item {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  border-radius: var(--nmp_radius-large);
  text-align: center;
  transition: var(--nmp_transition-medium);
  backdrop-filter: blur(10px);
}

.nmp_feature-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_feature-header {
  margin-bottom: 1.5rem;
}

.nmp_feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: var(--nmp_gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.nmp_feature-name {
  color: var(--nmp_color-dark);
  font-size: 1.5rem;
}

.nmp_feature-desc {
  color: var(--nmp_color-text-light);
  line-height: 1.6;
}

.nmp_entertainment-section {
  padding: 6rem 0;
  background: var(--nmp_color-light);
}

.nmp_entertainment-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nmp_entertainment-title {
  text-align: center;
  color: var(--nmp_color-dark);
  margin-bottom: 1.5rem;
}

.nmp_entertainment-text {
  text-align: center;
  color: var(--nmp_color-text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.nmp_entertainment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.nmp_activity-card {
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: var(--nmp_radius-large);
  overflow: hidden;
  box-shadow: var(--nmp_shadow-soft);
  transition: var(--nmp_transition-medium);
  position: relative;
}

.nmp_activity-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_activity-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--nmp_gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--nmp_radius-medium);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.nmp_activity-image {
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 220px;
  overflow: hidden;
}

.nmp_activity-image img {
  width: 100%;
  height: 100%;
  transition: var(--nmp_transition-slow);
}

.nmp_activity-card:hover .nmp_activity-image img {
  transform: scale(1.1);
}

.nmp_activity-content {
  padding: 2rem;
}

.nmp_activity-name {
  color: var(--nmp_color-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.nmp_activity-desc {
  color: var(--nmp_color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.nmp_activity-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.nmp_activity-rating, .nmp_activity-players {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--nmp_color-text-light);
  font-weight: 600;
}

.nmp_activity-rating i, .nmp_activity-players i {
  color: var(--nmp_color-accent);
}

.nmp_activity-link {
  display: block;
  text-align: center;
  background: var(--nmp_gradient-quaternary);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--nmp_radius-medium);
  font-weight: 600;
  transition: var(--nmp_transition-fast);
}

.nmp_activity-link:hover {
  background: var(--nmp_gradient-primary);
  transform: translateY(-3px);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_subscription-modal, .nmp_contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 52, 54, 0.9);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--nmp_transition-medium);
  overflow-y: auto;
}

.nmp_subscription-modal.active, .nmp_contact-modal.active {
  opacity: 1;
  visibility: visible;
}

.nmp_subscription-content, .nmp_contact-content {
  background: white;
  border-radius: var(--nmp_radius-large);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--nmp_shadow-medium);
  transform: scale(0.9);
  transition: transform var(--nmp_transition-medium);
}

.nmp_subscription-modal.active .nmp_subscription-content,
.nmp_contact-modal.active .nmp_contact-content {
  transform: scale(1);
}

.nmp_subscription-close, .nmp_contact-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--nmp_color-text-light);
  background: rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--nmp_transition-fast);
  z-index: 1;
}

.nmp_subscription-close:hover, .nmp_contact-close:hover {
  background: var(--nmp_color-accent);
  color: white;
  transform: rotate(90deg);
}

.nmp_subscription-header {
  padding: 3rem 3rem 2rem;
  text-align: center;
  background: var(--nmp_gradient-quinary);
  border-radius: var(--nmp_radius-large) var(--nmp_radius-large) 0 0;
}

.nmp_subscription-title {
  color: var(--nmp_color-dark);
  margin-bottom: 1rem;
}

.nmp_subscription-text {
  color: var(--nmp_color-text-light);
  font-size: 1.1rem;
}

.nmp_subscription-benefits {
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.nmp_benefit-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--nmp_color-light);
  border-radius: var(--nmp_radius-medium);
  transition: var(--nmp_transition-fast);
}

.nmp_benefit-item:hover {
  transform: translateX(5px);
  background: white;
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_benefit-icon {
  font-size: 2rem;
  color: var(--nmp_color-accent);
  flex-shrink: 0;
}

.nmp_benefit-content {
  flex: 1;
}

.nmp_benefit-title {
  color: var(--nmp_color-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.nmp_benefit-text {
  color: var(--nmp_color-text-light);
  font-size: 0.95rem;
}

.nmp_subscription-form {
  padding: 0 3rem 3rem;
}

.nmp_form-group {
  margin-bottom: 1.5rem;
}

.nmp_form-input, .nmp_form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--nmp_radius-medium);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--nmp_transition-fast);
  background: white;
}

.nmp_form-input:focus, .nmp_form-textarea:focus {
  outline: none;
  border-color: var(--nmp_color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
  transform: translateY(-2px);
}

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

.nmp_checkbox-label {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  color: var(--nmp_color-text);
  font-size: 0.95rem;
}

.nmp_checkbox-label a {
  color: var(--nmp_color-accent);
  text-decoration: underline;
}

.nmp_form-checkbox {
  display: none;
}

.nmp_checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: var(--nmp_transition-fast);
  margin-top: 0.1rem;
}

.nmp_form-checkbox:checked + .nmp_checkbox-custom {
  background: var(--nmp_color-accent);
  border-color: var(--nmp_color-accent);
}

.nmp_form-checkbox:checked + .nmp_checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.nmp_form-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.nmp_form-submit {
  width: 100%;
  background: var(--nmp_gradient-primary);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: var(--nmp_radius-medium);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--nmp_transition-fast);
}

.nmp_form-submit:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_form-submit:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
}

.nmp_subscription-success, .nmp_unsubscribe-success, .nmp_contact-success {
  padding: 3rem;
  text-align: center;
  display: none;
}

.nmp_subscription-success.active, .nmp_unsubscribe-success.active, .nmp_contact-success.active {
  display: block;
}

.nmp_success-icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 1.5rem;
}

.nmp_success-title {
  color: var(--nmp_color-dark);
  margin-bottom: 1rem;
}

.nmp_success-text {
  color: var(--nmp_color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.nmp_success-home, .nmp_success-unsubscribe, .nmp_success-close {
  padding: 1rem 2rem;
  border-radius: var(--nmp_radius-medium);
  font-weight: 600;
  transition: var(--nmp_transition-fast);
  min-width: 160px;
}

.nmp_success-home, .nmp_success-close {
  background: var(--nmp_gradient-primary);
  color: white;
}

.nmp_success-home:hover, .nmp_success-close:hover {
  transform: translateY(-3px);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_success-unsubscribe {
  background: var(--nmp_color-light);
  color: var(--nmp_color-text);
  border: 2px solid var(--nmp_color-text-light);
}

.nmp_success-unsubscribe:hover {
  background: var(--nmp_color-text-light);
  color: white;
}

.nmp_community-section {
  background: var(--nmp_gradient-quaternary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.nmp_community-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/nmp-engine/nmp-imgs/community-bg.webp') center/cover no-repeat;
  opacity: 0.1;
}

.nmp_community-content {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.nmp_community-title {
  color: white;
  margin-bottom: 1.5rem;
}

.nmp_community-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.nmp_community-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  border-radius: var(--nmp_radius-large);
  text-align: center;
  transition: var(--nmp_transition-medium);
  backdrop-filter: blur(10px);
}

.nmp_community-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_community-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--nmp_gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nmp_community-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nmp_stat-number {
  font-family: 'Spectral', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--nmp_color-dark);
}

.nmp_stat-label {
  color: var(--nmp_color-text-light);
  font-weight: 600;
}

.nmp_community-cta {
  text-align: center;
}

.nmp_community-link {
  display: inline-block;
  background: white;
  color: var(--nmp_color-dark);
  padding: 1.2rem 3rem;
  border-radius: var(--nmp_radius-medium);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--nmp_transition-medium);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_community-link:hover {
  background: var(--nmp_color-dark);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_faq-section {
  padding: 6rem 0;
  background: var(--nmp_color-light);
}

.nmp_faq-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nmp_faq-title {
  text-align: center;
  color: var(--nmp_color-dark);
  margin-bottom: 1.5rem;
}

.nmp_faq-text {
  text-align: center;
  color: var(--nmp_color-text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 4rem;
}

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

.nmp_faq-category {
  background: white;
  padding: 2.5rem;
  border-radius: var(--nmp_radius-large);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_faq-category-title {
  color: var(--nmp_color-dark);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--nmp_color-light);
}

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

.nmp_faq-item {
  border: 1px solid #e0e0e0;
  border-radius: var(--nmp_radius-medium);
  overflow: hidden;
  transition: var(--nmp_transition-fast);
}

.nmp_faq-item.active {
  border-color: var(--nmp_color-accent);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.1);
}

.nmp_faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: var(--nmp_transition-fast);
}

.nmp_faq-question:hover {
  background: var(--nmp_color-light);
}

.nmp_faq-question span {
  font-weight: 600;
  color: var(--nmp_color-dark);
  flex: 1;
  margin-right: 1rem;
}

.nmp_faq-question i {
  color: var(--nmp_color-accent);
  transition: var(--nmp_transition-fast);
  flex-shrink: 0;
}

.nmp_faq-item.active .nmp_faq-question i {
  transform: rotate(45deg);
}

.nmp_faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--nmp_transition-medium);
}

.nmp_faq-item.active .nmp_faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.nmp_faq-answer p {
  color: var(--nmp_color-text-light);
  line-height: 1.6;
  margin: 0;
}

.nmp_faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background: white;
  border-radius: var(--nmp_radius-large);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_faq-cta p {
  color: var(--nmp_color-text);
  margin: 0;
}

.nmp_faq-cta button {
  background: none;
  border: none;
  color: var(--nmp_color-accent);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
  transition: var(--nmp_transition-fast);
}

.nmp_faq-cta button:hover {
  color: var(--nmp_color-dark);
}

.nmp_testimonials-section {
  padding: 6rem 0;
  background: var(--nmp_gradient-quinary);
}

.nmp_testimonials-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nmp_testimonials-title {
  text-align: center;
  color: var(--nmp_color-dark);
  margin-bottom: 1.5rem;
}

.nmp_testimonials-text {
  text-align: center;
  color: var(--nmp_color-text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 4rem;
}

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

.nmp_testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--nmp_radius-large);
  box-shadow: var(--nmp_shadow-soft);
  transition: var(--nmp_transition-medium);
  position: relative;
  overflow: hidden;
}

.nmp_testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--nmp_gradient-primary);
}

.nmp_testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_testimonial-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.nmp_testimonial-avatar {
  flex-shrink: 0;
}

.nmp_testimonial-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--nmp_color-light);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_testimonial-info {
  flex: 1;
}

.nmp_testimonial-name {
  color: var(--nmp_color-dark);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.nmp_testimonial-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--nmp_color-text-light);
  font-size: 0.9rem;
}

.nmp_testimonial-location i {
  color: var(--nmp_color-accent);
}

.nmp_testimonial-rating {
  display: flex;
  gap: 0.2rem;
  color: #ffd700;
  font-size: 1.1rem;
}

.nmp_testimonial-content {
  margin-bottom: 2rem;
}

.nmp_testimonial-content p {
  color: var(--nmp_color-text);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.nmp_testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.nmp_testimonial-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--nmp_color-text-light);
  font-size: 0.9rem;
}

.nmp_testimonial-date i {
  color: var(--nmp_color-accent);
}

.nmp_testimonial-icon {
  font-size: 1.5rem;
  color: var(--nmp_color-accent);
}

.nmp_responsibility-section {
  padding: 6rem 0;
  background: var(--nmp_color-dark);
  color: white;
}

.nmp_responsibility-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.nmp_responsibility-title {
  color: white;
  margin-bottom: 3rem;
}

.nmp_responsibility-content {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: left;
}

.nmp_responsibility-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.nmp_responsibility-links {
  list-style: none;
  margin-top: 2rem;
}

.nmp_responsibility-links li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.nmp_responsibility-links li::before {
  content: '•';
  color: var(--nmp_color-accent);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

.nmp_responsibility-links a {
  color: var(--nmp_color-accent);
  text-decoration: underline;
  transition: var(--nmp_transition-fast);
}

.nmp_responsibility-links a:hover {
  color: white;
}

.nmp_responsibility-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.nmp_responsibility-partner img {
  border-radius: var(--nmp_radius-small);
  transition: var(--nmp_transition-fast);
  border: 2px solid transparent;
}

.nmp_responsibility-partner:hover img {
  transform: scale(1.05);
  border-color: var(--nmp_color-accent);
}

.nmp_responsibility-symbol {
  display: inline-block;
  background: white;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.nmp_contact-form-section {
  padding: 3rem;
  border-right: 1px solid #e0e0e0;
}

.nmp_contact-info {
  padding: 3rem;
  background: var(--nmp_color-light);
}

.nmp_contact-title {
  color: var(--nmp_color-dark);
  margin-bottom: 1rem;
}

.nmp_contact-text {
  color: var(--nmp_color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.nmp_info-title {
  color: var(--nmp_color-dark);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.nmp_contact-methods {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.5rem;
}

.nmp_contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--nmp_radius-medium);
  transition: var(--nmp_transition-fast);
}

.nmp_contact-method:hover {
  transform: translateX(5px);
  box-shadow: var(--nmp_shadow-soft);
}

.nmp_method-icon {
  font-size: 2rem;
  color: var(--nmp_color-accent);
  flex-shrink: 0;
}

.nmp_method-content {
  flex: 1;
}

.nmp_method-title {
  color: var(--nmp_color-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.nmp_method-text {
  color: var(--nmp_color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.nmp_method-link {
  color: var(--nmp_color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--nmp_transition-fast);
}

.nmp_method-link:hover {
  color: var(--nmp_color-dark);
}

.nmp_site-footer {
  background: var(--nmp_gradient-primary);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.nmp_site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/nmp-engine/nmp-imgs/footer-bg.webp') center/cover no-repeat;
  opacity: 0.1;
}

.nmp_footer-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.nmp_footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.nmp_footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 250px;
}

.nmp_footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.nmp_footer-title {
  font-family: 'Spectral', serif;
  font-size: 2rem;
  font-weight: 700;
}

.nmp_footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  flex: 2;
}

.nmp_footer-column {
  min-width: 180px;
}

.nmp_footer-heading {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.nmp_footer-list {
  list-style: none;
}

.nmp_footer-list li {
  margin-bottom: 0.8rem;
}

.nmp_footer-list a, .nmp_footer-list button {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--nmp_transition-fast);
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.nmp_footer-list a:hover, .nmp_footer-list button:hover {
  color: white;
  transform: translateX(5px);
}

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

.nmp_footer-copyright p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

.nmp_footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--nmp_transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nmp_footer-legal a:hover {
  color: white;
  transform: translateY(-2px);
}

.nmp_scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--nmp_gradient-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--nmp_transition-medium);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: var(--nmp_shadow-soft);
}

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

.nmp_scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--nmp_shadow-medium);
}

.nmp_subscription-modal,
.nmp_contact-modal {
  scrollbar-width: thin;
  scrollbar-color: rgba(102, 126, 234, 0.3) transparent;
}

.nmp_subscription-modal:hover,
.nmp_contact-modal:hover {
  scrollbar-color: rgba(102, 126, 234, 0.5) transparent;
}

.nmp_subscription-modal::-webkit-scrollbar,
.nmp_contact-modal::-webkit-scrollbar {
  width: 8px;
}

.nmp_subscription-modal::-webkit-scrollbar-track,
.nmp_contact-modal::-webkit-scrollbar-track {
  background: transparent;
}

.nmp_subscription-modal::-webkit-scrollbar-thumb,
.nmp_contact-modal::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.3);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nmp_subscription-modal:hover::-webkit-scrollbar-thumb,
.nmp_contact-modal:hover::-webkit-scrollbar-thumb {
  opacity: 1;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
    min-height: 3.6rem;
  }
  
  h2 {
    font-size: 2.4rem;
    min-height: 2.9rem;
  }
  
  .nmp_about-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .nmp_about-features {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .nmp_contact-main {
    grid-template-columns: 1fr;
  }
  
  .nmp_contact-form-section {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  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;
  }
  
  .nmp_nav-toggle {
    display: flex;
  }
  
  .nmp_header-nav {
    position: fixed;
    top: -50%;
    left: 0;
    width: 100%;
    background: var(--nmp_gradient-primary);
    flex-direction: column;
    padding: 2rem;
    transition: var(--nmp_transition-medium);
    box-shadow: var(--nmp_shadow-medium);
  }
  
  .nmp_header-nav.active {
    top: 6.3%;
  }
  
  .nmp_nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  
  .nmp_nav-actions {
    margin-left: 0;
    width: 100%;
  }
  
  .nmp_contact-trigger {
    justify-content: center;
    width: 100%;
  }
  
  .nmp_welcome-title {
    font-size: 2.8rem;
  }
  
  .nmp_about-milestones {
    grid-template-columns: 1fr;
  }
  
  .nmp_features-grid {
    grid-template-columns: 1fr;
  }
  
  .nmp_entertainment-grid {
    grid-template-columns: 1fr;
  }
  
  .nmp_subscription-benefits,
  .nmp_contact-form-section,
  .nmp_contact-info {
    grid-template-columns: 1fr;
    padding: 2rem 0.3rem;
  }
  
  .nmp_faq-grid {
    grid-template-columns: 1fr;
  }
  
  .nmp_testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .nmp_footer-main {
    flex-direction: column;
    text-align: center;
  }
  
  .nmp_footer-brand {
    justify-content: center;
  }
  
  .nmp_footer-links {
    justify-content: center;
  }
  
  .nmp_footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .nmp_age-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .nmp_age-confirm, .nmp_age-decline {
    width: 100%;
    max-width: 280px;
  }
  
  .nmp_age-partners {
    flex-direction: column;
    align-items: center;
  }
  
  .nmp_cookies-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  h1 {
    font-size: 2rem;
    min-height: 2.4rem;
  }
  
  h2 {
    font-size: 1.7rem;
    min-height: 2rem;
  }
  
  .nmp_welcome-section, .nmp_about-section, .nmp_features-section, 
  .nmp_entertainment-section, .nmp_community-section, .nmp_faq-section,
  .nmp_testimonials-section, .nmp_responsibility-section {
    padding: 4rem 0;
  }
  
  .nmp_welcome-title {
    font-size: 2.2rem;
  }
  
  .nmp_highlight-card, .nmp_feature-item, .nmp_activity-card, 
  .nmp_community-card, .nmp_testimonial-card {
    max-width: 100%;
  }
  
  .nmp_subscription-content, .nmp_contact-content {
    margin: 1rem;
  }
  
  .nmp_subscription-header, .nmp_subscription-benefits, 
  .nmp_subscription-form, .nmp_contact-form-section, 
  .nmp_contact-info {
    padding: 2rem 0.5rem;
  }

  .nmp_age-verification {
    align-items: flex-start;
  }
  
  .nmp_age-content {
    padding: 2rem 1rem;
    margin: 1rem;
  }
  
  .nmp_footer-container, .nmp_header-container, 
  .nmp_welcome-content, .nmp_about-container, 
  .nmp_features-content, .nmp_entertainment-container,
  .nmp_community-content, .nmp_faq-container,
  .nmp_testimonials-container, .nmp_responsibility-container {
    padding: 0 0.5rem;
  }

  .nmp_contact-modal,
  .nmp_subscription-modal {
    padding: 2rem 0.3rem;
  }

  .nmp_subscription-title,
  .nmp_contact-title {
    margin-top: 2.5rem;
  }

  .nmp_contact-method {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 363px) {
  .nmp_header-nav.active {
    top: 9.5%;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 0.3rem;
  }
  
  h1 {
    font-size: 1.8rem;
    min-height: 2.2rem;
  }
  
  h2 {
    font-size: 1.5rem;
    min-height: 1.8rem;
  }
  
  .nmp_welcome-section, .nmp_about-section, .nmp_features-section, 
  .nmp_entertainment-section, .nmp_community-section, .nmp_faq-section,
  .nmp_testimonials-section, .nmp_responsibility-section {
    padding: 3rem 0;
  }
  
  .nmp_footer-container, .nmp_header-container, 
  .nmp_welcome-content, .nmp_about-container, 
  .nmp_features-content, .nmp_entertainment-container,
  .nmp_community-content, .nmp_faq-container,
  .nmp_testimonials-container, .nmp_responsibility-container {
    padding: 0 0.3rem;
  }
  
  .nmp_subscription-content, .nmp_contact-content {
    margin: 0.5rem;
  }
  
  .nmp_age-content {
    margin: 0.5rem;
    padding: 1.5rem 1rem;
  }
}

.nmppages_privacy-content {
  position: relative;
  overflow-x: hidden;
}

.nmppages_privacy-hero {
  padding: 6rem 0 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.nmppages_privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nmppages_privacy-title {
  font-family: 'Spectral', serif;
  font-size: 3.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.nmppages_privacy-intro {
  font-size: 1.3rem;
  color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.2s both;
}

.nmppages_privacy-main {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

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

.nmppages_privacy-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.nmppages_privacy-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 1);
}

.nmppages_privacy-icon {
  font-size: 2.5rem;
  color: #667eea;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.nmppages_privacy-content {
  flex: 1;
}

.nmppages_privacy-heading {
  font-family: 'Spectral', serif;
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.nmppages_privacy-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 4.5rem;
}

.nmppages_privacy-text a {
  color: #667eea;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nmppages_privacy-text a:hover {
  color: #764ba2;
}

.nmppages_privacy-contact {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 2;
}

.nmppages_privacy-contact-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 25px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

.nmppages_contact-icon {
  font-size: 4rem;
  color: #667eea;
  margin-bottom: 1.5rem;
}

.nmppages_contact-title {
  font-family: 'Spectral', serif;
  font-size: 2rem;
  color: #2d3748;
  margin-bottom: 1rem;
}

.nmppages_contact-text {
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.nmppages_contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.nmppages_contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.6);
}

.nmppages_privacy-contact-card,
.nmppages_privacy-grid {
  scrollbar-width: thin;
  scrollbar-color: rgba(102, 126, 234, 0.3) transparent;
}

.nmppages_privacy-contact-card:hover,
.nmppages_privacy-grid:hover {
  scrollbar-color: rgba(102, 126, 234, 0.5) transparent;
}

.nmppages_privacy-contact-card::-webkit-scrollbar,
.nmppages_privacy-grid::-webkit-scrollbar {
  width: 6px;
}

.nmppages_privacy-contact-card::-webkit-scrollbar-track,
.nmppages_privacy-grid::-webkit-scrollbar-track {
  background: transparent;
}

.nmppages_privacy-contact-card::-webkit-scrollbar-thumb,
.nmppages_privacy-grid::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.3);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nmppages_privacy-contact-card:hover::-webkit-scrollbar-thumb,
.nmppages_privacy-grid:hover::-webkit-scrollbar-thumb {
  opacity: 1;
}

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

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

@media (max-width: 768px) {
  .nmppages_privacy-title {
    font-size: 2.5rem;
  }
  
  .nmppages_privacy-intro {
    font-size: 1.1rem;
  }
  
  .nmppages_privacy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .nmppages_privacy-item {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .nmppages_privacy-container {
    padding: 0 1rem;
  }
  
  .nmppages_privacy-icon {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .nmppages_privacy-hero {
    padding: 4rem 0 3rem;
  }
  
  .nmppages_privacy-title {
    font-size: 2rem;
  }
  
  .nmppages_privacy-container {
    padding: 0 0.5rem;
  }
  
  .nmppages_privacy-contact-card {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }
  
  .nmppages_privacy-item {
    padding: 1.5rem;
  }
}

.nmppages_terms-contents {
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.nmppages_terms-hero {
  padding: 6rem 0 4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.nmppages_terms-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nmppages_terms-title {
  font-family: 'Spectral', serif;
  font-size: 3.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInDown 1s ease;
}

.nmppages_terms-intro {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: slideInDown 1s ease 0.2s both;
}

.nmppages_terms-main {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.nmppages_terms-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nmppages_terms-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nmppages_terms-item.active {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

.nmppages_terms-header {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.nmppages_terms-header:hover {
  background: rgba(255, 255, 255, 0.8);
}

.nmppages_terms-icon {
  font-size: 2rem;
  color: #ff6b6b;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.nmppages_terms-heading {
  font-family: 'Spectral', serif;
  font-size: 1.4rem;
  color: #2d3748;
  margin: 0;
  flex: 1;
  min-height: 2.2rem;
}

.nmppages_terms-toggle {
  font-size: 1.5rem;
  color: #ff6b6b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nmppages_terms-item.active .nmppages_terms-toggle {
  transform: rotate(45deg);
}

.nmppages_terms-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(255, 255, 255, 0.7);
}

.nmppages_terms-content-inner {
  padding: 0 2.5rem 2rem;
}

.nmppages_terms-item.active .nmppages_terms-content {
  max-height: 500px;
}

.nmppages_terms-content p {
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  min-height: 3.5rem;
}

.nmppages_terms-content a {
  color: #ff6b6b;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nmppages_terms-content a:hover {
  color: #e55c5c;
}

.nmppages_terms-actions {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 2;
}

.nmppages_actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.nmppages_action-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nmppages_action-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nmppages_action-card i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nmppages_action-card h3 {
  font-family: 'Spectral', serif;
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  min-height: 2.2rem;
}

.nmppages_action-card p {
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
  min-height: 3rem;
}

.nmppages_action-link {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.nmppages_action-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

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

@media (max-width: 768px) {
  .nmppages_terms-title {
    font-size: 2.5rem;
  }
  
  .nmppages_terms-intro {
    font-size: 1.1rem;
  }
  
  .nmppages_terms-header {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .nmppages_terms-content-inner {
    padding: 0 1.5rem 1.5rem;
  }
  
  .nmppages_terms-container {
    padding: 0 1rem;
  }
  
  .nmppages_actions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .nmppages_action-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .nmppages_terms-hero {
    padding: 4rem 0 3rem;
  }
  
  .nmppages_terms-title {
    font-size: 2rem;
  }
  
  .nmppages_terms-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .nmppages_terms-container {
    padding: 0 0.5rem;
  }
  
  .nmppages_action-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
}

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

.nmppages_cookies-hero {
  padding: 6rem 0 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nmppages_cookies-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nmppages_cookies-title {
  font-family: 'Spectral', serif;
  font-size: 3.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease;
}

.nmppages_cookies-intro {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: bounceIn 1s ease 0.2s both;
}

.nmppages_cookies-main {
  padding: 4rem 0;
}

.nmppages_cookies-steps {
  position: relative;
}

.nmppages_step-tracker {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.nmppages_step-progress {
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
  z-index: 1;
}

.nmppages_step-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33.33%;
  background: white;
  transition: width 0.3s ease;
}

.nmppages_step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  flex: 1;
}

.nmppages_step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.nmppages_step-item.active .nmppages_step-number {
  background: white;
  color: #4facfe;
  border-color: #4facfe;
  transform: scale(1.1);
}

.nmppages_step-label {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

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

.nmppages_cookie-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.nmppages_cookie-card::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.5s ease;
}

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

.nmppages_cookie-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.nmppages_cookie-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nmppages_cookie-heading {
  font-family: 'Spectral', serif;
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.nmppages_cookie-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 4.5rem;
}

.nmppages_cookie-text a {
  color: #4facfe;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nmppages_cookie-text a:hover {
  color: #0099cc;
}

.nmppages_cookies-control {
  padding: 4rem 0 6rem;
}

.nmppages_control-panel {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 25px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nmppages_control-title {
  font-family: 'Spectral', serif;
  font-size: 2rem;
  color: #2d3748;
  text-align: center;
  margin-bottom: 2rem;
}

.nmppages_control-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.nmppages_control-option {
  padding: 1.5rem;
  background: rgba(79, 172, 254, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(79, 172, 254, 0.2);
}

.nmppages_control-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.nmppages_control-label input {
  display: none;
}

.nmppages_control-custom {
  width: 24px;
  height: 24px;
  border: 2px solid #4facfe;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
}

.nmppages_control-label input:checked + .nmppages_control-custom {
  background: #4facfe;
  border-color: #4facfe;
}

.nmppages_control-label input:checked + .nmppages_control-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.nmppages_control-label input:disabled + .nmppages_control-custom {
  background: #cbd5e0;
  border-color: #a0aec0;
  cursor: not-allowed;
}

.nmppages_control-desc {
  color: #4a5568;
  font-size: 0.9rem;
  margin: 0;
  padding-left: 2.5rem;
}

.nmppages_control-save {
  width: 100%;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.nmppages_control-save:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.6);
}

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

@media (max-width: 768px) {
  .nmppages_cookies-title {
    font-size: 2.5rem;
  }
  
  .nmppages_cookies-intro {
    font-size: 1.1rem;
  }
  
  .nmppages_step-tracker {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nmppages_step-progress {
    display: none;
  }
  
  .nmppages_cookies-grid {
    grid-template-columns: 1fr;
  }
  
  .nmppages_cookies-container {
    padding: 0 1rem;
  }
  
  .nmppages_control-panel {
    padding: 2rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .nmppages_cookies-hero {
    padding: 4rem 0 3rem;
  }
  
  .nmppages_cookies-title {
    font-size: 2rem;
  }
  
  .nmppages_cookie-card {
    padding: 2rem 1.5rem;
  }
  
  .nmppages_cookies-container {
    padding: 0 0.5rem;
  }
  
  .nmppages_control-panel {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
}

.nmppages_responsible-content {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  min-height: 100vh;
}

.nmppages_responsible-hero {
  padding: 6rem 0 4rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nmppages_responsible-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nmppages_responsible-title {
  font-family: 'Spectral', serif;
  font-size: 3.5rem;
  color: #2d3748;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: zoomIn 1s ease;
}

.nmppages_responsible-intro {
  font-size: 1.3rem;
  color: #4a5568;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: zoomIn 1s ease 0.2s both;
}

.nmppages_responsible-features {
  padding: 4rem 0;
}

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

.nmppages_feature-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

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

.nmppages_feature-visual {
  position: relative;
  margin-bottom: 2rem;
}

.nmppages_feature-box i {
  font-size: 4rem;
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.nmppages_feature-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(168, 237, 234, 0.3);
  animation: pulse 2s infinite;
}

.nmppages_feature-title {
  font-family: 'Spectral', serif;
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  min-height: 2.2rem;
}

.nmppages_feature-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 4rem;
}

.nmppages_responsible-main {
  padding: 4rem 0;
}

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

.nmppages_responsible-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

.nmppages_responsible-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.nmppages_responsible-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(168, 237, 234, 0.3);
}

.nmppages_responsible-number {
  font-family: 'Spectral', serif;
  font-size: 2rem;
  font-weight: bold;
  color: rgba(45, 55, 72, 0.2);
}

.nmppages_responsible-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nmppages_responsible-heading {
  font-family: 'Spectral', serif;
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.nmppages_responsible-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 4.5rem;
}

.nmppages_responsible-text a {
  color: #a8edea;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nmppages_responsible-text a:hover {
  color: #7dd1cc;
}

.nmppages_responsible-partners {
  padding: 4rem 0 6rem;
}

.nmppages_partners-title {
  font-family: 'Spectral', serif;
  font-size: 2.5rem;
  color: #2d3748;
  text-align: center;
  margin-bottom: 3rem;
}

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

.nmppages_partner-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 15px;
  text-decoration: none;
  color: #2d3748;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.nmppages_partner-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.nmppages_partner-link i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .nmppages_responsible-title {
    font-size: 2.5rem;
  }
  
  .nmppages_responsible-intro {
    font-size: 1.1rem;
  }
  
  .nmppages_features-grid {
    grid-template-columns: 1fr;
  }
  
  .nmppages_responsible-grid {
    grid-template-columns: 1fr;
  }
  
  .nmppages_responsible-container {
    padding: 0 1rem;
  }
  
  .nmppages_partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nmppages_responsible-hero {
    padding: 4rem 0 3rem;
  }
  
  .nmppages_responsible-title {
    font-size: 2rem;
  }
  
  .nmppages_feature-box {
    padding: 2rem 1.5rem;
  }
  
  .nmppages_responsible-card {
    padding: 2rem 1.5rem;
  }
  
  .nmppages_responsible-container {
    padding: 0 0.5rem;
  }
  
  .nmppages_partners-title {
    font-size: 2rem;
  }
}

.nmppages_404-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.nmppages_404-hero {
  padding: 6rem 0 4rem;
  position: relative;
  z-index: 2;
}

.nmppages_404-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.nmppages_404-animation {
  position: relative;
  height: 200px;
  margin-bottom: 3rem;
}

.nmppages_404-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: orbit 8s linear infinite;
}

.nmppages_404-planet {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.nmppages_404-moon {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: moonOrbit 4s linear infinite;
}

.nmppages_404-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nmppages_404-star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.nmppages_404-star:nth-child(1) {
  top: 20%;
  left: 20%;
  width: 3px;
  height: 3px;
  animation-delay: 0s;
}

.nmppages_404-star:nth-child(2) {
  top: 60%;
  left: 80%;
  width: 2px;
  height: 2px;
  animation-delay: 0.5s;
}

.nmppages_404-star:nth-child(3) {
  top: 80%;
  left: 40%;
  width: 4px;
  height: 4px;
  animation-delay: 1s;
}

.nmppages_404-star:nth-child(4) {
  top: 30%;
  left: 70%;
  width: 2px;
  height: 2px;
  animation-delay: 1.5s;
}

.nmppages_404-star:nth-child(5) {
  top: 70%;
  left: 20%;
  width: 3px;
  height: 3px;
  animation-delay: 2s;
}

.nmppages_404-title {
  font-family: 'Spectral', serif;
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: bounce 2s ease infinite;
}

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

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

.nmppages_404-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nmppages_404-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
}

.nmppages_404-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: white;
}

.nmppages_404-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.nmppages_404-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.3);
}

.nmppages_404-suggestions {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nmppages_suggestions-title {
  font-family: 'Spectral', serif;
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.nmppages_suggestions-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.nmppages_suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.nmppages_suggestion-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nmppages_suggestion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.nmppages_suggestion-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nmppages_suggestion-heading {
  font-family: 'Spectral', serif;
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 1rem;
  min-height: 3.2rem;
}

.nmppages_suggestion-desc {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  min-height: 8.5rem;
}

.nmppages_suggestion-link {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

@keyframes orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes moonOrbit {
  from {
    transform: translateY(-50%) rotate(0deg) translateX(60px) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

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

@media (max-width: 768px) {
  .nmppages_404-title {
    font-size: 3rem;
  }
  
  .nmppages_404-text {
    font-size: 1.1rem;
  }
  
  .nmppages_404-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .nmppages_404-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .nmppages_suggestions-grid {
    grid-template-columns: 1fr;
  }
  
  .nmppages_404-container {
    padding: 0 1rem;
  }
  
  .nmppages_search-box {
    padding: 2rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .nmppages_404-hero {
    padding: 4rem 0 3rem;
  }
  
  .nmppages_404-title {
    font-size: 2.5rem;
  }
  
  .nmppages_404-animation {
    height: 150px;
  }
  
  .nmppages_404-orbit {
    width: 100px;
    height: 100px;
  }
  
  .nmppages_suggestion-card {
    padding: 2rem 1.5rem;
  }
  
  .nmppages_404-container {
    padding: 0 0.5rem;
  }
  
  .nmppages_search-box {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .nmppages_search-form {
    flex-direction: column;
  }
}