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

:root {
  --pof_gradient-primary: linear-gradient(135deg, #ff2d75 0%, #7e3bdf 50%, #00c2ff 100%);
  --pof_gradient-secondary: linear-gradient(45deg, #ff9a00 0%, #ff2d75 50%, #7e3bdf 100%);
  --pof_gradient-tertiary: linear-gradient(90deg, #00c2ff 0%, #00ff95 50%, #ff9a00 100%);
  --pof_gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --pof_color-accent: #ff2d75;
  --pof_color-secondary: #7e3bdf;
  --pof_color-highlight: #00ff95;
  --pof_color-text: #ffffff;
  --pof_color-background: #0a0a18;
  --pof_shadow-glow: 0 0 20px rgba(255, 45, 117, 0.5);
  --pof_shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.2);
  --pof_transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: 'Muli', sans-serif;
  background: var(--pof_gradient-dark);
  color: var(--pof_color-text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.pof_page-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.pof_navigation-header {
  background: rgba(10, 10, 24, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pof_logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pof_logo-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: pof_logo-spin 8s linear infinite;
}

@keyframes pof_logo-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pof_brand-name {
  font-family: 'Dosis', sans-serif;
  font-size: 1.5rem;
  background: var(--pof_gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.pof_main-navigation {
  display: flex;
}

.pof_nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.pof_nav-link {
  text-decoration: none;
  color: var(--pof_color-text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--pof_transition-smooth);
}

.pof_nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pof_gradient-primary);
  transition: var(--pof_transition-smooth);
}

.pof_nav-link:hover::after {
  width: 100%;
}

.pof_nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.pof_contact-link {
  text-decoration: none;
  color: var(--pof_color-text);
  padding: 0.5rem 1rem;
  border: 1px solid var(--pof_color-accent);
  border-radius: 25px;
  transition: var(--pof_transition-smooth);
}

.pof_contact-link:hover {
  background: var(--pof_color-accent);
  transform: translateY(-2px);
}

.pof_feedback-trigger {
  background: var(--pof_gradient-primary);
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Muli', sans-serif;
  transition: var(--pof_transition-smooth);
}

.pof_feedback-trigger:hover {
  transform: translateY(-2px);
  box-shadow: var(--pof_shadow-glow);
}

.pof_mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--pof_color-accent);
  cursor: pointer;
}

.pof_main-content {
  margin-top: 80px;
}

.pof_welcome-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pof_gradient-primary);
  position: relative;
  overflow: hidden;
}

.pof_welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pof-engine/pof-imgs/img-kiwi-bg-1.webp') center/cover no-repeat;
  opacity: 0.2;
  animation: pof_bg-pan 20s linear infinite;
}

@keyframes pof_bg-pan {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.pof_welcome-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
}

.pof_main-heading {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--pof_gradient-tertiary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pof_text-glow 3s ease-in-out infinite alternate;
}

@keyframes pof_text-glow {
  0% { text-shadow: 0 0 10px rgba(0, 194, 255, 0.5); }
  100% { text-shadow: 0 0 20px rgba(0, 255, 149, 0.7); }
}

.pof_welcome-text {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  min-height: 60px;
}

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

.pof_benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--pof_transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.pof_benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--pof_gradient-primary);
  opacity: 0.1;
  transition: var(--pof_transition-smooth);
}

.pof_benefit-card:hover::before {
  left: 0;
}

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

.pof_benefit-text {
  margin-bottom: 1rem;
  font-weight: 500;
  min-height: 48px;
}

.pof_benefit-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--pof_color-highlight);
}

.pof_game-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--pof_gradient-secondary);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--pof_transition-smooth);
}

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

.pof_about-section {
  padding: 6rem 2rem;
  background: var(--pof_gradient-dark);
}

.pof_about-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pof_about-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem; 
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--pof_transition-smooth);
}

.pof_about-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--pof_shadow-soft);
}

.pof_about-image-block {
  display: flex;
  justify-content: center;
}

.pof_about-image-block img {
  width: 100%;
  max-width: 375px;
  height: 100%;
  max-height: 350px;
  margin: auto;
  border-radius: 15px;
}

.pof_section-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: var(--pof_gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: 70px;
}

.pof_about-text {
  margin-bottom: 2rem;
  line-height: 1.7;
  min-height: 120px;
}

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

.pof_about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.pof_about-feature i {
  color: var(--pof_color-highlight);
  font-size: 1.2rem;
}

.pof_cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--pof_gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--pof_transition-smooth);
  text-align: center;
}

.pof_cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--pof_shadow-glow);
}

.pof_sub-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--pof_color-highlight);
  min-height: 45px;
}

.pof_history-text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  min-height: 80px;
}

.pof_about-history-block img {
  width: 100%;
  max-width: 375px;
  height: 100%;
  max-height: 250px;
  border-radius: 10px;
}

.pof_features-section {
  padding: 6rem 2rem;
  background: var(--pof_gradient-secondary);
  position: relative;
  overflow: hidden;
}

.pof_features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pof-engine/pof-imgs/img-kiwi-bg-2.webp') center/cover no-repeat;
  opacity: 0.1;
}

.pof_features-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.pof_feature-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--pof_transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pof_feature-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--pof_shadow-glow);
}

.pof_feature-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--pof_color-highlight);
  animation: pof_icon-bounce 2s ease-in-out infinite;
}

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

.pof_feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: white;
  min-height: 45px;
}

.pof_feature-desc {
  opacity: 0.9;
  line-height: 1.6;
  min-height: 80px;
}

.pof_games-section {
  padding: 6rem 2rem;
  background: var(--pof_gradient-dark);
}

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

.pof_games-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.pof_game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--pof_transition-smooth);
  position: relative;
  width: 100%;
  max-width: 375px;
  height: auto;  
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pof_game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--pof_shadow-glow);
}

.pof_game-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--pof_gradient-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.pof_game-card img {
  width: 100%;
  max-width: 375px;
  height: 100%;
  max-height: 185px;
}

.pof_game-title {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
  color: white;
  min-height: 45px;
}

.pof_game-play-link {
  display: inline-block;
  margin: 1rem 1.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--pof_gradient-secondary);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: var(--pof_transition-smooth);
}

.pof_game-play-link:hover {
  transform: scale(1.05);
  box-shadow: var(--pof_shadow-glow);
}

.pof_game-card i {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--pof_color-highlight);
}

.pof_premium-section {
  padding: 6rem 2rem;
  background: var(--pof_gradient-tertiary);
  position: relative;
  overflow: hidden;
}

.pof_premium-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pof-engine/pof-imgs/img-kiwi-bg-3.webp') center/cover no-repeat;
  opacity: 0.1;
}

.pof_premium-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pof_premium-text {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  min-height: 90px;
  color: var(--pof_color-background);
}

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

.pof_premium-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--pof_transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pof_premium-card:hover {
  transform: translateY(-5px) rotate(1deg);
  background: rgba(255, 255, 255, 0.3);
}

.pof_premium-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--pof_color-background);
}

.pof_premium-card p {
  font-weight: 500;
  min-height: 48px;
  color: var(--pof_color-background);
}

.pof_faq-section {
  padding: 6rem 2rem;
  background: var(--pof_gradient-dark);
}

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

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

.pof_faq-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pof_faq-category {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--pof_color-highlight);
  text-align: center;
  min-height: 45px;
}

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

.pof_faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
}

.pof_faq-question p {
  font-weight: 500;
  flex: 1;
  min-height: 48px;
}

.pof_faq-question i {
  color: var(--pof_color-accent);
  transition: var(--pof_transition-smooth);
}

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

.pof_faq-answer.active {
  max-height: 200px;
  padding-top: 1rem;
}

.pof_faq-answer p {
  opacity: 0.9;
  line-height: 1.6;
}

.pof_testimonials-section {
  padding: 6rem 2rem;
  background: var(--pof_gradient-primary);
  position: relative;
  overflow: hidden;
}

.pof_testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pof-engine/pof-imgs/img-kiwi-bg-4.webp') center/cover no-repeat;
  opacity: 0.1;
}

.pof_testimonials-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

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

.pof_testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--pof_transition-smooth);
  position: relative;
}

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

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

.pof_testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.pof_testimonial-info {
  flex: 1;
}

.pof_testimonial-name {
  font-weight: 500;
  font-size: 1.1rem;
}

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

.pof_testimonial-rating {
  color: var(--pof_color-highlight);
  margin-top: 0.3rem;
}

.pof_testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
  min-height: 80px;
}

.pof_testimonial-date {
  opacity: 0.7;
  font-size: 0.9rem;
}

.pof_testimonial-card i:last-child {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  opacity: 0.3;
}

.pof_responsible-section {
  padding: 6rem 2rem;
  background: var(--pof_gradient-dark);
}

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

.pof_responsible-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pof_responsible-text {
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
  min-height: 90px;
}

.pof_responsible-text a {
  color: var(--pof_color-highlight);
  text-decoration: none;
  transition: var(--pof_transition-smooth);
}

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

.pof_partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pof_partner-logos a {
  display: inline-block;
  transition: var(--pof_transition-smooth);
}

.pof_partner-logos a:hover {
  transform: scale(1.1);
}

.pof_partner-logos img {
  border-radius: 10px;
}

.pof_main-footer {
  background: var(--pof_gradient-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem 1rem;
}

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

.pof_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.1);
}

.pof_footer-brand .pof_brand-name {
  font-size: 1.8rem;
}

.pof_footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.pof_footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pof_footer-links a, .pof_footer-links button {
  color: var(--pof_color-text);
  text-decoration: none;
  transition: var(--pof_transition-smooth);
  background: none;
  border: none;
  font-family: 'Muli', sans-serif;
  font-size: 1rem;
  cursor: pointer;
}

.pof_footer-links a:hover, .pof_footer-links button:hover {
  color: var(--pof_color-highlight);
}

.pof_footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pof_copyright {
  opacity: 0.7;
}

.pof_social-icons {
  display: flex;
  gap: 1rem;
}

.pof_social-icons a {
  color: var(--pof_color-text);
  font-size: 1.5rem;
  transition: var(--pof_transition-smooth);
}

.pof_social-icons a:hover {
  color: var(--pof_color-highlight);
  transform: translateY(-3px);
}

.pof_age-verification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pof_age-modal {
  background: var(--pof_gradient-dark);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  border: 2px solid var(--pof_color-accent);
  box-shadow: var(--pof_shadow-glow);
}

.pof_age-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--pof_color-accent);
  min-height: 60px;
}

.pof_age-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  min-height: 60px;
}

.pof_age-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.pof_age-confirm, .pof_age-decline {
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-family: 'Muli', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--pof_transition-smooth);
}

.pof_age-confirm {
  background: var(--pof_gradient-primary);
  color: white;
}

.pof_age-decline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.pof_age-decline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pof_age-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pof_age-partners a {
  transition: var(--pof_transition-smooth);
}

.pof_age-partners a:hover {
  transform: scale(1.1);
}

.pof_cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: var(--pof_gradient-dark);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1001;
  justify-content: space-between;
  align-items: center;
}

.pof_cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
}

.pof_cookie-text {
  flex: 1;
  margin-right: 2rem;
}

.pof_cookie-text a {
  color: var(--pof_color-highlight);
  text-decoration: none;
}

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

.pof_cookie-accept {
  background: var(--pof_gradient-primary);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Muli', sans-serif;
  transition: var(--pof_transition-smooth);
}

.pof_cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: var(--pof_shadow-glow);
}

.pof_subscription-modal, .pof_feedback-modal, .pof_unsubscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}

.pof_subscription-content, .pof_feedback-content, .pof_unsubscribe-content {
  background: var(--pof_gradient-dark);
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 2px solid var(--pof_color-secondary);
  box-shadow: var(--pof_shadow-glow);
}

.pof_subscription-content {
  padding: 3rem;
}

.pof_subscription-title {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--pof_color-highlight);
  min-height: 60px;
}

.pof_subscription-text {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  min-height: 60px;
}

.pof_subscription-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.pof_subscription-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.pof_subscription-benefit i {
  color: var(--pof_color-highlight);
  font-size: 1.5rem;
}

.pof_subscription-form {
  margin-bottom: 2rem;
}

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

.pof_email-input, .pof_name-input, .pof_message-input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-family: 'Muli', sans-serif;
  transition: var(--pof_transition-smooth);
}

.pof_email-input:focus, .pof_name-input:focus, .pof_message-input:focus {
  outline: none;
  border-color: var(--pof_color-highlight);
  box-shadow: 0 0 10px rgba(0, 255, 149, 0.3);
}

.pof_message-input {
  min-height: 120px;
  resize: vertical;
}

.pof_input-hint {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: var(--pof_color-accent);
  min-height: 20px;
}

.pof_checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.pof_checkbox-label input {
  margin-top: 0.2rem;
}

.pof_checkbox-label a {
  color: var(--pof_color-highlight);
  text-decoration: none;
}

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

.pof_checkbox-hint {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: var(--pof_color-accent);
  min-height: 20px;
}

.pof_subscription-submit, .pof_feedback-submit {
  width: 100%;
  padding: 1rem;
  background: var(--pof_gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Muli', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--pof_transition-smooth);
}

.pof_subscription-submit:disabled, .pof_feedback-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pof_subscription-submit:not(:disabled):hover, .pof_feedback-submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--pof_shadow-glow);
}

.pof_subscription-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.pof_subscription-success h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--pof_color-highlight);
}

.pof_success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.pof_home-button, .pof_unsubscribe-button, .pof_success-close, .pof_unsubscribe-close {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 20px;
  font-family: 'Muli', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--pof_transition-smooth);
}

.pof_home-button {
  background: var(--pof_gradient-primary);
  color: white;
  text-decoration: none;
}

.pof_unsubscribe-button, .pof_success-close, .pof_unsubscribe-close {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pof_home-button:hover, .pof_unsubscribe-button:hover, .pof_success-close:hover, .pof_unsubscribe-close:hover {
  transform: scale(1.05);
  box-shadow: var(--pof_shadow-glow);
}

.pof_subscription-close, .pof_feedback-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--pof_transition-smooth);
}

.pof_subscription-close:hover, .pof_feedback-close:hover {
  color: var(--pof_color-accent);
  transform: scale(1.1);
}

.pof_feedback-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.pof_feedback-form-section {
  padding: 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pof_feedback-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--pof_color-highlight);
  min-height: 60px;
}

.pof_feedback-info {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
}

.pof_info-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--pof_color-highlight);
  min-height: 45px;
}

.pof_info-text {
  margin-bottom: 2rem;
  line-height: 1.6;
  min-height: 80px;
}

.pof_contact-points {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.5rem;
}

.pof_contact-point {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.pof_contact-point i {
  color: var(--pof_color-highlight);
  font-size: 1.5rem;
  width: 30px;
}

.pof_contact-point a {
  color: var(--pof_color-highlight);
  text-decoration: none;
}

.pof_contact-point a:hover {
  text-decoration: underline;
}

.pof_feedback-success {
  display: none;
  text-align: center;
  padding: 3rem;
  grid-column: 1 / -1;
}

.pof_feedback-success h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--pof_color-highlight);
}

.pof_success-email {
  color: var(--pof_color-highlight);
  font-weight: 500;
}

.pof_unsubscribe-content {
  padding: 3rem;
  text-align: center;
  max-width: 500px;
}

.pof_unsubscribe-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--pof_color-highlight);
  min-height: 60px;
}

.pof_unsubscribe-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  min-height: 60px;
}

@media (max-width: 1024px) {
  .pof_benefits-grid, .pof_features-grid, .pof_premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pof_games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pof_about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pof_faq-blocks {
    grid-template-columns: 1fr;
  }
  
  .pof_testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pof_feedback-content {
    grid-template-columns: 1fr;
  }
  
  .pof_feedback-form-section {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .pof_nav-container {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  
  .pof_main-navigation, .pof_nav-actions {
    display: none;
    margin: 2rem auto;
  }
  
  .pof_mobile-toggle {
    display: block;
  }
  
  .pof_main-heading {
    font-size: 2.5rem;
  }
  
  .pof_benefits-grid, .pof_features-grid, .pof_premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pof_games-grid {
    grid-template-columns: 1fr;
  }
  
  .pof_footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .pof_footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .pof_footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .pof_age-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .pof_age-confirm, .pof_age-decline {
    width: 100%;
    max-width: 250px;
  }
  
  .pof_cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .pof_cookie-text {
    margin-right: 0;
  }
  
  .pof_subscription-benefits {
    grid-template-columns: 1fr;
  }
  
  .pof_success-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .pof_home-button, .pof_unsubscribe-button {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .pof_main-content {
    margin-top: 70px;
  }
  
  .pof_welcome-section, .pof_about-section, .pof_features-section, 
  .pof_games-section, .pof_premium-section, .pof_faq-section,
  .pof_testimonials-section, .pof_responsible-section {
    padding: 3rem 0.5rem;
  }
  
  .pof_main-heading {
    font-size: 2rem;
  }
  
  .pof_section-heading {
    font-size: 2rem;
  }
  
  .pof_benefits-grid, .pof_features-grid, .pof_premium-grid {
    grid-template-columns: 1fr;
  }
  
  .pof_about-features {
    grid-template-columns: 1fr;
  }
  
  .pof_partner-logos {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pof_footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pof_age-modal, .pof_subscription-content, .pof_feedback-content, .pof_unsubscribe-content {
    padding: 2rem 1rem;
  }
  
  .pof_age-title, .pof_subscription-title, .pof_feedback-title, .pof_unsubscribe-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 320px) {
  .pof_welcome-section, .pof_about-section, .pof_features-section, 
  .pof_games-section, .pof_premium-section, .pof_faq-section,
  .pof_testimonials-section, .pof_responsible-section {
    padding: 2rem 0.3rem;
  }
  
  .pof_main-heading {
    font-size: 1.8rem;
  }
  
  .pof_section-heading {
    font-size: 1.8rem;
  }
  
  .pof_benefit-card, .pof_feature-item, .pof_premium-card, 
  .pof_game-card, .pof_testimonial-card, .pof_faq-block {
    padding: 1rem;
  }
  
  .pof_age-modal, .pof_subscription-content, .pof_feedback-content, .pof_unsubscribe-content,
  .pof_feedback-form-section, .pof_feedback-info {
    padding: 1.5rem 0.5rem;
  }
}

.pofpages_privacy-main {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  min-height: 100vh;
  padding: 2rem 0;
}

.pofpages_privacy-hero {
  background: linear-gradient(45deg, #7e3bdf 0%, #00c2ff 50%, #ff2d75 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pofpages_privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pof-engine/pof-imgs/img-kiwi-bg-1.webp') center/cover no-repeat;
  opacity: 0.1;
}

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

.pofpages_privacy-title {
  font-family: 'Dosis', sans-serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: pofpages_title-float 3s ease-in-out infinite;
}

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

.pofpages_privacy-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  min-height: 80px;
}

.pofpages_privacy-icon {
  font-size: 4rem;
  color: white;
  animation: pofpages_icon-spin 8s linear infinite;
}

@keyframes pofpages_icon-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.pofpages_privacy-content {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pofpages_privacy-sections {
  display: grid;
  gap: 2rem;
}

.pofpages_privacy-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

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

.pofpages_privacy-block:hover::before {
  left: 100%;
}

.pofpages_privacy-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(126, 59, 223, 0.3);
  border-color: rgba(126, 59, 223, 0.5);
}

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

.pofpages_privacy-header i {
  font-size: 2.5rem;
  color: #00c2ff;
  background: rgba(0, 194, 255, 0.1);
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.pofpages_privacy-block:hover .pofpages_privacy-header i {
  transform: scale(1.1) rotate(5deg);
  background: rgba(0, 194, 255, 0.2);
}

.pofpages_privacy-header h2 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.8rem;
  color: white;
  margin: 0;
  min-height: 50px;
}

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

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

.pofpages_privacy-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.pofpages_privacy-point:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.pofpages_privacy-point i {
  color: #ff2d75;
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pofpages_privacy-point p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
  min-height: 60px;
}

.pofpages_privacy-point a {
  color: #00c2ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pofpages_privacy-point a:hover {
  color: #ff2d75;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .pofpages_privacy-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 898px) {
  .pofpages_privacy-hero {
    padding: 8rem 1rem;
  }
}

@media (max-width: 768px) {
  .pofpages_privacy-title {
    font-size: 2.5rem;
  }
  
  .pofpages_privacy-content {
    padding: 2rem 1rem;
  }
  
  .pofpages_privacy-block {
    padding: 2rem 1.5rem;
  }
  
  .pofpages_privacy-points {
    grid-template-columns: 1fr;
  }
  
  .pofpages_privacy-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .pofpages_privacy-header h2 {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .pofpages_privacy-title {
    font-size: 2rem;
  }
  
  .pofpages_privacy-intro {
    font-size: 1rem;
  }
  
  .pofpages_privacy-block {
    padding: 1.5rem 1rem;
  }
  
  .pofpages_privacy-text p {
    font-size: 1rem;
    min-height: 120px;
  }
  
  .pofpages_privacy-point {
    flex-direction: column;
    padding: 0.8rem;
  }
}

@media (max-width: 320px) {
  .pofpages_privacy-hero {
    padding: 8rem 0.5rem;
  }
  
  .pofpages_privacy-content {
    padding: 1rem 0.5rem;
  }
  
  .pofpages_privacy-block {
    padding: 1rem 0.8rem;
  }
}

.pofpages_terms-main {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
}

.pofpages_terms-banner {
  background: linear-gradient(45deg, #ff2d75 0%, #7e3bdf 50%, #00c2ff 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pofpages_terms-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pof-engine/pof-imgs/img-kiwi-bg-2.webp') center/cover no-repeat;
  opacity: 0.1;
  animation: pofpages_terms-bg-move 20s linear infinite;
}

@keyframes pofpages_terms-bg-move {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.pofpages_terms-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.pofpages_terms-main-title {
  font-family: 'Dosis', sans-serif;
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: pofpages_terms-title-glow 2s ease-in-out infinite alternate;
}

@keyframes pofpages_terms-title-glow {
  0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
  100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 45, 117, 0.6); }
}

.pofpages_terms-banner-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 3rem;
  min-height: 100px;
}

.pofpages_terms-scroll-indicator {
  color: white;
  font-size: 2rem;
  animation: pofpages_terms-bounce 2s ease-in-out infinite;
}

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

.pofpages_terms-accordion {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pofpages_terms-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pofpages_terms-accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pofpages_terms-accordion-item:hover {
  border-color: rgba(126, 59, 223, 0.5);
  box-shadow: 0 5px 20px rgba(126, 59, 223, 0.2);
}

.pofpages_terms-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.pofpages_terms-accordion-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.pofpages_terms-accordion-header i:first-child {
  font-size: 2rem;
  color: #00c2ff;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.pofpages_terms-accordion-header h2 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.5rem;
  color: white;
  margin: 0;
  flex: 1;
  min-height: 40px;
}

.pofpages_terms-accordion-header i:last-child {
  font-size: 1.5rem;
  color: #ff2d75;
  transition: all 0.3s ease;
}

.pofpages_terms-accordion-item.active .pofpages_terms-accordion-header i:last-child {
  transform: rotate(45deg);
}

.pofpages_terms-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.02);
}

.pofpages_terms-accordion-item.active .pofpages_terms-accordion-content {
  max-height: 1000px;
}

.pofpages_terms-accordion-content > p {
  padding: 0 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  min-height: 100px;
}

.pofpages_terms-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 2rem 2rem;
}

.pofpages_terms-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.pofpages_terms-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.pofpages_terms-feature i {
  color: #ff2d75;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pofpages_terms-feature p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
  min-height: 50px;
}

@media (max-width: 1024px) {
  .pofpages_terms-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 898px) {
  .pofpages_terms-banner {
    padding: 8rem 1rem;
  }
}

@media (max-width: 768px) {
  .pofpages_terms-main-title {
    font-size: 3rem;
  }
  
  .pofpages_terms-accordion {
    padding: 2rem 1rem;
  }
  
  .pofpages_terms-accordion-header {
    padding: 1.5rem;
  }
  
  .pofpages_terms-accordion-header h2 {
    font-size: 1.3rem;
  }
  
  .pofpages_terms-accordion-content > p {
    padding: 0 1.5rem;
  }
  
  .pofpages_terms-features {
    padding: 0 1.5rem 1.5rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pofpages_terms-main-title {
    font-size: 2.5rem;
  }
  
  .pofpages_terms-banner-text {
    font-size: 1.1rem;
  }
  
  .pofpages_terms-accordion-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .pofpages_terms-accordion-header i:first-child {
    margin-right: 0;
  }
  
  .pofpages_terms-accordion-header h2 {
    min-height: auto;
  }
}

@media (max-width: 320px) {
  .pofpages_terms-banner {
    padding: 8rem 0.5rem;
  }
  
  .pofpages_terms-accordion {
    padding: 1rem 0.5rem;
  }
  
  .pofpages_terms-accordion-header {
    padding: 1rem;
  }
  
  .pofpages_terms-accordion-content > p {
    padding: 0 1rem;
    font-size: 1rem;
  }
  
  .pofpages_terms-features {
    padding: 0 1rem 1rem;
  }
  
  .pofpages_terms-feature {
    padding: 0.8rem;
  }
}

.pofpages_cookies-main {
  background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
  padding: 2rem 0;
}

.pofpages_cookies-header {
  background: linear-gradient(45deg, #7e3bdf 0%, #00c2ff 50%, #ff2d75 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pofpages_cookies-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pof-engine/pof-imgs/img-kiwi-bg-3.webp') center/cover no-repeat;
  opacity: 0.1;
}

.pofpages_cookies-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.pofpages_cookies-title {
  font-family: 'Dosis', sans-serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: pofpages_cookies-title-pulse 2s ease-in-out infinite;
}

@keyframes pofpages_cookies-title-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pofpages_cookies-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  min-height: 70px;
}

.pofpages_cookies-animation {
  position: relative;
  height: 100px;
  margin: 0 auto;
  width: 200px;
}

.pofpages_cookie-icon {
  font-size: 4rem;
  color: white;
  animation: pofpages_cookie-rotate 4s linear infinite;
}

@keyframes pofpages_cookie-rotate {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.1); }
  50% { transform: rotate(180deg) scale(1); }
  75% { transform: rotate(270deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.pofpages_cookie-crumbs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.pofpages_cookie-crumbs span {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pofpages_cookie-bounce 1.5s ease-in-out infinite;
}

.pofpages_cookie-crumbs span:nth-child(2) {
  animation-delay: 0.2s;
}

.pofpages_cookie-crumbs span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pofpages_cookie-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-20px); opacity: 1; }
}

.pofpages_cookies-content {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.pofpages_cookie-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

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

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

.pofpages_cookie-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(126, 59, 223, 0.3);
  border-color: rgba(126, 59, 223, 0.5);
}

.pofpages_cookie-card-icon {
  font-size: 3rem;
  color: #00c2ff;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pofpages_cookie-card:hover .pofpages_cookie-card-icon {
  transform: scale(1.2) rotate(10deg);
  color: #ff2d75;
}

.pofpages_cookie-card h2 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  min-height: 50px;
}

.pofpages_cookie-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  min-height: 120px;
}

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

.pofpages_cookie-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.pofpages_cookie-detail:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.pofpages_cookie-detail i {
  color: #ff2d75;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pofpages_cookie-detail:hover i {
  transform: scale(1.2);
}

.pofpages_cookie-detail p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
  text-align: left;
  min-height: 50px;
}

@media (max-width: 1024px) {
  .pofpages_cookies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 898px) {
  .pofpages_cookies-main {
    padding-top: 7rem;
  }
}

@media (max-width: 768px) {
  .pofpages_cookies-title {
    font-size: 2.5rem;
  }
  
  .pofpages_cookies-header {
    padding: 3rem 1rem;
  }
  
  .pofpages_cookies-content {
    padding: 2rem 1rem;
  }
  
  .pofpages_cookies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pofpages_cookie-card {
    padding: 2rem 1.5rem;
  }
  
  .pofpages_cookie-card p {
    min-height: 140px;
  }

  .pofpages_cookie-detail {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .pofpages_cookies-title {
    font-size: 2rem;
  }
  
  .pofpages_cookies-subtitle {
    font-size: 1.1rem;
  }
  
  .pofpages_cookie-card {
    padding: 1.5rem 1rem;
  }
  
  .pofpages_cookie-card h2 {
    font-size: 1.3rem;
  }
  
  .pofpages_cookie-card p {
    font-size: 1rem;
    min-height: 160px;
  }
}

@media (max-width: 320px) {
  .pofpages_cookies-header {
    padding: 2rem 0.5rem;
  }
  
  .pofpages_cookies-content {
    padding: 1rem 0.5rem;
  }
  
  .pofpages_cookie-card {
    padding: 1rem 0.8rem;
  }
  
  .pofpages_cookie-detail {
    padding: 0.8rem;
  }
  
  .pofpages_cookie-detail p {
    min-height: 70px;
  }
}

.pofpages_responsible-main {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  min-height: 100vh;
}

.pofpages_responsible-hero {
  background: linear-gradient(45deg, #00c2ff 0%, #ff2d75 50%, #7e3bdf 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pofpages_responsible-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pof-engine/pof-imgs/img-kiwi-bg-4.webp') center/cover no-repeat;
  opacity: 0.1;
}

.pofpages_responsible-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.pofpages_responsible-title {
  font-family: 'Dosis', sans-serif;
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: pofpages_responsible-title-slide 1.5s ease-out;
}

@keyframes pofpages_responsible-title-slide {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.pofpages_responsible-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
  min-height: 70px;
}

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

.pofpages_responsible-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 150px;
}

.pofpages_responsible-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pofpages_responsible-stat i {
  font-size: 2.5rem;
  color: white;
}

.pofpages_responsible-stat span {
  color: white;
  font-weight: 500;
  text-align: center;
}

.pofpages_responsible-guide {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pofpages_responsible-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pofpages_responsible-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

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

.pofpages_responsible-section:hover::before {
  left: 100%;
}

.pofpages_responsible-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 194, 255, 0.2);
  border-color: rgba(0, 194, 255, 0.3);
}

.pofpages_responsible-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pofpages_responsible-section-header i {
  font-size: 2.5rem;
  color: #ff2d75;
  background: rgba(255, 45, 117, 0.1);
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.pofpages_responsible-section:hover .pofpages_responsible-section-header i {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 45, 117, 0.2);
}

.pofpages_responsible-section-header h2 {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
  color: white;
  margin: 0;
  min-height: 50px;
}

.pofpages_responsible-section-content > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  min-height: 90px;
}

.pofpages_responsible-tips {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pofpages_responsible-tips li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pofpages_responsible-tips li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.pofpages_responsible-tips li i {
  color: #00c2ff;
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pofpages_responsible-tips li:hover i {
  transform: scale(1.2);
  color: #ff2d75;
}

.pofpages_responsible-tips li p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
  min-height: 60px;
}

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

.pofpages_responsible-resource {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pofpages_responsible-resource:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pofpages_responsible-resource i {
  font-size: 3rem;
  color: #00c2ff;
  margin-bottom: 1rem;
}

.pofpages_responsible-resource h3 {
  font-family: 'Dosis', sans-serif;
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pofpages_responsible-resource p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 80px;
}

.pofpages_responsible-resource a {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(45deg, #ff2d75, #7e3bdf);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pofpages_responsible-resource a:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 45, 117, 0.4);
}

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

.pofpages_responsible-contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pofpages_responsible-contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.pofpages_responsible-contact-method i {
  font-size: 2rem;
  color: #ff2d75;
  flex-shrink: 0;
}

.pofpages_responsible-contact-method h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.pofpages_responsible-contact-method p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.pofpages_responsible-contact-method a {
  color: #00c2ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pofpages_responsible-contact-method a:hover {
  color: #ff2d75;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .pofpages_responsible-tips,
  .pofpages_responsible-resources,
  .pofpages_responsible-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 898px) {
  .pofpages_responsible-hero {
    padding: 8rem 1rem;
  }
}

@media (max-width: 768px) {
  .pofpages_responsible-title {
    font-size: 3rem;
  }

  .pofpages_responsible-stats {
    gap: 1.5rem;
  }
  
  .pofpages_responsible-stat {
    min-width: 120px;
    padding: 1rem;
  }
  
  .pofpages_responsible-guide {
    padding: 2rem 1rem;
  }
  
  .pofpages_responsible-section {
    padding: 2rem 1.5rem;
  }
  
  .pofpages_responsible-section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .pofpages_responsible-section-header h2 {
    min-height: auto;
  }
  
  .pofpages_responsible-tips,
  .pofpages_responsible-resources,
  .pofpages_responsible-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pofpages_responsible-title {
    font-size: 2.5rem;
  }
  
  .pofpages_responsible-subtitle {
    font-size: 1.1rem;
  }
  
  .pofpages_responsible-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .pofpages_responsible-section {
    padding: 1.5rem 1rem;
  }
  
  .pofpages_responsible-section-header h2 {
    font-size: 1.5rem;
  }
  
  .pofpages_responsible-section-content > p {
    font-size: 1rem;
  }

  .pofpages_responsible-contact-method {
    flex-direction: column;
  }
}

@media (max-width: 320px) {
  .pofpages_responsible-hero {
    padding: 8rem 0.5rem;
  }
  
  .pofpages_responsible-guide {
    padding: 1rem 0.5rem;
  }
  
  .pofpages_responsible-section {
    padding: 1rem 0.8rem;
  }
  
  .pofpages_responsible-tips li,
  .pofpages_responsible-contact-method {
    padding: 1rem;
  }
  
  .pofpages_responsible-resource {
    padding: 1.5rem 1rem;
  }
}

.pofpages_404-main {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.pofpages_404-container {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pofpages_404-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 4rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.pofpages_404-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: pofpages_404-shine 6s ease-in-out infinite;
}

@keyframes pofpages_404-shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.pofpages_404-animation {
  position: relative;
  height: 200px;
  margin-bottom: 2rem;
}

.pofpages_404-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
  animation: pofpages_404-orb-float 4s ease-in-out infinite;
}

.pofpages_404-orb-1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ff2d75, transparent);
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.pofpages_404-orb-2 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #7e3bdf, transparent);
  top: 50px;
  left: 40%;
  animation-delay: 1.3s;
}

.pofpages_404-orb-3 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #00c2ff, transparent);
  top: 70px;
  left: 60%;
  animation-delay: 2.6s;
}

@keyframes pofpages_404-orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

.pofpages_404-number {
  font-family: 'Dosis', sans-serif;
  font-size: 8rem;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(45deg, #ff2d75, #7e3bdf, #00c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(255, 45, 117, 0.5);
  animation: pofpages_404-number-glitch 3s ease-in-out infinite;
}

@keyframes pofpages_404-number-glitch {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.pofpages_404-title {
  font-family: 'Dosis', sans-serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pofpages_404-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  min-height: 120px;
}

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

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

.pofpages_404-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(126, 59, 223, 0.5);
}

.pofpages_404-feature i {
  font-size: 2rem;
  color: #00c2ff;
  transition: all 0.3s ease;
}

.pofpages_404-feature:hover i {
  color: #ff2d75;
  transform: scale(1.2);
}

.pofpages_404-feature p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
  text-align: center;
  min-height: 50px;
}

.pofpages_404-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pofpages_404-home-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(45deg, #ff2d75, #7e3bdf);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 45, 117, 0.3);
}

.pofpages_404-home-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 45, 117, 0.5);
  background: linear-gradient(45deg, #7e3bdf, #ff2d75);
}

.pofpages_404-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  font-family: 'Muli', sans-serif;
}

.pofpages_404-contact-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 194, 255, 0.5);
}

.pofpages_404-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pofpages_404-support-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.pofpages_404-support-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.pofpages_404-support-item i {
  color: #ff2d75;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pofpages_404-support-item:hover i {
  color: #00c2ff;
  transform: scale(1.2);
}

.pofpages_404-support-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
  min-height: 50px;
}

.pofpages_404-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.pofpages_404-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pofpages_404-particle-float 8s linear infinite;
}

.pofpages_404-particle:nth-child(1) {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.pofpages_404-particle:nth-child(2) {
  width: 4px;
  height: 4px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.pofpages_404-particle:nth-child(3) {
  width: 8px;
  height: 8px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.pofpages_404-particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 40%;
  left: 90%;
  animation-delay: 6s;
}

.pofpages_404-particle:nth-child(5) {
  width: 7px;
  height: 7px;
  top: 10%;
  left: 70%;
  animation-delay: 1s;
}

@keyframes pofpages_404-particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 898px) {
  .pofpages_404-main {
    padding: 8rem 1rem;
  }
}

@media (max-width: 768px) {  
  .pofpages_404-content {
    padding: 3rem 2rem;
  }
  
  .pofpages_404-number {
    font-size: 6rem;
  }
  
  .pofpages_404-title {
    font-size: 2rem;
  }
  
  .pofpages_404-text {
    font-size: 1.1rem;
  }
  
  .pofpages_404-features {
    grid-template-columns: 1fr;
  }
  
  .pofpages_404-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .pofpages_404-home-button,
  .pofpages_404-contact-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .pofpages_404-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pofpages_404-content {
    padding: 2rem 1.5rem;
  }
  
  .pofpages_404-number {
    font-size: 4rem;
  }
  
  .pofpages_404-title {
    font-size: 1.8rem;
  }
  
  .pofpages_404-text {
    font-size: 1rem;
    min-height: 150px;
  }
  
  .pofpages_404-feature {
    padding: 1rem;
  }
  
  .pofpages_404-support-item {
    padding: 0.8rem;
  }
}

@media (max-width: 320px) {
  .pofpages_404-content {
    padding: 1.5rem 1rem;
  }
  
  .pofpages_404-number {
    font-size: 3.5rem;
  }
  
  .pofpages_404-feature p,
  .pofpages_404-support-item p {
    font-size: 0.8rem;
  }
  
  .pofpages_404-home-button,
  .pofpages_404-contact-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}