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

:root {
  --tnx_arctic-blue: #1b3d5f;
  --tnx_frost-white: #f1f7ff;
  --tnx_glacial-teal: #3f90b8;
  --tnx_icy-purple: #6f8bc8;
  --tnx_snow-silver: #d6e2f2;
  --tnx_polar-cyan: #68c5f5;
  --tnx_frozen-indigo: #1f3a5c;
  --tnx_aurora-pink: #84b6e3;
  --tnx_fjord-green: #4f8fb5;
  --tnx_blizzard-gray: #2a3b4f;
  --tnx_main-gradient: linear-gradient(135deg, #0b1f33 0%, #1f3f63 45%, #66b9e8 100%);
  --tnx_secondary-gradient: linear-gradient(45deg, #244d6f 0%, #0f2942 100%);
  --tnx_tertiary-gradient: linear-gradient(120deg, #8abfe8 0%, #3f7da6 100%);
  --tnx_header-height: 80px;
  --tnx_section-padding: 5rem 2rem;
  --tnx_border-radius: 16px;
  --tnx_card-shadow: 0 10px 25px rgba(102, 185, 232, 0.15);
  --tnx_hover-shadow: 0 15px 35px rgba(102, 185, 232, 0.25);
}

body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  color: var(--tnx_blizzard-gray);
  background: var(--tnx_frost-white);
}

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

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

h2 {
  font-size: 2.5rem;
  min-height: 3rem;
}

h3 {
  font-size: 1.8rem;
  min-height: 2.2rem;
}

p {
  margin-bottom: 1rem;
  min-height: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.tnx_page-wrapper {
  margin: 0 auto;
  position: relative;
}

.tnx_frost-header {
  background: var(--tnx_main-gradient);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--tnx_header-height);
  box-shadow: 0 4px 20px rgba(102, 185, 232, 0.2);
}

.tnx_arctic-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 100%;
  max-width: 1460px;
  margin: 0 auto;
}

.tnx_glacial-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.tnx_glacial-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.tnx_snow-nav {
  display: flex;
  gap: 2rem;
}

.tnx_ice-link {
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--tnx_border-radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tnx_ice-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.tnx_ice-link:hover::before {
  left: 0;
}

.tnx_ice-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.tnx_aurora-menu {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.tnx_polar-welcome {
  padding: calc(var(--tnx_header-height) + 4rem) 2rem 6rem;
  background: url('/tnx-mechanism/tnx-images/welcome-bg.webp') center/cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
}

.tnx_polar-welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

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

.tnx_polar-welcome h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: tnx_glow 3s ease-in-out infinite alternate;
}

@keyframes tnx_glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  to {
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
}

.tnx_snow-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.tnx_frost-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--tnx_border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.tnx_frost-card i {
  font-size: 2.5rem;
  margin-top: 1rem;
}

.tnx_frost-card a {
  background: white;
  color: var(--tnx_glacial-teal);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.3s ease;
}

.tnx_frost-card a:hover {
  background: var(--tnx_arctic-blue);
  color: white;
  transform: scale(1.1);
}

.tnx_glacial-about {
  padding: var(--tnx_section-padding);
  background: white;
}

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

.tnx_about-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.tnx_about-block:last-child {
  margin-bottom: 0;
}

.tnx_about-image {
  flex: 1;
}

.tnx_about-image img {
  width: 100%;
  border-radius: var(--tnx_border-radius);
  box-shadow: var(--tnx_card-shadow);
  transition: all 0.3s ease;
}

.tnx_about-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--tnx_hover-shadow);
}

.tnx_about-content {
  flex: 1;
}

.tnx_about-origin .tnx_about-content,
.tnx_about-vision .tnx_about-content {
  order: 2;
}

.tnx_about-origin .tnx_about-image,
.tnx_about-vision .tnx_about-image {
  order: 1;
}

.tnx_origin-features,
.tnx_journey-features,
.tnx_vision-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.tnx_origin-item,
.tnx_journey-item,
.tnx_vision-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--tnx_frost-white);
  padding: 0.8rem 1.2rem;
  border-radius: var(--tnx_border-radius);
  box-shadow: var(--tnx_card-shadow);
  transition: all 0.3s ease;
}

.tnx_origin-item:hover,
.tnx_journey-item:hover,
.tnx_vision-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--tnx_hover-shadow);
}

.tnx_vision-item i {
  color: var(--tnx_arctic-blue);
}

.tnx_vision-link {
  display: inline-block;
  background: var(--tnx_main-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.tnx_vision-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 185, 232, 0.3);
}

.tnx_arctic-features {
  padding: var(--tnx_section-padding);
  background: url('/tnx-mechanism/tnx-images/features-bg.webp') center/cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
}

.tnx_arctic-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

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

.tnx_features-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.tnx_feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: var(--tnx_border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tnx_feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--tnx_main-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tnx_feature-item:hover::after {
  transform: scaleX(1);
}

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

.tnx_feature-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--tnx_arctic-blue);
}

.tnx_feature-item h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.tnx_icy-entertainment {
  padding: var(--tnx_section-padding);
  background: white;
}

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

.tnx_entertainment-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.tnx_entertainment-item {
  background: white;
  border-radius: var(--tnx_border-radius);
  box-shadow: var(--tnx_card-shadow);
  padding: 1.5rem;
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tnx_entertainment-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tnx_main-gradient);
}

.tnx_entertainment-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--tnx_hover-shadow);
}

.tnx_item-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--tnx_aurora-pink);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.tnx_entertainment-item img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.tnx_item-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tnx_item-icons i {
  color: var(--tnx_arctic-blue);
  font-size: 1.2rem;
}

.tnx_entertainment-item a {
  display: inline-block;
  background: var(--tnx_main-gradient);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tnx_entertainment-item a:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(102, 185, 232, 0.3);
}

.tnx_free-entertainment {
  padding: var(--tnx_section-padding);
  background: url('/tnx-mechanism/tnx-images/free-bg.webp') center/cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
}

.tnx_free-entertainment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

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

.tnx_free-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.tnx_free-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: var(--tnx_border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 150px;
  max-width: 180px;
  transition: all 0.3s ease;
}

.tnx_free-card:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tnx_free-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--tnx_arctic-blue);
}

.tnx_free-link {
  display: inline-block;
  background: white;
  color: var(--tnx_glacial-teal);
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tnx_free-link:hover {
  background: var(--tnx_arctic-blue);
  color: white;
  transform: scale(1.1);
}

.tnx_frosty-faq {
  padding: var(--tnx_section-padding);
  background: white;
}

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

.tnx_faq-blocks {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.tnx_faq-block {
  flex: 1;
  background: var(--tnx_frost-white);
  padding: 2rem;
  border-radius: var(--tnx_border-radius);
  box-shadow: var(--tnx_card-shadow);
}

.tnx_faq-block h3 {
  color: var(--tnx_glacial-teal);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--tnx_arctic-blue);
}

.tnx_faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tnx_faq-question {
  background: white;
  padding: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tnx_faq-question:hover {
  background: var(--tnx_frost-white);
}

.tnx_faq-question i {
  color: var(--tnx_arctic-blue);
  transition: transform 0.3s ease;
}

.tnx_faq-answer {
  background: white;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tnx_faq-item.active .tnx_faq-answer {
  padding: 1.2rem;
  max-height: 500px;
}

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

.tnx_faq-contact {
  display: inline-block;
  background: var(--tnx_main-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.tnx_faq-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 185, 232, 0.3);
}

.tnx_arctic-reviews {
  padding: var(--tnx_section-padding);
  background: var(--tnx_secondary-gradient);
  color: white;
}

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

.tnx_reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.tnx_review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--tnx_border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.tnx_review-card:hover::before {
  left: 50%;
  top: 50%;
}

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

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

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

.tnx_reviewer-info {
  flex: 1;
  text-align: left;
}

.tnx_reviewer-name {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

.tnx_review-rating i {
  color: gold;
}

.tnx_review-text {
  text-align: left;
  font-style: italic;
  margin-bottom: 1.5rem;
  min-height: 4.5rem;
}

.tnx_review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.tnx_responsible-entertainment {
  padding: var(--tnx_section-padding);
  background: white;
}

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

.tnx_responsible-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.tnx_responsible-links a {
  transition: all 0.3s ease;
}

.tnx_responsible-links a:hover {
  transform: scale(1.1);
}

.tnx_responsible-links img {
  height: 80px;
  border-radius: 12px;
  box-shadow: var(--tnx_card-shadow);
}

.tnx_age-restriction {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tnx_arctic-footer {
  background: url('/tnx-mechanism/tnx-images/footer-bg.webp') center/cover no-repeat;
  color: white;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.tnx_arctic-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

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

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

.tnx_footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.tnx_footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

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

.tnx_footer-nav a {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.tnx_footer-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.tnx_footer-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
}

.tnx_footer-icons i {
  cursor: pointer;
  transition: all 0.3s ease;
}

.tnx_footer-icons i:hover {
  color: var(--tnx_arctic-blue);
  transform: scale(1.2);
}

.tnx_age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.tnx_age-content {
  background: white;
  padding: 3rem;
  border-radius: var(--tnx_border-radius);
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: none;
}

.tnx_age-content::-webkit-scrollbar {
  display: none;
}

.tnx_age-content h2 {
  color: var(--tnx_glacial-teal);
  margin-bottom: 1rem;
}

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

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

.tnx_age-confirm,
.tnx_age-decline {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.tnx_age-confirm {
  background: var(--tnx_fjord-green);
  color: white;
}

.tnx_age-decline {
  background: var(--tnx_aurora-pink);
  color: white;
}

.tnx_age-confirm:hover {
  background: #3f80a8;
  transform: scale(1.05);
}

.tnx_age-decline:hover {
  background: #6aa2d6;
  transform: scale(1.05);
}

.tnx_cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--tnx_blizzard-gray);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 1001;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.tnx_cookie-content p {
  margin: 0;
  flex: 1;
}

.tnx_cookie-content a {
  color: var(--tnx_arctic-blue);
  text-decoration: underline;
}

.tnx_cookie-accept {
  background: var(--tnx_arctic-blue);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tnx_cookie-accept:hover {
  background: #2f6f91;
  transform: scale(1.05);
}

.tnx_subscription-modal,
.tnx_contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  padding: 1rem;
}

.tnx_subscription-content,
.tnx_contact-content {
  background: white;
  border-radius: var(--tnx_border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.tnx_subscription-content::-webkit-scrollbar,
.tnx_contact-content::-webkit-scrollbar {
  display: none;
}

.tnx_subscription-close,
.tnx_contact-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--tnx_blizzard-gray);
  z-index: 1;
}

.tnx_subscription-content {
  padding: 3rem;
  text-align: center;
}

.tnx_subscription-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.tnx_subscription-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--tnx_frost-white);
  padding: 1.5rem 1rem;
  border-radius: var(--tnx_border-radius);
  flex: 1;
  min-width: 120px;
  transition: all 0.3s ease;
}

.tnx_subscription-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--tnx_card-shadow);
}

.tnx_subscription-feature i {
  font-size: 2rem;
  color: var(--tnx_arctic-blue);
}

.tnx_subscription-form {
  text-align: left;
  margin-top: 2rem;
}

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

.tnx_subscription-email,
.tnx_contact-name,
.tnx_contact-email,
.tnx_contact-message {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--tnx_snow-silver);
  border-radius: var(--tnx_border-radius);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tnx_contact-message {
  min-height: 120px;
  resize: vertical;
}

.tnx_subscription-email:focus,
.tnx_contact-name:focus,
.tnx_contact-email:focus,
.tnx_contact-message:focus {
  outline: none;
  border-color: var(--tnx_arctic-blue);
  box-shadow: 0 0 0 3px rgba(102, 185, 232, 0.1);
}

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

.tnx_checkbox-label input {
  margin-top: 0.3rem;
}

.tnx_checkbox-label a {
  color: var(--tnx_arctic-blue);
  text-decoration: underline;
}

.tnx_validation-message {
  color: #4f7cad;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.tnx_subscription-submit,
.tnx_contact-submit {
  width: 100%;
  background: var(--tnx_main-gradient);
  color: white;
  border: none;
  padding: 1.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tnx_subscription-submit:disabled,
.tnx_contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.tnx_subscription-submit:not(:disabled):hover,
.tnx_contact-submit:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 185, 232, 0.3);
}

.tnx_subscription-success,
.tnx_unsubscribe-success,
.tnx_contact-success {
  text-align: center;
  padding: 2rem;
}

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

.tnx_go-home,
.tnx_unsubscribe,
.tnx_close-unsubscribe,
.tnx_contact-close-success {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tnx_go-home,
.tnx_contact-close-success {
  background: var(--tnx_fjord-green);
  color: white;
}

.tnx_unsubscribe {
  background: var(--tnx_aurora-pink);
  color: white;
}

.tnx_go-home:hover,
.tnx_unsubscribe:hover,
.tnx_close-unsubscribe:hover,
.tnx_contact-close-success:hover {
  transform: scale(1.05);
}

.tnx_contact-content {
  display: flex;
  max-width: 1000px;
}

.tnx_contact-main {
  flex: 1;
  padding: 3rem;
}

.tnx_contact-info {
  flex: 1;
  background: var(--tnx_frost-white);
  padding: 3rem;
  border-radius: 0 var(--tnx_border-radius) var(--tnx_border-radius) 0;
}

.tnx_contact-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.tnx_contact-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tnx_contact-feature i {
  font-size: 2rem;
  color: var(--tnx_arctic-blue);
  margin-top: 0.5rem;
}

.tnx_contact-feature h4 {
  margin-bottom: 0.5rem;
  color: var(--tnx_glacial-teal);
}

.tnx_back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--tnx_main-gradient);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(102, 185, 232, 0.3);
  transition: all 0.3s ease;
}

.tnx_back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 185, 232, 0.4);
}

@media (max-width: 1024px) {
  :root {
    --tnx_section-padding: 4rem 1.5rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .tnx_about-block {
    gap: 3rem;
  }
  
  .tnx_entertainment-grid {
    gap: 1.5rem;
  }
  
  .tnx_reviews-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --tnx_section-padding: 3rem 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .tnx_snow-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tnx_main-gradient);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .tnx_snow-nav.active {
    display: flex;
  }
  
  .tnx_aurora-menu {
    display: block;
  }
  
  .tnx_about-block {
    flex-direction: column;
    gap: 2rem;
  }
  
  .tnx_about-origin .tnx_about-content,
  .tnx_about-vision .tnx_about-content {
    order: 1;
  }
  
  .tnx_about-origin .tnx_about-image,
  .tnx_about-vision .tnx_about-image {
    order: 2;
  }
  
  .tnx_features-grid {
    gap: 1.5rem;
  }
  
  .tnx_feature-item {
    min-width: 200px;
  }
  
  .tnx_faq-blocks {
    flex-direction: column;
    gap: 2rem;
  }
  
  .tnx_footer-main {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .tnx_footer-nav {
    justify-content: center;
  }
  
  .tnx_footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .tnx_contact-info {
    border-radius: 0 0 var(--tnx_border-radius) var(--tnx_border-radius);
  }
  
  .tnx_responsible-links {
    gap: 1.5rem;
  }
  
  .tnx_age-partners {
    gap: 1rem;
  }
  
  .tnx_cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --tnx_section-padding: 2rem 0.5rem;
  }
  
  .tnx_polar-welcome h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .tnx_arctic-nav {
    padding: 0 1rem;
  }
  
  .tnx_polar-welcome {
    padding: calc(var(--tnx_header-height) + 2rem) 1rem 4rem;
  }
  
  .tnx_snow-cards {
    gap: 1rem;
  }
  
  .tnx_frost-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .tnx_entertainment-grid {
    gap: 1rem;
  }
  
  .tnx_entertainment-item {
    min-width: 100%;
    max-width: 100%;
  }
  
  .tnx_reviews-grid {
    gap: 1rem;
  }
  
  .tnx_review-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .tnx_free-cards {
    gap: 1rem;
  }
  
  .tnx_free-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .tnx_age-buttons {
    flex-direction: column;
  }
  
  .tnx_success-buttons {
    flex-direction: column;
  }
  
  .tnx_responsible-links {
    gap: 1rem;
  }
  
  .tnx_age-partners {
    gap: 0.8rem;
  }
  
  .tnx_back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 320px) {
  :root {
    --tnx_section-padding: 1.5rem 0.3rem;
  }
  
  .tnx_arctic-nav {
    padding: 0 0.5rem;
  }
  
  .tnx_polar-welcome {
    padding: calc(var(--tnx_header-height) + 1rem) 0.5rem 3rem;
  }
  
  .tnx_frost-card,
  .tnx_entertainment-item,
  .tnx_review-card,
  .tnx_free-card {
    padding: 1.5rem 1rem;
  }
  
  .tnx_subscription-content,
  .tnx_contact-main,
  .tnx_contact-info {
    padding: 2rem 1.5rem;
  }
  
  .tnx_age-content {
    padding: 2rem 1.5rem;
  }
}

.tnxpages_privacy-main {
  padding-top: 80px;
}

.tnxpages_privacy-hero {
  background: linear-gradient(135deg, #66b9e8 0%, #6f8bc8 50%, #68c5f5 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.tnxpages_privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.tnxpages_privacy-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tnxpages_privacy-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.tnxpages_privacy-hero i {
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
}

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

.tnxpages_privacy-content {
  padding: 4rem 2rem;
  background: #edf5ff;
}

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

.tnxpages_policy-item {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(102, 185, 232, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tnxpages_policy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(45deg, #66b9e8, #6f8bc8);
  transition: width 0.3s ease;
}

.tnxpages_policy-item:hover::before {
  width: 8px;
}

.tnxpages_policy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(102, 185, 232, 0.25);
}

.tnxpages_policy-icon {
  margin-bottom: 1.5rem;
}

.tnxpages_policy-icon i {
  font-size: 3rem;
  color: #66b9e8;
  background: linear-gradient(45deg, #66b9e8, #6f8bc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tnxpages_policy-item h2 {
  color: #2a3b4f;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.tnxpages_policy-item p {
  color: #34465c;
  line-height: 1.6;
}

.tnxpages_policy-item a {
  color: #66b9e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tnxpages_policy-item a:hover {
  color: #6f8bc8;
}

.tnxpages_privacy-updates {
  padding: 4rem 2rem;
  background: linear-gradient(45deg, #3f90b8, #3d5f9d);
  color: white;
  text-align: center;
}

.tnxpages_updates-container {
  max-width: 800px;
  margin: 0 auto;
}

.tnxpages_privacy-updates h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.tnxpages_privacy-updates p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.tnxpages_update-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.tnxpages_update-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tnxpages_update-item i {
  font-size: 2.5rem;
  color: #66b9e8;
}

.tnxpages_update-item span {
  font-weight: 500;
}

@media (max-width: 768px) {
  .tnxpages_privacy-hero h1 {
    font-size: 2.5rem;
  }
  
  .tnxpages_privacy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tnxpages_policy-item {
    padding: 2rem;
  }
  
  .tnxpages_update-features {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .tnxpages_privacy-hero {
    padding: 3rem 1rem;
  }
  
  .tnxpages_privacy-content {
    padding: 3rem 1rem;
  }
  
  .tnxpages_privacy-updates {
    padding: 3rem 1rem;
  }
  
  .tnxpages_policy-item {
    padding: 1.5rem;
  }
}

.tnxpages_terms-main {
  padding-top: 80px;
}

.tnxpages_terms-hero {
  background: linear-gradient(45deg, #6f8bc8 0%, #68c5f5 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.tnxpages_terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

.tnxpages_terms-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tnxpages_terms-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.tnxpages_terms-hero i {
  font-size: 4rem;
  animation: pulse 2s ease-in-out infinite;
}

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

.tnxpages_terms-content {
  padding: 4rem 2rem;
  background: #edf5ff;
}

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

.tnxpages_term-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(111, 139, 200, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.tnxpages_term-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #6f8bc8, #68c5f5);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.tnxpages_term-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(111, 139, 200, 0.25);
}

.tnxpages_term-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #edf5ff, #e4edf7);
}

.tnxpages_term-header i {
  font-size: 2.5rem;
  color: #6f8bc8;
  flex-shrink: 0;
}

.tnxpages_term-header h2 {
  color: #2a3b4f;
  font-size: 1.4rem;
  margin: 0;
}

.tnxpages_term-body {
  padding: 1rem 2rem 2rem;
}

.tnxpages_term-body p {
  color: #34465c;
  line-height: 1.6;
  margin: 0;
}

.tnxpages_terms-contact {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #66b9e8, #3f90b8);
  color: white;
  text-align: center;
}

.tnxpages_contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.tnxpages_terms-contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.tnxpages_terms-contact p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.tnxpages_terms-contact a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.tnxpages_terms-contact a:hover {
  opacity: 0.8;
}

.tnxpages_contact-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.tnxpages_contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tnxpages_contact-item i {
  font-size: 2.5rem;
  color: #6f8bc8;
}

.tnxpages_contact-item span {
  font-weight: 500;
}

@media (max-width: 768px) {
  .tnxpages_terms-hero h1 {
    font-size: 2.5rem;
  }
  
  .tnxpages_terms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tnxpages_term-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .tnxpages_term-body {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  .tnxpages_contact-features {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .tnxpages_terms-hero {
    padding: 3rem 1rem;
  }
  
  .tnxpages_terms-content {
    padding: 3rem 1rem;
  }
  
  .tnxpages_terms-contact {
    padding: 3rem 1rem;
  }
  
  .tnxpages_term-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

.tnxpages_cookies-main {
  padding-top: 80px;
}

.tnxpages_cookies-hero {
  background: linear-gradient(135deg, #3f90b8 0%, #3d5f9d 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.tnxpages_cookies-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

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

.tnxpages_cookies-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tnxpages_cookies-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.tnxpages_cookies-hero i {
  font-size: 4rem;
  animation: rotate 3s linear infinite;
}

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

.tnxpages_cookies-content {
  padding: 4rem 2rem;
  background: #edf5ff;
}

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

.tnxpages_cookie-category {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(63, 144, 184, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.tnxpages_cookie-category:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(63, 144, 184, 0.25);
}

.tnxpages_category-header {
  padding: 2rem;
  background: linear-gradient(135deg, #3f90b8, #3d5f9d);
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tnxpages_category-header i {
  font-size: 2rem;
  flex-shrink: 0;
}

.tnxpages_category-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.tnxpages_category-content {
  padding: 2rem;
}

.tnxpages_category-content p {
  color: #34465c;
  line-height: 1.6;
  margin: 0;
}

.tnxpages_cookie-types {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tnxpages_type-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #edf5ff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tnxpages_type-item:hover {
  background: #e4edf7;
  transform: translateX(5px);
}

.tnxpages_type-item i {
  font-size: 1.5rem;
  color: #3f90b8;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.tnxpages_type-item h3 {
  color: #2a3b4f;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.tnxpages_type-item p {
  color: #34465c;
  margin: 0;
  font-size: 0.9rem;
}

.tnxpages_category-content a {
  color: #3f90b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tnxpages_category-content a:hover {
  color: #3d5f9d;
}

.tnxpages_cookies-actions {
  padding: 4rem 2rem;
  background: linear-gradient(45deg, #6f8bc8, #84b6e3);
  color: white;
  text-align: center;
}

.tnxpages_actions-container {
  max-width: 800px;
  margin: 0 auto;
}

.tnxpages_cookies-actions h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.tnxpages_cookies-actions p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.tnxpages_accept-btn,
.tnxpages_manage-btn,
.tnxpages_contact-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.tnxpages_accept-btn {
  background: white;
  color: #6f8bc8;
}

.tnxpages_manage-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.tnxpages_contact-btn {
  background: #66b9e8;
  color: white;
}

.tnxpages_accept-btn:hover {
  background: #edf5ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.tnxpages_manage-btn:hover {
  background: white;
  color: #6f8bc8;
  transform: translateY(-3px);
}

.tnxpages_contact-btn:hover {
  background: #3f90b8;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 185, 232, 0.3);
}

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

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

.tnxpages_cookie-modal-content {
  background: white;
  padding: 3rem 2rem 2rem;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.tnxpages_cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #4e627f;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tnxpages_cookie-modal-close:hover {
  color: #34465c;
  background: #edf5ff;
}

.tnxpages_cookie-modal-icon {
  margin-bottom: 1.5rem;
}

.tnxpages_cookie-modal-icon i {
  font-size: 4rem;
  color: #4f8fb5;
  animation: bounceIn 0.6s ease;
}

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

.tnxpages_cookie-modal-content h3 {
  color: #2a3b4f;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.tnxpages_cookie-modal-content p {
  color: #34465c;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.tnxpages_cookie-modal-confirm {
  background: linear-gradient(45deg, #3f90b8, #3d5f9d);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  width: 100%;
  max-width: 200px;
}

.tnxpages_cookie-modal-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(63, 144, 184, 0.3);
}

@media (max-width: 768px) {
  .tnxpages_cookies-hero h1 {
    font-size: 2.5rem;
  }
  
  .tnxpages_cookies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tnxpages_category-header {
    padding: 1.5rem;
  }
  
  .tnxpages_category-content {
    padding: 1.5rem;
  }
  
  .tnxpages_action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .tnxpages_accept-btn,
  .tnxpages_manage-btn,
  .tnxpages_contact-btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .tnxpages_cookies-hero {
    padding: 3rem 1rem;
  }
  
  .tnxpages_cookies-content {
    padding: 3rem 1rem;
  }
  
  .tnxpages_cookies-actions {
    padding: 3rem 1rem;
  }
  
  .tnxpages_category-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .tnxpages_type-item {
    flex-direction: column;
    text-align: center;
  }

  .tnxpages_cookie-modal-content {
    padding: 2.5rem 1.5rem 1.5rem;
    margin: 1rem;
  }
  
  .tnxpages_cookie-modal-icon i {
    font-size: 3rem;
  }
  
  .tnxpages_cookie-modal-content h3 {
    font-size: 1.3rem;
  }
}

.tnxpages_responsible-main {
  padding-top: 80px;
}

.tnxpages_responsible-hero {
  background: linear-gradient(135deg, #84b6e3 0%, #6f8bc8 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.tnxpages_responsible-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.tnxpages_responsible-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tnxpages_responsible-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.tnxpages_responsible-hero i {
  font-size: 4rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

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

.tnxpages_responsible-content {
  padding: 4rem 2rem;
  background: #edf5ff;
}

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

.tnxpages_responsible-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(132, 182, 227, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tnxpages_responsible-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #84b6e3, #6f8bc8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.tnxpages_responsible-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(132, 182, 227, 0.25);
}

.tnxpages_card-icon {
  margin-bottom: 1.5rem;
}

.tnxpages_card-icon i {
  font-size: 3rem;
  background: linear-gradient(45deg, #84b6e3, #6f8bc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tnxpages_responsible-card h2 {
  color: #2a3b4f;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.tnxpages_responsible-card p {
  color: #34465c;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tnxpages_card-tips {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tnxpages_card-tips li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #34465c;
}

.tnxpages_card-tips i {
  color: #4f8fb5;
  font-size: 1.1rem;
}

.tnxpages_support-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tnxpages_support-links a {
  color: #84b6e3;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border: 1px solid #84b6e3;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.tnxpages_support-links a:hover {
  background: #84b6e3;
  color: white;
  transform: translateX(5px);
}

.tnxpages_contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tnxpages_contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #edf5ff;
  border-radius: 8px;
}

.tnxpages_contact-item i {
  color: #84b6e3;
  font-size: 1.2rem;
}

.tnxpages_contact-item span {
  color: #34465c;
  font-weight: 500;
}

.tnxpages_responsible-card a {
  color: #84b6e3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tnxpages_responsible-card a:hover {
  color: #6f8bc8;
}

.tnxpages_responsible-partners {
  padding: 4rem 2rem;
  background: linear-gradient(45deg, #66b9e8, #3f90b8);
  color: white;
  text-align: center;
}

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

.tnxpages_responsible-partners h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.tnxpages_responsible-partners p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.tnxpages_partner-logo {
  transition: all 0.3s ease;
}

.tnxpages_partner-logo:hover {
  transform: scale(1.1);
}

.tnxpages_partner-logo img {
  height: 75px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tnxpages_age-restriction {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .tnxpages_responsible-hero h1 {
    font-size: 2.5rem;
  }
  
  .tnxpages_responsible-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tnxpages_responsible-card {
    padding: 2rem;
  }
  
  .tnxpages_partners-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tnxpages_responsible-hero {
    padding: 3rem 1rem;
  }
  
  .tnxpages_responsible-content {
    padding: 3rem 1rem;
  }
  
  .tnxpages_responsible-partners {
    padding: 3rem 1rem;
  }
  
  .tnxpages_responsible-card {
    padding: 1.5rem;
  }
  
  .tnxpages_partners-grid {
    flex-direction: column;
  }
}

.tnxpages_404-main {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.tnxpages_404-hero {
  flex: 1;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #66b9e8 0%, #6f8bc8 50%, #68c5f5 100%);
  color: white;
  display: flex;
  align-items: center;
}

.tnxpages_404-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tnxpages_404-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  to {
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
}

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

.tnxpages_404-animation {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  justify-content: flex-start;
}

.tnxpages_404-animation i {
  font-size: 3rem;
  animation: bounce 2s ease-in-out infinite;
}

.tnxpages_404-animation i:nth-child(2) {
  animation-delay: 0.3s;
}

.tnxpages_404-animation i:nth-child(3) {
  animation-delay: 0.6s;
}

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

.tnxpages_404-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  color: #66b9e8;
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tnxpages_404-home-btn:hover {
  background: #edf5ff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tnxpages_404-image {
  text-align: center;
}

.tnxpages_404-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

.tnxpages_404-help {
  padding: 4rem 2rem;
  background: #edf5ff;
}

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

.tnxpages_404-help h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2a3b4f;
}

.tnxpages_404-help p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #34465c;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.tnxpages_help-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(102, 185, 232, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tnxpages_help-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #66b9e8, #6f8bc8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tnxpages_help-item:hover::before {
  transform: scaleX(1);
}

.tnxpages_help-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 185, 232, 0.25);
}

.tnxpages_help-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #66b9e8, #6f8bc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tnxpages_help-item h3 {
  color: #2a3b4f;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  min-height: 50px;
}

.tnxpages_help-item p {
  color: #34465c;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 70px;
}

.tnxpages_help-item a {
  color: #66b9e8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
}

.tnxpages_help-item a:hover {
  color: #6f8bc8;
  transform: translateX(5px);
}

.tnxpages_404-features {
  padding: 4rem 2rem;
  background: linear-gradient(45deg, #3f90b8, #3d5f9d);
  color: white;
  text-align: center;
}

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

.tnxpages_404-features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.tnxpages_feature-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.tnxpages_feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tnxpages_feature-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #66b9e8;
}

.tnxpages_feature-item h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  min-height: 50px;
}

.tnxpages_feature-item p {
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tnxpages_404-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .tnxpages_404-content h1 {
    font-size: 3rem;
  }
  
  .tnxpages_404-animation {
    justify-content: center;
  }
  
  .tnxpages_help-grid {
    grid-template-columns: 1fr;
  }
  
  .tnxpages_features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tnxpages_404-hero {
    padding: 3rem 1rem;
  }
  
  .tnxpages_404-help {
    padding: 3rem 1rem;
  }
  
  .tnxpages_404-features {
    padding: 3rem 1rem;
  }
  
  .tnxpages_404-content h1 {
    font-size: 2.5rem;
  }
  
  .tnxpages_404-animation {
    gap: 1rem;
  }
  
  .tnxpages_404-animation i {
    font-size: 2.5rem;
  }
  
  .tnxpages_help-item,
  .tnxpages_feature-item {
    padding: 1.5rem;
  }
}

