* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #f7f7f7;
  background: #0b0f1d;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.hero {
  background: url("WebsiteBackground.png") center/cover no-repeat;
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero--small {
  min-height: 35vh;
}

.hero__overlay {
  width: 100%;
  background: rgba(5, 8, 20, 0.75);
  padding: 4rem 0;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero__content p {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  max-width: 640px;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-weight: 600;
}

.btn--primary {
  background: #6cc4ff;
  color: #08101f;
  border-color: #6cc4ff;
  box-shadow: 0 10px 30px rgba(108, 196, 255, 0.3);
}

.btn--ghost {
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.main {
  padding: 4rem 0 5rem;
  background: #0b0f1d;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.copy p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
}

.text-link {
  color: #6cc4ff;
  font-weight: 600;
  font-size: 1.35rem;
}

.carousel {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.carousel__track {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  background: #0e1326;
}

.carousel__slide {
  width: 100%;
  height: auto;
  display: none;
}

.carousel__slide.is-active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 17, 35, 0.8);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel__control--prev {
  left: -20px;
}

.carousel__control--next {
  right: -20px;
}

.carousel__control:hover {
  background: rgba(108, 196, 255, 0.9);
  color: #08101f;
  transform: translateY(-50%) scale(1.05);
}

.carousel__dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel__dot.is-active {
  background: #6cc4ff;
  border-color: #6cc4ff;
}

.footer {
  background: #070b16;
  padding: 2rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy__content h2,
.privacy__content h3 {
  margin: 1.5rem 0 0.6rem;
}

.privacy__content p {
  color: rgba(255, 255, 255, 0.85);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .hero__overlay {
    padding: 3rem 0;
  }

  .carousel__control--prev {
    left: 8px;
  }

  .carousel__control--next {
    right: 8px;
  }
}
