@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0f;
  background-image: radial-gradient(circle at 20% 50%, rgba(0, 245, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(255, 255, 0, 0.03) 0%, transparent 50%);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

p {
  margin-bottom: 24px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a {
  transition: all 150ms ease-in-out;
  color: #00f5ff;
}
a:hover {
  color: #ff00ff;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

ul,
ol {
  list-style: none;
}

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

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:focus {
  outline: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section {
  padding: 96px 0;
}
@media (min-width: 768px) {
  section {
    padding: 96px 0;
  }
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid #00f5ff;
  outline-offset: 2px;
}

::selection {
  background-color: #00f5ff;
  color: #0a0a0f;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #151520;
  border-left: 1px solid #2a2a3a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00f5ff 0%, #ff00ff 100%);
  border-radius: 9999px;
  border: 2px solid #151520;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5ffbff 0%, #ff5cff 100%);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.highlight-cyan {
  color: #00f5ff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.highlight-magenta {
  color: #ff00ff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.highlight-yellow {
  color: #ffff00;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.highlight-orange {
  color: #ff6b00;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.highlight-green {
  color: #00ff88;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.gradient-text {
  background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 25%, #ffff00 50%, #ff6b00 75%, #00f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #2a2a3a;
  box-shadow: 0 4px 20px rgba(0, 245, 255, 0.1);
  z-index: 1020;
  padding: 24px 0;
  transition: all 250ms ease-in-out;
}
.navbar .container {
  position: relative;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo {
  color: inherit;
  text-decoration: none;
}
.navbar-logo:hover {
  text-decoration: none;
}
.navbar-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 50%, #ffff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}
.navbar-logo:hover {
  filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
}
.navbar .logo-text {
  letter-spacing: -0.5px;
}
.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 100%);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  transition: all 250ms ease-in-out;
}
.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.navbar-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 15, 0.98);
  border-bottom: 2px solid #2a2a3a;
  border-top: 1px solid #2a2a3a;
  padding: 32px 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 245, 255, 0.2);
}
@media (min-width: 1024px) {
  .navbar-menu {
    display: flex;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 48px;
    align-items: center;
  }
}
.navbar-menu.active {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.navbar-menu li {
  width: 100%;
}
@media (min-width: 1024px) {
  .navbar-menu li {
    width: auto;
  }
}
.navbar-menu a {
  display: block;
  padding: 24px 24px;
  font-weight: 500;
  color: #b8b8d4;
  transition: all 150ms ease-in-out;
  position: relative;
}
@media (min-width: 1024px) {
  .navbar-menu a {
    padding: 16px 0;
  }
  .navbar-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 100%);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    transition: width 250ms ease-in-out;
  }
  .navbar-menu a:hover::after, .navbar-menu a.active::after {
    width: 100%;
  }
}
.navbar-menu a:hover {
  color: #00f5ff;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  background-color: rgba(0, 245, 255, 0.05);
}
@media (min-width: 1024px) {
  .navbar-menu a:hover {
    background: none;
  }
}
.navbar-menu a.active {
  color: #00f5ff;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.navbar-menu a.warning-link {
  color: #ff0055;
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}
.navbar-menu a.warning-link:hover {
  color: #ff0055;
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid #00f5ff;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: linear-gradient(135deg, #00f5ff 0%, #00c9d4 100%);
  color: #0a0a0f;
  border-color: #00f5ff;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  font-weight: 700;
}
.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #5ffbff 0%, #00f5ff 100%);
  border-color: #5ffbff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
  text-shadow: none;
}
.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.btn-secondary {
  background: linear-gradient(135deg, #ff00ff 0%, #d900d9 100%);
  color: #ffffff;
  border-color: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  font-weight: 700;
}
.btn-secondary:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff5cff 0%, #ff00ff 100%);
  border-color: #ff5cff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}
.btn-secondary:active:not(:disabled) {
  transform: translateY(0);
}
.btn-outline {
  background-color: transparent;
  color: #00f5ff;
  border: 2px solid #00f5ff;
  box-shadow: inset 0 0 20px rgba(0, 245, 255, 0.1);
}
.btn-outline:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  color: #ffffff;
  border-color: #ff00ff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.btn-outline:active:not(:disabled) {
  transform: translateY(0);
}
.btn-large {
  padding: 32px 64px;
  font-size: 18px;
}
.btn-small {
  padding: 16px 32px;
  font-size: 14px;
}
.btn-block {
  width: 100%;
  display: flex;
}

.form-group {
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .form-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.form-label {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 24px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #ffffff;
  background-color: rgba(26, 26, 40, 0.8);
  border: 2px solid #2a2a3a;
  border-radius: 8px;
  transition: all 150ms ease-in-out;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #00f5ff;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  background-color: rgb(26, 26, 40);
}
.form-input::placeholder, .form-select::placeholder, .form-textarea::placeholder {
  color: #8888aa;
}
.form-input:disabled, .form-select:disabled, .form-textarea:disabled {
  background-color: rgba(26, 26, 40, 0.5);
  cursor: not-allowed;
  opacity: 0.5;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
  padding-right: 64px;
}
.form-section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #1f1f2e;
}
.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #ffffff;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .radio-group,
  .checkbox-group {
    flex-direction: row;
    gap: 48px;
  }
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 400;
}
.radio-label input[type=radio],
.radio-label input[type=checkbox],
.checkbox-label input[type=radio],
.checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #00f5ff;
}
.radio-label span,
.checkbox-label span {
  user-select: none;
}

.checkbox-label {
  align-items: flex-start;
}
.checkbox-label input[type=checkbox] {
  margin-top: 2px;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.newsletter-input {
  flex: 1;
  padding: 24px;
  border: 1px solid #2a2a3a;
  border-radius: 8px;
  font-size: 14px;
}
.newsletter-input:focus {
  outline: none;
  border-color: #00f5ff;
}

.feature-card,
.cat-card,
.kitten-card,
.testimonial-card,
.pricing-card {
  background-color: #1a1a28;
  border: 2px solid #2a2a3a;
  border-radius: 16px;
  padding: 48px;
  transition: all 250ms ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.feature-card:hover,
.cat-card:hover,
.kitten-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
  border-color: #00f5ff;
  box-shadow: 0 8px 30px rgba(0, 245, 255, 0.3), 0 0 20px rgba(0, 245, 255, 0.5);
  transform: translateY(-4px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
}
@media (min-width: 768px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.feature-card {
  text-align: center;
}
.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  border: 2px solid #00f5ff;
  border-radius: 9999px;
  color: #00f5ff;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.feature-card .feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-card .feature-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.8));
}
.feature-card .feature-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #00f5ff;
}
.feature-card .feature-description {
  color: #b8b8d4;
  line-height: 1.6;
  margin: 0;
}

.cats-grid,
.kittens-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
}
@media (min-width: 768px) {
  .cats-grid,
  .kittens-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

.cat-image,
.kitten-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  background-color: transparent;
  border: 2px solid #2a2a3a;
  position: relative;
}
.cat-image::before,
.kitten-image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.cat-image > *,
.kitten-image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cat-image img,
.kitten-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kitten-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.kitten-carousel .carousel-images {
  position: relative;
  width: 100%;
  height: 100%;
}
.kitten-carousel .carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.kitten-carousel .carousel-image.active {
  opacity: 1;
  pointer-events: auto;
}
.kitten-carousel .carousel-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 50%, rgba(255, 255, 0, 0.1) 100%);
  color: #00f5ff;
  font-size: 18px;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.kitten-carousel .carousel-image .image-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kitten-carousel .carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kitten-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  color: #00f5ff;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  z-index: 2;
}
.kitten-carousel .carousel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kitten-carousel .carousel-btn:hover {
  background-color: rgba(0, 245, 255, 0.2);
  border-color: #00f5ff;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.kitten-carousel .carousel-btn.carousel-prev {
  left: 16px;
}
.kitten-carousel .carousel-btn.carousel-next {
  right: 16px;
}
.kitten-carousel .carousel-btn svg {
  filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.8));
}
.kitten-carousel .carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 2;
}
.kitten-carousel .carousel-dots .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.kitten-carousel .carousel-dots .carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.kitten-carousel .carousel-dots .carousel-dot.active {
  background-color: #00f5ff;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
  border-color: #00f5ff;
}

.cat-badge,
.kitten-status {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}
.cat-badge.queen,
.kitten-status.queen {
  color: #ff00ff;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}
.cat-badge.king,
.kitten-status.king {
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}
.cat-badge.available,
.kitten-status.available {
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}
.cat-badge.reserved,
.kitten-status.reserved {
  color: #ffaa00;
  text-shadow: 0 0 10px rgba(255, 170, 0, 0.8);
}
.cat-badge.polydactyl,
.kitten-status.polydactyl {
  color: #ff6b00;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
}

.cat-name,
.kitten-name {
  font-size: 1.75rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-details,
.kitten-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1f1f2e;
}
.cat-details .detail-item,
.cat-details .detail-row,
.kitten-details .detail-item,
.kitten-details .detail-row {
  font-size: 14px;
  color: #b8b8d4;
}

.cat-description,
.kitten-description {
  color: #b8b8d4;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cat-health .health-title,
.health-list .health-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}
.cat-health .health-list,
.health-list .health-list {
  list-style: none;
  padding-left: 0;
}
.cat-health .health-list li,
.health-list .health-list li {
  padding: 8px 0;
  font-size: 14px;
  color: #00ff88;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cat-health .health-list li::before,
.health-list .health-list li::before {
  content: "✓";
  font-weight: bold;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
}
@media (min-width: 768px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.testimonial-card {
  background-color: #151520;
  border: 1px solid #1f1f2e;
}
.testimonial-card:hover {
  background-color: #0a0a0f;
}
.testimonial-card .testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-card .testimonial-text::before {
  content: '"';
}
.testimonial-card .testimonial-text::after {
  content: '"';
}
.testimonial-card .testimonial-author {
  gap: 8px;
}
.testimonial-card .testimonial-author {
  display: flex;
  flex-direction: column;
}
.testimonial-card .testimonial-author .author-name {
  font-weight: 600;
  color: #ffffff;
}
.testimonial-card .testimonial-author .author-location {
  font-size: 14px;
  color: #b8b8d4;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
}
@media (min-width: 768px) {
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.pricing-card {
  text-align: center;
}
.pricing-card.featured {
  border-color: #00f5ff;
  border-width: 2px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 245, 255, 0.2);
  transform: scale(1.05);
}
.pricing-card .pricing-title {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.pricing-card .pricing-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: #00f5ff;
  margin-bottom: 48px;
}
.pricing-card .pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card .pricing-features li {
  padding: 16px 0;
  border-bottom: 1px solid #1f1f2e;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing-card .pricing-features li::before {
  content: "✓";
  color: #00ff88;
  font-weight: bold;
}
.pricing-card .pricing-features li:last-child {
  border-bottom: none;
}
.pricing-card .pricing-note {
  font-size: 14px;
  color: #b8b8d4;
  margin-top: 24px;
}

.hero {
  background: linear-gradient(135deg, #0a0a0f 0%, #151520 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero {
    padding: 120px 0;
    min-height: 700px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center left, rgba(0, 245, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-content {
  max-width: 600px;
  text-align: left;
  margin: 0;
  padding-left: 48px;
}
@media (min-width: 1024px) {
  .hero-content {
    max-width: 700px;
  }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 50%, #ffff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 5s ease infinite;
  filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.5));
}
.hero-subtitle {
  font-size: 18px;
  color: #b8b8d4;
  line-height: 1.6;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 64px;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  border: 2px solid #00f5ff;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.hero .badge-label {
  font-size: 14px;
  font-weight: 700;
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}
.hero.hero-index::before {
  background-image: url("../images/headers/header--index.png");
}
.hero.hero-our-cats::before {
  background-image: url("../images/headers/header--breeders.png");
}
.hero.hero-kittens::before {
  background-image: url("../images/headers/header--kittens.png");
}
.hero.hero-contact::before {
  background-image: url("../images/headers/header--contact.png");
}
.hero.hero-reserve::before {
  background-image: url("../images/headers/header--application.png");
}
.hero.hero-scam::before {
  background-image: url("../images/headers/header--scam.png");
}

.page-header {
  background: linear-gradient(135deg, #0a0a0f 0%, #151520 100%);
  padding: 96px 0;
  text-align: center;
  border-bottom: 2px solid #2a2a3a;
  box-shadow: 0 4px 20px rgba(0, 245, 255, 0.1);
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 0;
}
.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header .page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 24px;
  background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 50%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header .page-subtitle {
  font-size: 18px;
  color: #b8b8d4;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-header.header-our-cats::before {
  background-image: url("../images/headers/header--breeders.png");
}
.page-header.header-kittens::before {
  background-image: url("../images/headers/header--kittens.png");
}
.page-header.header-contact::before {
  background-image: url("../images/headers/header--contact.png");
}
.page-header.header-reserve::before {
  background-image: url("../images/headers/header--application.png");
}
.page-header.header-scam::before {
  background-image: url("../images/headers/header--scam.png");
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 64px;
  font-weight: 700;
  background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-preview {
  background: linear-gradient(180deg, #0a0a0f 0%, #151520 50%, #0a0a0f 100%);
  position: relative;
}
.about-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.about-preview .about-content {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-preview .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
}
.about-preview .about-text .about-description {
  color: #b8b8d4;
  line-height: 1.7;
  margin-bottom: 32px;
}
.about-preview .about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2);
}
.about-preview .about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.about-preview .about-image .image-placeholder {
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(25.041509434, 25.041509434, 38.158490566) 0%, #151520 100%);
  color: #8888aa;
  position: relative;
}
.about-preview .about-image .image-placeholder::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.about-preview .about-image .image-placeholder > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-preview .about-image .image-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-section {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, rgba(255, 0, 255, 0.15) 50%, rgba(255, 255, 0, 0.15) 100%);
  border-top: 2px solid #2a2a3a;
  border-bottom: 2px solid #2a2a3a;
  box-shadow: inset 0 0 50px rgba(0, 245, 255, 0.2);
  color: #ffffff;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 50%, #ffff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.cta-section .cta-description {
  font-size: 18px;
  color: #b8b8d4;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.cta-section .cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .btn-primary {
  background: linear-gradient(135deg, #00f5ff 0%, #5ffbff 100%);
  color: #0a0a0f;
  border-color: #00f5ff;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.cta-section .btn-primary:hover {
  box-shadow: 0 0 40px rgb(0, 245, 255);
  transform: translateY(-3px);
}
.cta-section .btn-secondary {
  background: linear-gradient(135deg, #ff00ff 0%, #ff5cff 100%);
  color: #ffffff;
  border-color: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}
.cta-section .btn-secondary:hover {
  box-shadow: 0 0 40px rgb(255, 0, 255);
  transform: translateY(-3px);
}

.status-banner {
  padding: 48px;
  border-radius: 12px;
  margin-bottom: 64px;
  text-align: center;
}
.status-banner.available {
  background-color: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
}
.status-banner.available .status-title {
  color: rgb(0, 204, 108.8);
}
.status-banner.expected {
  background-color: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
}
.status-banner.expected .status-title {
  color: #00c4cc;
}
.status-banner .status-title {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.status-banner .status-text {
  color: #b8b8d4;
}

.litters-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.litter-card {
  background-color: #0a0a0f;
  border: 1px solid #1f1f2e;
  border-radius: 12px;
  padding: 48px;
  transition: all 250ms ease-in-out;
}
.litter-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 245, 255, 0.1);
  border-color: #2a2a3a;
}
.litter-card .litter-title {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.litter-card .litter-details {
  margin-bottom: 24px;
}
.litter-card .litter-details .litter-text {
  font-size: 16px;
  color: #b8b8d4;
  margin-bottom: 8px;
}
.litter-card .litter-description {
  color: #b8b8d4;
  line-height: 1.6;
  margin-bottom: 32px;
}

.included-section {
  background-color: #151520;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 640px) {
  .included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.included-item {
  display: flex;
  gap: 24px;
}
.included-item .included-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 245, 255, 0.1);
  border-radius: 8px;
  color: #00f5ff;
}
.included-item .included-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.included-item .included-title {
  font-weight: 600;
  margin-bottom: 8px;
}
.included-item .included-text {
  font-size: 14px;
  color: #b8b8d4;
  margin: 0;
}

.footer {
  background: linear-gradient(180deg, #151520 0%, #000000 100%);
  border-top: 2px solid #2a2a3a;
  box-shadow: 0 -4px 20px rgba(0, 245, 255, 0.1);
  color: #b8b8d4;
  padding: 96px 0 48px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #00f5ff 50%, transparent 100%);
}
.footer-content {
  display: grid;
  gap: 64px;
  margin-bottom: 64px;
}
@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
}
.footer-section {
  gap: 24px;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-title {
  font-size: 1.25rem;
  background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}
.footer-description {
  color: #b8b8d4;
  line-height: 1.6;
  margin: 0;
}
.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #00f5ff;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links a {
  color: #b8b8d4;
  transition: all 150ms ease-in-out;
  font-size: 14px;
}
.footer-links a:hover {
  color: #00f5ff;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  padding-left: 5px;
}
.footer-text {
  color: #b8b8d4;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.footer-bottom {
  padding-top: 48px;
  border-top: 2px solid #2a2a3a;
  text-align: center;
}
.footer-bottom p {
  color: #8888aa;
  font-size: 14px;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.footer-social .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b8d4;
  transition: all 250ms ease-in-out;
  border-radius: 8px;
}
.footer-social .social-icon svg {
  width: 24px;
  height: 24px;
}
.footer-social .social-icon:hover {
  transform: translateY(-2px);
}
.footer-social .social-icon.facebook:hover {
  color: #1877f2;
}
.footer-social .social-icon.instagram:hover {
  color: #e4405f;
}
.footer-social .social-icon.youtube:hover {
  color: #ff0000;
}
.footer-social .social-icon.twitter:hover {
  color: #1da1f2;
}

.contact-section .contact-grid {
  display: grid;
  gap: 96px;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-section .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.contact-section .contact-form-wrapper,
.contact-section .contact-info-wrapper {
  background-color: #0a0a0f;
  border: 1px solid #1f1f2e;
  border-radius: 16px;
  padding: 64px;
}
.contact-section .form-title,
.contact-section .info-title {
  font-size: 1.75rem;
  margin-bottom: 48px;
}

.contact-methods {
  gap: 48px;
  margin-bottom: 64px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
}

.contact-method {
  display: flex;
  gap: 24px;
}
.contact-method .method-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #151520;
  border-radius: 8px;
  color: #00f5ff;
}
.contact-method .method-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-method .method-content {
  gap: 8px;
}
.contact-method .method-content {
  display: flex;
  flex-direction: column;
}
.contact-method .method-title {
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.contact-method .method-text {
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}
.contact-method .method-note {
  font-size: 14px;
  color: #b8b8d4;
  margin: 0;
}

.response-info {
  padding: 32px;
  background-color: #151520;
  border-radius: 8px;
  margin-bottom: 48px;
}
.response-info .response-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.response-info .response-text {
  font-size: 14px;
  color: #b8b8d4;
  line-height: 1.6;
  margin: 0;
}

.social-links .social-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
.social-links .social-icons {
  display: flex;
  gap: 24px;
}
.social-links .social-icon {
  width: 40px;
  height: 40px;
  background-color: #151520;
  border-radius: 8px;
  color: #ffffff;
  transition: all 250ms ease-in-out;
}
.social-links .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-links .social-icon:hover {
  background-color: #00f5ff;
  color: #ffffff;
  transform: translateY(-2px);
}

.faq-section {
  background-color: #151520;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
}
@media (min-width: 768px) {
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

.faq-item {
  background-color: #0a0a0f;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid #1f1f2e;
}
.faq-item .faq-question {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #ffffff;
}
.faq-item .faq-answer {
  color: #b8b8d4;
  line-height: 1.6;
  margin: 0;
}

.process-section {
  background-color: #151520;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.process-step {
  text-align: center;
  background-color: #0a0a0f;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid #1f1f2e;
}
.process-step .step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #00f5ff 0%, #00c9d4 100%);
  color: #ffffff;
  border-radius: 9999px;
  font-size: 1.25rem;
  font-weight: 700;
}
.process-step .step-number {
  display: flex;
  justify-content: center;
  align-items: center;
}
.process-step .step-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.process-step .step-description {
  color: #b8b8d4;
  line-height: 1.6;
  margin: 0;
}

.application-section .application-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.application-section .application-intro {
  text-align: center;
  margin-bottom: 96px;
}
.application-section .application-intro .form-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
.application-section .application-intro .form-intro {
  font-size: 18px;
  color: #b8b8d4;
  line-height: 1.6;
}

.reservation-form {
  background-color: #151520;
  padding: 64px;
  border-radius: 16px;
  border: 1px solid #1f1f2e;
}
@media (min-width: 768px) {
  .reservation-form {
    padding: 96px;
  }
}

.pricing-section {
  background-color: #151520;
}
.pricing-section .deposit-info {
  max-width: 800px;
  margin: 96px auto 0;
  padding: 48px;
  background-color: #0a0a0f;
  border-radius: 12px;
  border: 1px solid #1f1f2e;
}
.pricing-section .deposit-info .deposit-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  text-align: center;
}
.pricing-section .deposit-info .deposit-text {
  color: #b8b8d4;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

.breeding-info {
  background-color: #151520;
}
.breeding-info .info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
}
@media (min-width: 768px) {
  .breeding-info .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
.breeding-info .info-block {
  background-color: #0a0a0f;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid #1f1f2e;
}
.breeding-info .info-block .info-heading {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #00f5ff;
}
.breeding-info .info-block .info-text {
  color: #b8b8d4;
  line-height: 1.6;
  margin: 0;
}

.alert-header {
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.1) 0%, rgba(255, 0, 85, 0.05) 100%);
  padding: 96px 0;
  text-align: center;
  border-bottom: 3px solid #ff0055;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.alert-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/headers/header--scam.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
}
.alert-header .container {
  position: relative;
  z-index: 1;
}
.alert-header .alert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  color: #ff0055;
}
.alert-header .alert-icon svg {
  width: 100%;
  height: 100%;
}
.alert-header .alert-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ff0055;
  margin-bottom: 24px;
}
.alert-header .alert-subtitle {
  font-size: 18px;
  color: #b8b8d4;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.warning-section .warning-banner {
  padding: 48px;
  border-radius: 12px;
  margin-bottom: 96px;
  border: 2px solid;
}
.warning-section .warning-banner.critical {
  background-color: rgba(255, 0, 85, 0.1);
  border-color: #ff0055;
}
.warning-section .warning-banner.critical .banner-title {
  color: #ff0055;
}
.warning-section .warning-banner .banner-title {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.warning-section .warning-banner .banner-text {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
.warning-section .warning-card {
  background-color: #0a0a0f;
  border: 1px solid #1f1f2e;
  border-radius: 16px;
  padding: 64px;
  margin-bottom: 64px;
}
.warning-section .warning-card .card-title {
  font-size: 2.5rem;
  margin-bottom: 48px;
  text-align: center;
}

.verification-list {
  gap: 48px;
}
.verification-list {
  display: flex;
  flex-direction: column;
}

.verification-item {
  display: flex;
  gap: 32px;
  padding: 32px;
  background-color: #151520;
  border-radius: 12px;
  border-left: 4px solid #00ff88;
}
.verification-item .item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
}
.verification-item .item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.verification-item .item-icon.verified {
  background-color: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}
.verification-item .item-content {
  flex: 1;
}
.verification-item .item-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.verification-item .item-text {
  color: #ffffff;
  margin-bottom: 8px;
}
.verification-item .item-note {
  font-size: 14px;
  color: #b8b8d4;
  font-style: italic;
}

.red-flags-section {
  margin: 96px 0;
}

.flags-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .flags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .flags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.flag-card {
  padding: 32px;
  border-radius: 12px;
  border: 2px solid;
}
.flag-card.danger {
  background-color: rgba(255, 0, 85, 0.05);
  border-color: rgba(255, 0, 85, 0.3);
}
.flag-card.danger .flag-title {
  color: #ff0055;
}
.flag-card .flag-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.flag-card .flag-title::before {
  content: "🚩";
}
.flag-card .flag-text {
  color: #b8b8d4;
  line-height: 1.6;
  margin: 0;
}

.legitimate-practices {
  background-color: rgba(0, 255, 136, 0.05);
  padding: 96px;
  border-radius: 16px;
  margin: 96px 0;
}

.practices-list {
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.practices-list {
  display: flex;
  flex-direction: column;
}

.practice-item {
  display: flex;
  gap: 24px;
  background-color: #0a0a0f;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #00ff88;
}
.practice-item .practice-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 255, 136, 0.1);
  border-radius: 8px;
  color: #00ff88;
}
.practice-item .practice-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.practice-item .practice-content {
  flex: 1;
}
.practice-item .practice-title {
  font-weight: 600;
  margin-bottom: 8px;
}
.practice-item .practice-text {
  color: #b8b8d4;
  line-height: 1.6;
  margin: 0;
}

.action-section {
  margin: 96px 0;
}

.action-card {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
  border: 2px solid rgba(255, 170, 0, 0.3);
  border-radius: 16px;
  padding: 64px;
  text-align: center;
}
.action-card .action-title {
  font-size: 1.75rem;
  color: #ffaa00;
  margin-bottom: 32px;
}
.action-card .action-steps {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 48px;
  gap: 24px;
}
.action-card .action-steps {
  display: flex;
  flex-direction: column;
}
.action-card .action-steps .action-step {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.verify-cta {
  background: linear-gradient(135deg, #00f5ff 0%, #00c9d4 100%);
  padding: 96px;
  border-radius: 16px;
  text-align: center;
}
.verify-cta .verify-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 24px;
}
.verify-cta .verify-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.verify-cta .verify-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/*# sourceMappingURL=main.css.map */
