* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  position: relative;
  z-index: 10;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.records-text {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  opacity: 0.8;
  display: block;
  margin-top: -0.5rem;
}

.submit-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

.submit-link:hover {
  opacity: 0.7;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem;
  position: relative;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.text-section {
  max-width: 500px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* Swirl Animation */
.visual-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swirl-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.swirl-element {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 150, 200, 0.8) 0%,
    rgba(0, 100, 150, 0.6) 30%,
    rgba(0, 80, 120, 0.4) 60%,
    transparent 100%
  );
  border-radius: 50%;
  position: relative;
  animation: swirl 20s linear infinite;
}

.swirl-element::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 200, 255, 0.3) 90deg,
    rgba(0, 150, 200, 0.5) 180deg,
    rgba(0, 100, 150, 0.3) 270deg,
    transparent 360deg
  );
  border-radius: 50%;
  animation: swirl 15s linear infinite reverse;
}

.swirl-element::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(100, 200, 255, 0.4) 0%, rgba(0, 150, 200, 0.2) 50%, transparent 100%);
  border-radius: 50%;
  animation: swirl 10s linear infinite;
}

@keyframes swirl {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Footer */
.footer {
  padding: 2rem 3rem;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.email-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.email-link:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .main-heading {
    font-size: 2rem;
  }

  .main-content {
    padding: 1rem 2rem;
  }

  .footer {
    padding: 1.5rem 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .swirl-container {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.5rem;
  }

  .swirl-container {
    width: 200px;
    height: 200px;
  }
}