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

:root {
  --can_accent-vibrant: #ff3366;
  --can_accent-electric: #6633ff;
  --can_accent-cyan: #33ffcc;
  --can_accent-sunshine: #ffcc33;
  --can_text-primary: #2d3748;
  --can_text-secondary: #4a5568;
  --can_background-light: #f7fafc;
  --can_background-dark: #1a202c;
  --can_white: #ffffff;
  --can_shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
  --can_shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.1);
  --can_transition-smooth: all 0.3s ease;
  --can_border-radius: 12px;
}

body {
  font-family: 'Karla', sans-serif;
  color: var(--can_text-primary);
  line-height: 1.6;
  background-color: var(--can_background-light);
}

.can_wrapper {
  margin: 0 auto;
  overflow: hidden;
}

.can_navigation-container {
  background: linear-gradient(135deg, var(--can_accent-vibrant), var(--can_accent-electric));
  padding: 1rem 2rem;
  box-shadow: var(--can_shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.can_navigation-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.can_logo-link {
  display: flex;
  align-items: center;
}

.can_logo-image {
  width: 100%;
  max-width: 50px;
  height: 100%;
  max-height: 50px;
}

.can_site-name {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  color: var(--can_white);
  font-weight: 500;
}

.can_navigation-menu {
  display: flex;
  align-items: center;
}

.can_navigation-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 21px;
  position: relative;
}

.can_toggle-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--can_white);
  border-radius: 3px;
  transition: var(--can_transition-smooth);
  margin-bottom: 5px;
}

.can_toggle-line:last-child {
  margin-bottom: 0;
}

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

.can_navigation-item {
  position: relative;
}

.can_navigation-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--can_white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--can_border-radius);
  transition: var(--can_transition-smooth);
}

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

.can_navigation-link i {
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .can_navigation-container {
    padding: 1rem;
  }
  
  .can_navigation-list {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .can_navigation-toggle {
    display: flex;
  }
  
  .can_navigation-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--can_accent-vibrant), var(--can_accent-electric));
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--can_shadow-medium);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--can_transition-smooth);
  }
  
  .can_navigation-list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .can_navigation-toggle.active .can_toggle-line-1 {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .can_navigation-toggle.active .can_toggle-line-2 {
    opacity: 0;
  }
  
  .can_navigation-toggle.active .can_toggle-line-3 {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .can_navigation-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .can_site-name {
    order: -1;
  }
}

@media (max-width: 480px) {
  .can_navigation-container {
    padding: 0.8rem 0.5rem;
  }
  
  .can_navigation-link {
    padding: 0.5rem;
  }
}

.can_main-content {
  position: relative;
}

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

.can_hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.can_hero-svg {
  width: 100%;
  height: 100%;
  animation: can_svg-pulse 8s ease-in-out infinite;
}

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

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

.can_hero-title {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  color: var(--can_white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: can_title-appear 1s ease-out;
  min-height: 4.5rem;
}

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

.can_prize-info {
  margin-bottom: 2rem;
}

.can_prize-amount {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  color: var(--can_white);
  font-size: 1.2rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.can_prize-amount i {
  font-size: 1.5rem;
}

.can_timer-container {
  margin-bottom: 2.5rem;
}

.can_timer-title {
  font-size: 1.2rem;
  color: var(--can_white);
  margin-bottom: 1rem;
  font-weight: 500;
}

.can_timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.can_timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: var(--can_border-radius);
  min-width: 80px;
  box-shadow: var(--can_shadow-soft);
  animation: can_timer-bounce 2s infinite;
}

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

.can_timer-value {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--can_accent-electric);
}

.can_timer-label {
  font-size: 0.9rem;
  color: var(--can_text-secondary);
  margin-top: 0.5rem;
}

.can_timer-separator {
  font-size: 2rem;
  color: var(--can_white);
  font-weight: bold;
}

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

.can_action-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--can_transition-smooth);
  box-shadow: var(--can_shadow-soft);
}

.can_primary-action {
  background: linear-gradient(135deg, var(--can_accent-cyan), var(--can_accent-sunshine));
  color: var(--can_text-primary);
}

.can_primary-action:hover {
  transform: translateY(-3px);
  box-shadow: var(--can_shadow-medium);
}

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

@media (max-width: 768px) {
  .can_hero-section {
    min-height: 70vh;
  }
  
  .can_hero-title {
    font-size: 2.5rem;
    min-height: 3.5rem;
  }
  
  .can_timer-display {
    gap: 0.5rem;
  }
  
  .can_timer-unit {
    min-width: 70px;
    padding: 0.8rem;
  }
  
  .can_timer-value {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .can_hero-content {
    padding: 1rem 0.5rem;
  }
  
  .can_hero-title {
    font-size: 2rem;
    min-height: 3rem;
  }
  
  .can_prize-amount {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  
  .can_timer-display {
    flex-wrap: wrap;
  }
  
  .can_timer-unit {
    min-width: 60px;
    padding: 0.6rem;
  }
  
  .can_timer-value {
    font-size: 1.5rem;
  }
  
  .can_action-button {
    padding: 0.8rem 1.5rem;
  }
}

.can_packages-section {
  padding: 5rem 2rem;
  background-color: var(--can_background-light);
}

.can_packages-container {
  max-width: 1540px;
  margin: 0 auto;
}

.can_packages-title {
  font-family: 'Marcellus', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--can_text-primary);
  min-height: 3.5rem;
}

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

.can_package-card {
  background: linear-gradient(135deg, var(--can_white), #f0f4f8);
  border-radius: var(--can_border-radius);
  padding: 2.5rem;
  box-shadow: var(--can_shadow-soft);
  transition: var(--can_transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.can_package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--can_accent-vibrant), var(--can_accent-electric));
}

.can_package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--can_shadow-medium);
}

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

.can_package-icon i {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--can_accent-vibrant), var(--can_accent-electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.can_package-name {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--can_text-primary);
  min-height: 2.5rem;
}

.can_package-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.can_spins-count {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--can_accent-electric);
}

.can_package-price {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--can_accent-vibrant);
}

.can_package-description {
  color: var(--can_text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.can_package-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--can_accent-vibrant), var(--can_accent-electric));
  color: var(--can_white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--can_transition-smooth);
}

.can_package-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--can_shadow-soft);
}

@media (max-width: 1024px) {
  .can_packages-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .can_packages-section {
    padding: 3rem 1rem;
  }
  
  .can_packages-title {
    font-size: 2rem;
    min-height: 3rem;
  }
  
  .can_package-card {
    padding: 2rem;
  }
  
  .can_package-name {
    font-size: 1.6rem;
    min-height: 2.2rem;
  }
}

@media (max-width: 480px) {
  .can_packages-section {
    padding: 2rem 0.5rem;
  }
  
  .can_packages-title {
    font-size: 1.8rem;
  }
  
  .can_package-card {
    padding: 1.5rem;
  }
  
  .can_package-details {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.can_responsible-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--can_accent-cyan), var(--can_accent-sunshine));
}

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

.can_responsible-title {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  color: var(--can_text-primary);
  margin-bottom: 3rem;
  min-height: 3rem;
}

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

.can_partner-link {
  display: inline-block;
  transition: var(--can_transition-smooth);
  padding: 1rem;
  background-color: var(--can_white);
  border-radius: var(--can_border-radius);
  box-shadow: var(--can_shadow-soft);
}

.can_partner-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--can_shadow-medium);
}

.can_partner-link img {
  width: 100%;
  max-width: 260px;
  height: 100%;
  min-height: 75px;
  max-height: 80px;
}

@media (max-width: 1024px) {
  .can_responsible-section {
    padding: 3rem 1.5rem;
  }
  
  .can_partners-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .can_responsible-section {
    padding: 2.5rem 1rem;
  }
  
  .can_responsible-title {
    font-size: 1.8rem;
    min-height: 2.5rem;
  }
  
  .can_partners-grid {
    gap: 1.5rem;
  }
  
  .can_partner-link {
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .can_responsible-section {
    padding: 2rem 0.5rem;
  }
  
  .can_partners-grid {
    flex-direction: column;
    gap: 1rem;
  }
  
  .can_partner-link {
    width: 100%;
    max-width: 200px;
  }
}

.can_footer-section {
  background: linear-gradient(135deg, var(--can_background-dark), #2d3748);
  color: var(--can_white);
  padding: 3rem 2rem 1.5rem;
}

.can_footer-container {
  max-width: 1540px;
  margin: 0 auto;
}

.can_footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.can_footer-block {
  flex: 1;
  min-width: 250px;
}

.can_footer-logo {
  margin-bottom: 1.5rem;
}

.can_footer-site-name {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.can_footer-title {
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--can_accent-cyan);
}

.can_footer-text {
  line-height: 1.6;
  color: #cbd5e0;
}

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

.can_footer-link {
  color: #cbd5e0;
  text-decoration: none;
  transition: var(--can_transition-smooth);
}

.can_footer-link:hover {
  color: var(--can_accent-cyan);
}

.can_footer-age {
  margin-bottom: 1.5rem;
}

.can_age-indicator {
  display: inline-block;
  background-color: var(--can_accent-vibrant);
  color: var(--can_white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 500;
}

.can_footer-copyright {
  margin-bottom: 1.5rem;
  color: #a0aec0;
}

.can_footer-social {
  display: flex;
  gap: 1rem;
}

.can_social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--can_white);
  text-decoration: none;
  transition: var(--can_transition-smooth);
}

.can_social-link:hover {
  background-color: var(--can_accent-cyan);
  color: var(--can_text-primary);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .can_footer-section {
    padding: 2.5rem 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .can_footer-section {
    padding: 2rem 1rem 1rem;
  }
  
  .can_footer-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .can_footer-section {
    padding: 1.5rem 0.5rem 0.5rem;
  }
  
  .can_footer-block {
    min-width: 100%;
  }
}

.can_cookies-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--can_background-dark), #2d3748);
  color: var(--can_white);
  padding: 1rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.can_cookies-modal.active {
  transform: translateY(0);
}

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

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

.can_cookies-text p {
  margin: 0;
  line-height: 1.5;
}

.can_cookies-text a {
  color: var(--can_accent-cyan);
  text-decoration: none;
}

.can_cookies-accept {
  background: linear-gradient(135deg, var(--can_accent-cyan), var(--can_accent-sunshine));
  color: var(--can_text-primary);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--can_transition-smooth);
}

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

@media (max-width: 768px) {
  .can_cookies-modal {
    padding: 1rem;
  }
  
  .can_cookies-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .can_cookies-modal {
    padding: 0.8rem 0.5rem;
  }
}

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

.can_age-content {
  background: linear-gradient(135deg, var(--can_white), #f0f4f8);
  border-radius: var(--can_border-radius);
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--can_shadow-medium);
  animation: can_modal-appear 0.5s ease;
}

@keyframes can_modal-appear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.can_age-icon i {
  font-size: 4rem;
  background: linear-gradient(135deg, var(--can_accent-vibrant), var(--can_accent-electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.can_age-title {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--can_text-primary);
  min-height: 2.5rem;
}

.can_age-text {
  color: var(--can_text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.can_age-confirm {
  background: linear-gradient(135deg, var(--can_accent-vibrant), var(--can_accent-electric));
  color: var(--can_white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--can_transition-smooth);
  flex: 1;
  min-width: 180px;
}

.can_age-confirm:hover {
  transform: translateY(-2px);
  box-shadow: var(--can_shadow-soft);
}

.can_age-decline {
  background-color: transparent;
  color: var(--can_text-secondary);
  border: 2px solid var(--can_text-secondary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--can_transition-smooth);
  flex: 1;
  min-width: 180px;
}

.can_age-decline:hover {
  background-color: var(--can_text-secondary);
  color: var(--can_white);
}

@media (max-width: 480px) {
  .can_age-content {
    padding: 2rem 1rem;
  }
  
  .can_age-title {
    font-size: 1.6rem;
  }
  
  .can_age-actions {
    flex-direction: column;
  }
}

.can_contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--can_transition-smooth);
  overflow-y: auto;
}

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

.can_contact-content {
  background: linear-gradient(135deg, var(--can_white), #f0f4f8);
  border-radius: var(--can_border-radius);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--can_shadow-medium);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.can_contact-modal.active .can_contact-content {
  transform: translateY(0);
}

.can_contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.can_contact-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  color: var(--can_text-primary);
  margin: 0;
}

.can_contact-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--can_text-secondary);
  cursor: pointer;
  transition: var(--can_transition-smooth);
}

.can_contact-close:hover {
  color: var(--can_accent-vibrant);
  transform: rotate(90deg);
}

.can_contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.can_form-group {
  display: flex;
  flex-direction: column;
}

.can_form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--can_text-primary);
}

.can_form-input,
.can_form-textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #cbd5e0;
  border-radius: var(--can_border-radius);
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  transition: var(--can_transition-smooth);
}

.can_form-input:focus,
.can_form-textarea:focus {
  outline: none;
  border-color: var(--can_accent-electric);
  box-shadow: 0 0 0 3px rgba(102, 51, 255, 0.1);
}

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

.can_form-submit {
  background: linear-gradient(135deg, var(--can_accent-vibrant), var(--can_accent-electric));
  color: var(--can_white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--can_transition-smooth);
  margin-top: 1rem;
}

.can_form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--can_shadow-soft);
}

@media (max-width: 480px) {
  .can_contact-content {
    padding: 1.5rem;
  }
  
  .can_contact-title {
    font-size: 1.5rem;
  }
}

.can_success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--can_transition-smooth);
}

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

.can_success-content {
  background: linear-gradient(135deg, var(--can_white), #f0f4f8);
  border-radius: var(--can_border-radius);
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--can_shadow-medium);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

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

.can_success-icon i {
  font-size: 4rem;
  color: #10b981;
}

.can_success-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--can_text-primary);
}

.can_success-text {
  color: var(--can_text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.can_success-close {
  background: linear-gradient(135deg, var(--can_accent-vibrant), var(--can_accent-electric));
  color: var(--can_white);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--can_transition-smooth);
}

.can_success-close:hover {
  transform: translateY(-2px);
  box-shadow: var(--can_shadow-soft);
}

@media (max-width: 480px) {
  .can_success-content {
    padding: 2rem 1rem;
  }
  
  .can_success-title {
    font-size: 1.5rem;
  }
}

.canpage-registration-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.canpage-registration-hero {
  position: relative;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.canpage-registration-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.canpage-registration-svg svg {
  width: 100%;
  height: 100%;
  animation: canpage-svg-float 8s ease-in-out infinite;
}

@keyframes canpage-svg-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

.canpage-registration-content {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 600px;
}

.canpage-registration-title {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--can_background-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 3.5rem;
  position: relative;
}

.canpage-registration-description {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.canpage-registration-form-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  top: 75px;
}

.canpage-registration-wrapper {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
  transform: translateY(-50px);
  margin-top: -50px;
}

.canpage-form-title {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
  min-height: 2.8rem;
}

.canpage-form-description {
  text-align: center;
  color: #718096;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.canpage-form-group {
  margin-bottom: 2rem;
  position: relative;
}

.canpage-input-hint {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  min-height: 1.2rem;
  transition: all 0.3s ease;
}

.canpage-input-hint.valid {
  color: #38a169;
}

.canpage-input-hint.error {
  color: #e53e3e;
}

.canpage-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.canpage-input-container i {
  position: absolute;
  left: 1rem;
  color: #a0aec0;
  font-size: 1.2rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.canpage-form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.canpage-form-input:focus {
  outline: none;
  border-color: #4ecdc4;
  background: white;
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
  transform: translateY(-2px);
}

.canpage-form-input:focus + .canpage-input-container i {
  color: #4ecdc4;
}

.canpage-form-input.valid {
  border-color: #38a169;
}

.canpage-form-input.error {
  border-color: #e53e3e;
}

.canpage-password-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.canpage-password-toggle:hover {
  color: #4a5568;
}

.canpage-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.canpage-form-checkbox {
  margin-top: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 4px;
  border: 2px solid #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.canpage-form-checkbox:checked {
  background-color: #4ecdc4;
  border-color: #4ecdc4;
}

.canpage-checkbox-label {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.4;
  cursor: pointer;
}

.canpage-terms-link {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 500;
}

.canpage-terms-link:hover {
  text-decoration: underline;
}

.canpage-checkbox-hint {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  color: #e53e3e;
}

.canpage-submit-button {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.canpage-submit-button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.canpage-submit-button:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.canpage-form-links {
  text-align: center;
  margin-top: 2rem;
}

.canpage-form-links p {
  margin-bottom: 0.5rem;
  color: #718096;
}

.canpage-form-link {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 500;
}

.canpage-form-link:hover {
  text-decoration: underline;
}

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

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

.canpage-success-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.canpage-success-icon {
  margin-bottom: 1.5rem;
}

.canpage-success-icon i {
  font-size: 4rem;
  color: #38a169;
}

.canpage-success-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.canpage-success-message {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.canpage-success-close {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.canpage-success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
  .canpage-registration-hero {
    height: 30vh;
  }
  
  .canpage-registration-title {
    font-size: 2.2rem;
  }
  
  .canpage-registration-form-section {
    padding: 2rem 1rem;
    top: 40px;
  }
  
  .canpage-registration-wrapper {
    padding: 2rem;
    transform: translateY(-30px);
    margin-top: -30px;
  }
  
  .canpage-form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .canpage-registration-hero {
    height: 25vh;
  }
  
  .canpage-registration-content {
    padding: 1rem 0.5rem;
  }
  
  .canpage-registration-title {
    font-size: 1.8rem;
  }
  
  .canpage-registration-description {
    font-size: 1rem;
  }
  
  .canpage-registration-wrapper {
    padding: 1.5rem;
    transform: translateY(-20px);
    margin-top: -20px;
  }
  
  .canpage-form-title {
    font-size: 1.5rem;
  }
  
  .canpage-form-input {
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
  }
  
  .canpage-input-container i {
    left: 0.8rem;
    font-size: 1rem;
  }
}

.canpage-login-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.canpage-login-hero {
  position: relative;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.canpage-login-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.canpage-login-svg svg {
  width: 100%;
  height: 100%;
  animation: canpage-login-svg-float 6s ease-in-out infinite;
}

@keyframes canpage-login-svg-float {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  33% {
    transform: translateX(-10px) rotate(1deg);
  }
  66% {
    transform: translateX(10px) rotate(-1deg);
  }
}

.canpage-login-content {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 600px;
  position: relative;
}

.canpage-login-title {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--can_background-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 3.5rem;
}

.canpage-login-description {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.canpage-login-form-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  top: 75px;
}

.canpage-login-wrapper {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
  transform: translateY(-50px);
  margin-top: -50px;
}

.canpage-login-form-title {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
  min-height: 2.8rem;
}

.canpage-login-form-description {
  text-align: center;
  color: #718096;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.canpage-login-form-group {
  margin-bottom: 2rem;
  position: relative;
}

.canpage-login-input-hint {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  min-height: 1.2rem;
  transition: all 0.3s ease;
}

.canpage-login-input-hint.valid {
  color: #38a169;
}

.canpage-login-input-hint.error {
  color: #e53e3e;
}

.canpage-login-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.canpage-login-input-container i {
  position: absolute;
  left: 1rem;
  color: #a0aec0;
  font-size: 1.2rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.canpage-login-form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.canpage-login-form-input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.canpage-login-form-input:focus + .canpage-login-input-container i {
  color: #667eea;
}

.canpage-login-form-input.valid {
  border-color: #38a169;
}

.canpage-login-form-input.error {
  border-color: #e53e3e;
}

.canpage-login-password-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.canpage-login-password-toggle:hover {
  color: #4a5568;
}

.canpage-login-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.canpage-login-form-checkbox {
  margin-top: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 4px;
  border: 2px solid #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.canpage-login-form-checkbox:checked {
  background-color: #667eea;
  border-color: #667eea;
}

.canpage-login-checkbox-label {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.4;
  cursor: pointer;
}

.canpage-login-terms-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.canpage-login-terms-link:hover {
  text-decoration: underline;
}

.canpage-login-checkbox-hint {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  color: #e53e3e;
}

.canpage-login-submit-button {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.canpage-login-submit-button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.canpage-login-submit-button:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.canpage-login-form-links {
  text-align: center;
  margin-top: 2rem;
}

.canpage-login-form-links p {
  margin-bottom: 0.5rem;
  color: #718096;
}

.canpage-login-form-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.canpage-login-form-link:hover {
  text-decoration: underline;
}

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

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

.canpage-login-success-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.canpage-login-success-icon {
  margin-bottom: 1.5rem;
}

.canpage-login-success-icon i {
  font-size: 4rem;
  color: #38a169;
}

.canpage-login-success-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.canpage-login-success-message {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.canpage-login-success-close {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.canpage-login-success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
  .canpage-login-hero {
    height: 30vh;
  }
  
  .canpage-login-title {
    font-size: 2.2rem;
  }
  
  .canpage-login-form-section {
    padding: 2rem 1rem;
  }
  
  .canpage-login-wrapper {
    padding: 2rem;
    transform: translateY(-30px);
    margin-top: -30px;
  }
  
  .canpage-login-form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .canpage-login-hero {
    height: 25vh;
  }
  
  .canpage-login-content {
    padding: 1rem 0.5rem;
  }
  
  .canpage-login-title {
    font-size: 1.8rem;
  }
  
  .canpage-login-description {
    font-size: 1rem;
  }
  
  .canpage-login-wrapper {
    padding: 1.5rem;
    transform: translateY(-20px);
    margin-top: -20px;
  }
  
  .canpage-login-form-title {
    font-size: 1.5rem;
  }
  
  .canpage-login-form-input {
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
  }
  
  .canpage-login-input-container i {
    left: 0.8rem;
    font-size: 1rem;
  }
}

.canpage-recovery-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.canpage-recovery-hero {
  position: relative;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.canpage-recovery-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.canpage-recovery-svg svg {
  width: 100%;
  height: 100%;
  animation: canpage-rec-svg-pulse 7s ease-in-out infinite;
}

@keyframes canpage-rec-svg-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(0.5deg);
  }
}

.canpage-recovery-content {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 600px;
  position: relative;
}

.canpage-recovery-title {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--can_background-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 3.5rem;
}

.canpage-recovery-description {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.canpage-recovery-form-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  top: 75px;
}

.canpage-recovery-wrapper {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
  transform: translateY(-50px);
  margin-top: -50px;
}

.canpage-recovery-form-title {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
  min-height: 2.8rem;
}

.canpage-recovery-form-description {
  text-align: center;
  color: #718096;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.canpage-recovery-form-group {
  margin-bottom: 2rem;
  position: relative;
}

.canpage-recovery-input-hint {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  min-height: 1.2rem;
  transition: all 0.3s ease;
}

.canpage-recovery-input-hint.valid {
  color: #38a169;
}

.canpage-recovery-input-hint.error {
  color: #e53e3e;
}

.canpage-recovery-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.canpage-recovery-input-container i {
  position: absolute;
  left: 1rem;
  color: #a0aec0;
  font-size: 1.2rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.canpage-recovery-form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.canpage-recovery-form-input:focus {
  outline: none;
  border-color: #4da0ff;
  background: white;
  box-shadow: 0 0 0 3px rgba(77, 160, 255, 0.1);
  transform: translateY(-2px);
}

.canpage-recovery-form-input:focus + .canpage-recovery-input-container i {
  color: #4da0ff;
}

.canpage-recovery-form-input.valid {
  border-color: #38a169;
}

.canpage-recovery-form-input.error {
  border-color: #e53e3e;
}

.canpage-recovery-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.canpage-recovery-form-checkbox {
  margin-top: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 4px;
  border: 2px solid #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.canpage-recovery-form-checkbox:checked {
  background-color: #4da0ff;
  border-color: #4da0ff;
}

.canpage-recovery-checkbox-label {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.4;
  cursor: pointer;
}

.canpage-recovery-terms-link {
  color: #4da0ff;
  text-decoration: none;
  font-weight: 500;
}

.canpage-recovery-terms-link:hover {
  text-decoration: underline;
}

.canpage-recovery-checkbox-hint {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  color: #e53e3e;
}

.canpage-recovery-submit-button {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #fd746c, #4da0ff);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.canpage-recovery-submit-button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 116, 108, 0.3);
}

.canpage-recovery-submit-button:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.canpage-recovery-form-links {
  text-align: center;
  margin-top: 2rem;
}

.canpage-recovery-form-links p {
  margin-bottom: 0.5rem;
  color: #718096;
}

.canpage-recovery-form-link {
  color: #4da0ff;
  text-decoration: none;
  font-weight: 500;
}

.canpage-recovery-form-link:hover {
  text-decoration: underline;
}

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

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

.canpage-recovery-success-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.canpage-recovery-success-icon {
  margin-bottom: 1.5rem;
}

.canpage-recovery-success-icon i {
  font-size: 4rem;
  color: #38a169;
}

.canpage-recovery-success-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.canpage-recovery-success-message {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.canpage-recovery-success-close {
  background: linear-gradient(135deg, #fd746c, #4da0ff);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.canpage-recovery-success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(253, 116, 108, 0.3);
}

@media (max-width: 768px) {
  .canpage-recovery-hero {
    height: 30vh;
  }
  
  .canpage-recovery-title {
    font-size: 2.2rem;
  }
  
  .canpage-recovery-form-section {
    padding: 2rem 1rem;
  }
  
  .canpage-recovery-wrapper {
    padding: 2rem;
    transform: translateY(-30px);
    margin-top: -30px;
  }
  
  .canpage-recovery-form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .canpage-recovery-hero {
    height: 25vh;
  }
  
  .canpage-recovery-content {
    padding: 1rem 0.5rem;
  }
  
  .canpage-recovery-title {
    font-size: 1.8rem;
  }
  
  .canpage-recovery-description {
    font-size: 1rem;
  }
  
  .canpage-recovery-wrapper {
    padding: 1.5rem;
    transform: translateY(-20px);
    margin-top: -20px;
  }
  
  .canpage-recovery-form-title {
    font-size: 1.5rem;
  }
  
  .canpage-recovery-form-input {
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
  }
  
  .canpage-recovery-input-container i {
    left: 0.8rem;
    font-size: 1rem;
  }
}

.canpage-contact-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.canpage-contact-hero {
  position: relative;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.canpage-contact-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.canpage-contact-svg svg {
  width: 100%;
  height: 100%;
  animation: canpage-contact-svg-wave 8s ease-in-out infinite;
}

@keyframes canpage-contact-svg-wave {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.03);
  }
}

.canpage-contact-content {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 600px;
  position: relative;
}

.canpage-contact-title {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--can_background-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 3.5rem;
}

.canpage-contact-description {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.canpage-contact-form-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  top: 75px;
}

.canpage-contact-wrapper {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 100%;
  transform: translateY(-50px);
  margin-top: -50px;
}

.canpage-contact-form-title {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
  min-height: 2.8rem;
}

.canpage-contact-form-description {
  text-align: center;
  color: #718096;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.canpage-contact-form-group {
  margin-bottom: 2rem;
  position: relative;
}

.canpage-contact-input-hint {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  min-height: 1.2rem;
  transition: all 0.3s ease;
}

.canpage-contact-input-hint.valid {
  color: #38a169;
}

.canpage-contact-input-hint.error {
  color: #e53e3e;
}

.canpage-contact-input-container {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.canpage-contact-input-container i {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #a0aec0;
  font-size: 1.2rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.canpage-contact-form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.canpage-contact-form-textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f7fafc;
  resize: vertical;
  min-height: 120px;
  font-family: 'Karla', sans-serif;
}

.canpage-contact-form-input:focus,
.canpage-contact-form-textarea:focus {
  outline: none;
  border-color: #6a11cb;
  background: white;
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
  transform: translateY(-2px);
}

.canpage-contact-form-input:focus + .canpage-contact-input-container i,
.canpage-contact-form-textarea:focus + .canpage-contact-input-container i {
  color: #6a11cb;
}

.canpage-contact-form-input.valid,
.canpage-contact-form-textarea.valid {
  border-color: #38a169;
}

.canpage-contact-form-input.error,
.canpage-contact-form-textarea.error {
  border-color: #e53e3e;
}

.canpage-contact-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.canpage-contact-form-checkbox {
  margin-top: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 4px;
  border: 2px solid #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.canpage-contact-form-checkbox:checked {
  background-color: #6a11cb;
  border-color: #6a11cb;
}

.canpage-contact-checkbox-label {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.4;
  cursor: pointer;
}

.canpage-contact-terms-link {
  color: #6a11cb;
  text-decoration: none;
  font-weight: 500;
}

.canpage-contact-terms-link:hover {
  text-decoration: underline;
}

.canpage-contact-checkbox-hint {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  color: #e53e3e;
}

.canpage-contact-submit-button {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.canpage-contact-submit-button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(106, 17, 203, 0.3);
}

.canpage-contact-submit-button:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.canpage-contact-alternative {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.canpage-contact-alternative-title {
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.canpage-contact-alternative-text {
  color: #718096;
  line-height: 1.6;
}

.canpage-contact-email-link {
  color: #6a11cb;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}

.canpage-contact-email-link:hover {
  text-decoration: underline;
}

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

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

.canpage-contact-success-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.canpage-contact-success-icon {
  margin-bottom: 1.5rem;
}

.canpage-contact-success-icon i {
  font-size: 4rem;
  color: #38a169;
}

.canpage-contact-success-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.canpage-contact-success-message {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.canpage-contact-success-close {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.canpage-contact-success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

@media (max-width: 768px) {
  .canpage-contact-hero {
    height: 30vh;
  }
  
  .canpage-contact-title {
    font-size: 2.2rem;
  }
  
  .canpage-contact-form-section {
    padding: 2rem 1rem;
    top: 35px;
  }
  
  .canpage-contact-wrapper {
    padding: 2rem;
    transform: translateY(-30px);
    margin-top: -30px;
  }
  
  .canpage-contact-form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .canpage-contact-hero {
    height: 25vh;
  }
  
  .canpage-contact-content {
    padding: 1rem 0.5rem;
  }
  
  .canpage-contact-title {
    font-size: 1.8rem;
  }
  
  .canpage-contact-description {
    font-size: 1rem;
  }
  
  .canpage-contact-wrapper {
    padding: 1.5rem;
    transform: translateY(-20px);
    margin-top: -20px;
  }
  
  .canpage-contact-form-title {
    font-size: 1.5rem;
  }
  
  .canpage-contact-form-input,
  .canpage-contact-form-textarea {
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
  }
  
  .canpage-contact-input-container i {
    left: 0.8rem;
    top: 0.8rem;
    font-size: 1rem;
  }
  
  .canpage-contact-email-link {
    font-size: 0.9rem;
  }
}

.canpage-privacy-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.canpage-privacy-hero {
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
}

.canpage-privacy-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");
  animation: canpage-privacy-float 20s linear infinite;
}

@keyframes canpage-privacy-float {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-100px) translateX(-100px);
  }
}

.canpage-privacy-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.canpage-privacy-title {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.canpage-privacy-intro {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.95;
}

.canpage-privacy-icon {
  font-size: 8rem;
  opacity: 0.3;
  z-index: 2;
  animation: canpage-privacy-icon-float 3s ease-in-out infinite;
}

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

.canpage-privacy-content-section {
  padding: 4rem 2rem;
}

.canpage-privacy-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.canpage-privacy-points {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.canpage-privacy-point {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #667eea;
}

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

.canpage-privacy-point-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.canpage-privacy-point-content {
  flex: 1;
}

.canpage-privacy-point-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d3748;
  min-height: 2.5rem;
}

.canpage-privacy-point-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
}

.canpage-privacy-email {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}

.canpage-privacy-email:hover {
  text-decoration: underline;
}

.canpage-privacy-update {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.canpage-privacy-update-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  backdrop-filter: blur(10px);
}

.canpage-privacy-update-content {
  flex: 1;
}

.canpage-privacy-update-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.canpage-privacy-update-text {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
}

@media (max-width: 1024px) {
  .canpage-privacy-hero {
    padding: 3rem 1.5rem;
  }
  
  .canpage-privacy-title {
    font-size: 3rem;
  }
  
  .canpage-privacy-icon {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .canpage-privacy-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 1rem;
  }
  
  .canpage-privacy-title {
    font-size: 2.5rem;
  }
  
  .canpage-privacy-intro {
    font-size: 1.1rem;
  }
  
  .canpage-privacy-icon {
    font-size: 5rem;
  }
  
  .canpage-privacy-content-section {
    padding: 3rem 1rem;
  }
  
  .canpage-privacy-point {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .canpage-privacy-point-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .canpage-privacy-update {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .canpage-privacy-hero {
    padding: 2rem 0.5rem;
  }
  
  .canpage-privacy-title {
    font-size: 2rem;
  }
  
  .canpage-privacy-intro {
    font-size: 1rem;
  }
  
  .canpage-privacy-icon {
    font-size: 4rem;
  }
  
  .canpage-privacy-content-section {
    padding: 2rem 0.5rem;
  }
  
  .canpage-privacy-point {
    padding: 1.5rem;
  }
  
  .canpage-privacy-point-title {
    font-size: 1.5rem;
  }
  
  .canpage-privacy-point-text {
    font-size: 1rem;
  }
  
  .canpage-privacy-update {
    padding: 1.5rem;
  }
  
  .canpage-privacy-update-title {
    font-size: 1.5rem;
  }
  
  .canpage-privacy-update-text {
    font-size: 1rem;
  }
}

.canpage-terms-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.canpage-terms-hero {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
}

.canpage-terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: canpage-terms-shift 25s linear infinite;
}

@keyframes canpage-terms-shift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-60px) translateY(-60px);
  }
}

.canpage-terms-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.canpage-terms-title {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.canpage-terms-intro {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.95;
}

.canpage-terms-icon {
  font-size: 8rem;
  opacity: 0.3;
  z-index: 2;
  animation: canpage-terms-icon-bounce 2s ease-in-out infinite;
}

@keyframes canpage-terms-icon-bounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.canpage-terms-content-section {
  padding: 4rem 2rem;
}

.canpage-terms-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.canpage-terms-points {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.canpage-terms-point {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #ff6b6b;
  position: relative;
  overflow: hidden;
}

.canpage-terms-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

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

.canpage-terms-point-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.canpage-terms-point-content {
  flex: 1;
}

.canpage-terms-point-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d3748;
  min-height: 2.5rem;
}

.canpage-terms-point-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
}

.canpage-terms-acceptance {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.canpage-terms-acceptance::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");
  animation: canpage-terms-acceptance-float 30s linear infinite;
}

.canpage-terms-acceptance-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.canpage-terms-acceptance-content {
  flex: 1;
  z-index: 2;
}

.canpage-terms-acceptance-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.canpage-terms-acceptance-text {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
}

@media (max-width: 1024px) {
  .canpage-terms-hero {
    padding: 3rem 1.5rem;
  }
  
  .canpage-terms-title {
    font-size: 3rem;
  }
  
  .canpage-terms-icon {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .canpage-terms-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 1rem;
  }
  
  .canpage-terms-title {
    font-size: 2.5rem;
  }
  
  .canpage-terms-intro {
    font-size: 1.1rem;
  }
  
  .canpage-terms-icon {
    font-size: 5rem;
  }
  
  .canpage-terms-content-section {
    padding: 3rem 1rem;
  }
  
  .canpage-terms-point {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .canpage-terms-point-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .canpage-terms-acceptance {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .canpage-terms-hero {
    padding: 2rem 0.5rem;
  }
  
  .canpage-terms-title {
    font-size: 2rem;
  }
  
  .canpage-terms-intro {
    font-size: 1rem;
  }
  
  .canpage-terms-icon {
    font-size: 4rem;
  }
  
  .canpage-terms-content-section {
    padding: 2rem 0.5rem;
  }
  
  .canpage-terms-point {
    padding: 1.5rem;
  }
  
  .canpage-terms-point-title {
    font-size: 1.5rem;
  }
  
  .canpage-terms-point-text {
    font-size: 1rem;
  }
  
  .canpage-terms-acceptance {
    padding: 1.5rem;
  }
  
  .canpage-terms-acceptance-title {
    font-size: 1.5rem;
  }
  
  .canpage-terms-acceptance-text {
    font-size: 1rem;
  }
}

.canpage-cookies-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.canpage-cookies-hero {
  background: linear-gradient(135deg, #fd746c, #ff9068);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
}

.canpage-cookies-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3Ccircle cx='60' cy='40' r='4'/%3E%3Ccircle cx='20' cy='40' r='4'/%3E%3Ccircle cx='40' cy='20' r='4'/%3E%3Ccircle cx='40' cy='60' r='4'/%3E%3Ccircle cx='60' cy='60' r='4'/%3E%3Ccircle cx='20' cy='20' r='4'/%3E%3Ccircle cx='60' cy='20' r='4'/%3E%3Ccircle cx='20' cy='60' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: canpage-cookies-rotate 40s linear infinite;
}

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

.canpage-cookies-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.canpage-cookies-title {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.canpage-cookies-intro {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.95;
}

.canpage-cookies-icon {
  font-size: 8rem;
  opacity: 0.3;
  z-index: 2;
  animation: canpage-cookies-icon-spin 4s ease-in-out infinite;
}

@keyframes canpage-cookies-icon-spin {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.1);
  }
}

.canpage-cookies-content-section {
  padding: 4rem 2rem;
}

.canpage-cookies-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.canpage-cookies-points {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.canpage-cookies-point {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #fd746c;
  position: relative;
  overflow: hidden;
}

.canpage-cookies-point::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(253,116,108,0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

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

.canpage-cookies-point-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fd746c, #ff9068);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  z-index: 2;
}

.canpage-cookies-point-content {
  flex: 1;
  z-index: 2;
}

.canpage-cookies-point-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d3748;
  min-height: 2.5rem;
}

.canpage-cookies-point-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
}

.canpage-cookies-controls {
  background: linear-gradient(135deg, #fd746c, #ff9068);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(253, 116, 108, 0.3);
  position: relative;
  overflow: hidden;
}

.canpage-cookies-controls::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");
  animation: canpage-cookies-controls-move 35s linear infinite;
}

.canpage-cookies-controls-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.canpage-cookies-controls-title {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  min-height: 2.8rem;
}

.canpage-cookies-controls-text {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.canpage-cookies-email {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  word-break: break-all;
}

.canpage-cookies-email:hover {
  opacity: 0.9;
}

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

.canpage-cookies-accept-all {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.canpage-cookies-accept-all:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.canpage-cookies-manage {
  background: white;
  color: #fd746c;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.canpage-cookies-manage:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .canpage-cookies-hero {
    padding: 3rem 1.5rem;
  }
  
  .canpage-cookies-title {
    font-size: 3rem;
  }
  
  .canpage-cookies-icon {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .canpage-cookies-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 1rem;
  }
  
  .canpage-cookies-title {
    font-size: 2.5rem;
  }
  
  .canpage-cookies-intro {
    font-size: 1.1rem;
  }
  
  .canpage-cookies-icon {
    font-size: 5rem;
  }
  
  .canpage-cookies-content-section {
    padding: 3rem 1rem;
  }
  
  .canpage-cookies-point {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .canpage-cookies-point-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .canpage-cookies-controls {
    padding: 2rem;
  }
  
  .canpage-cookies-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .canpage-cookies-accept-all,
  .canpage-cookies-manage {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .canpage-cookies-hero {
    padding: 2rem 0.5rem;
  }
  
  .canpage-cookies-title {
    font-size: 2rem;
  }
  
  .canpage-cookies-intro {
    font-size: 1rem;
  }
  
  .canpage-cookies-icon {
    font-size: 4rem;
  }
  
  .canpage-cookies-content-section {
    padding: 2rem 0.5rem;
  }
  
  .canpage-cookies-point {
    padding: 1.5rem;
  }
  
  .canpage-cookies-point-title {
    font-size: 1.5rem;
  }
  
  .canpage-cookies-point-text {
    font-size: 1rem;
  }
  
  .canpage-cookies-controls {
    padding: 1.5rem;
  }
  
  .canpage-cookies-controls-title {
    font-size: 1.5rem;
  }
  
  .canpage-cookies-controls-text {
    font-size: 1rem;
  }
}

.canpage-responsible-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.canpage-responsible-hero {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
}

.canpage-responsible-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");
  animation: canpage-responsible-float 25s linear infinite;
}

.canpage-responsible-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.canpage-responsible-title {
  font-family: 'Marcellus', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4rem;
}

.canpage-responsible-intro {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.95;
}

.canpage-responsible-icon {
  font-size: 8rem;
  opacity: 0.3;
  z-index: 2;
  animation: canpage-responsible-heartbeat 2s ease-in-out infinite;
}

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

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

.canpage-responsible-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.canpage-responsible-points {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.canpage-responsible-point {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #4facfe;
  position: relative;
  overflow: hidden;
}

.canpage-responsible-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.05), rgba(0, 242, 254, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.canpage-responsible-point:hover::before {
  opacity: 1;
}

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

.canpage-responsible-point-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  z-index: 2;
}

.canpage-responsible-point-content {
  flex: 1;
  z-index: 2;
}

.canpage-responsible-point-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d3748;
  min-height: 2.5rem;
}

.canpage-responsible-point-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
}

.canpage-responsible-resources {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
  position: relative;
  overflow: hidden;
}

.canpage-responsible-resources::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' 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");
  animation: canpage-responsible-resources-drift 30s linear infinite;
}

.canpage-responsible-resources-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.canpage-responsible-resources-title {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  min-height: 2.8rem;
}

.canpage-responsible-resources-text {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.canpage-responsible-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.canpage-responsible-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

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

.canpage-responsible-link i {
  font-size: 1.5rem;
  opacity: 0.9;
}

.canpage-responsible-link span {
  font-weight: 500;
  flex: 1;
  text-align: left;
}

@media (max-width: 1024px) {
  .canpage-responsible-hero {
    padding: 3rem 1.5rem;
  }
  
  .canpage-responsible-title {
    font-size: 3rem;
  }
  
  .canpage-responsible-icon {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .canpage-responsible-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 1rem;
  }
  
  .canpage-responsible-title {
    font-size: 2.5rem;
  }
  
  .canpage-responsible-intro {
    font-size: 1.1rem;
  }
  
  .canpage-responsible-icon {
    font-size: 5rem;
  }
  
  .canpage-responsible-content-section {
    padding: 3rem 1rem;
  }
  
  .canpage-responsible-point {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .canpage-responsible-point-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .canpage-responsible-resources {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .canpage-responsible-hero {
    padding: 2rem 0.5rem;
  }
  
  .canpage-responsible-title {
    font-size: 2rem;
  }
  
  .canpage-responsible-intro {
    font-size: 1rem;
  }
  
  .canpage-responsible-icon {
    font-size: 4rem;
  }
  
  .canpage-responsible-content-section {
    padding: 2rem 0.5rem;
  }
  
  .canpage-responsible-point {
    padding: 1.5rem;
  }
  
  .canpage-responsible-point-title {
    font-size: 1.5rem;
  }
  
  .canpage-responsible-point-text {
    font-size: 1rem;
  }
  
  .canpage-responsible-resources {
    padding: 1.5rem;
  }
  
  .canpage-responsible-resources-title {
    font-size: 1.5rem;
  }
  
  .canpage-responsible-resources-text {
    font-size: 1rem;
  }
  
  .canpage-responsible-link {
    padding: 1rem;
  }
  
  .canpage-responsible-link i {
    font-size: 1.2rem;
  }
}

.canpage-notfound-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  display: flex;
  flex-direction: column;
}

.canpage-notfound-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.canpage-notfound-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");
  animation: canpage-notfound-float 40s linear infinite;
}

.canpage-notfound-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.canpage-notfound-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: canpage-notfound-icon-pulse 2s ease-in-out infinite;
}

@keyframes canpage-notfound-icon-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.canpage-notfound-title {
  font-family: 'Marcellus', serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  min-height: 4.5rem;
}

.canpage-notfound-description {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.canpage-notfound-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.canpage-notfound-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
}

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

.canpage-notfound-help {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.5);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.canpage-notfound-help:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.canpage-notfound-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.canpage-notfound-animation {
  position: relative;
  width: 300px;
  height: 300px;
}

.canpage-notfound-circle {
  position: absolute;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.canpage-notfound-circle-1 {
  width: 200px;
  height: 200px;
  animation: canpage-notfound-circle-1 3s ease-in-out infinite;
}

.canpage-notfound-circle-2 {
  width: 150px;
  height: 150px;
  animation: canpage-notfound-circle-2 4s ease-in-out infinite;
}

.canpage-notfound-circle-3 {
  width: 100px;
  height: 100px;
  animation: canpage-notfound-circle-3 5s ease-in-out infinite;
}

@keyframes canpage-notfound-circle-1 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes canpage-notfound-circle-2 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
}

@keyframes canpage-notfound-circle-3 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.canpage-notfound-compass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  animation: canpage-notfound-compass-spin 8s linear infinite;
}

@keyframes canpage-notfound-compass-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.canpage-notfound-suggestions {
  background: rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.2);
}

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

.canpage-notfound-suggestions-title {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  min-height: 2.8rem;
}

.canpage-notfound-suggestions-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

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

.canpage-notfound-suggestion {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.canpage-notfound-suggestion:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.canpage-notfound-suggestion i {
  font-size: 1.5rem;
  opacity: 0.9;
}

.canpage-notfound-suggestion span {
  font-weight: 500;
  flex: 1;
  text-align: left;
}

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

.canpage-notfound-help-modal.active {
  opacity: 1;
  visibility: visible;
}

.canpage-notfound-help-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  color: #2d3748;
}

.canpage-notfound-help-modal.active .canpage-notfound-help-content {
  transform: scale(1);
}

.canpage-notfound-help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.canpage-notfound-help-title {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  margin: 0;
  color: #2d3748;
}

.canpage-notfound-help-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #718096;
  cursor: pointer;
  transition: color 0.3s ease;
}

.canpage-notfound-help-close:hover {
  color: #2d3748;
}

.canpage-notfound-help-body {
  text-align: center;
}

.canpage-notfound-help-text {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.canpage-notfound-help-contact {
  display: flex;
  justify-content: center;
}

.canpage-notfound-help-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background: #f7fafc;
  transition: all 0.3s ease;
  word-break: break-all;
}

.canpage-notfound-help-email:hover {
  background: #edf2f7;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .canpage-notfound-hero {
    padding: 3rem 1.5rem;
  }
  
  .canpage-notfound-title {
    font-size: 3.5rem;
  }
  
  .canpage-notfound-animation {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .canpage-notfound-hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 3rem 1rem;
  }
  
  .canpage-notfound-title {
    font-size: 3rem;
  }
  
  .canpage-notfound-description {
    font-size: 1.1rem;
  }
  
  .canpage-notfound-animation {
    width: 200px;
    height: 200px;
  }
  
  .canpage-notfound-compass {
    font-size: 3rem;
  }
  
  .canpage-notfound-suggestions {
    padding: 2rem 1rem;
  }
  
  .canpage-notfound-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .canpage-notfound-hero {
    padding: 2rem 0.5rem;
  }
  
  .canpage-notfound-title {
    font-size: 2.5rem;
  }
  
  .canpage-notfound-description {
    font-size: 1rem;
  }
  
  .canpage-notfound-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .canpage-notfound-button,
  .canpage-notfound-help {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .canpage-notfound-animation {
    width: 150px;
    height: 150px;
  }
  
  .canpage-notfound-compass {
    font-size: 2.5rem;
  }
  
  .canpage-notfound-suggestions {
    padding: 1.5rem 0.5rem;
  }
  
  .canpage-notfound-suggestions-title {
    font-size: 1.8rem;
  }
  
  .canpage-notfound-suggestions-text {
    font-size: 1rem;
  }
  
  .canpage-notfound-suggestion {
    padding: 1.2rem;
  }
  
  .canpage-notfound-help-email {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
}