body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #ffffff;
}

header {
  position: relative;
  text-align: center;
  padding: 4rem 1rem;
  background: url('assets/images/car-background.jpg') center/cover no-repeat;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

header * {
  position: relative;
  z-index: 1;
}

.logo {
  width: 400px;
  height: auto;
}

header h1 {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  font-weight: lighter;
}

header p#typing-text {
  font-size: 2.5rem;
  color: #4ed6cf;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.15em solid #00d1b2;
  width: 0;
  animation: typing 4s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #00d1b2; }
}

.images-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 4rem 1rem;
}

.image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: transform 0.3s ease;
}

.image-box img {
  width: 400px;
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 209, 178, 0.2);
  transition: all 0.3s ease;
}

.image-box:hover img {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 209, 178, 0.3);
}

.image-box-content {
  max-width: 600px;
  transition: transform 0.3s ease;
}

.image-box:hover .image-box-content {
  transform: translateY(-5px);
}

.image-box-content h3 {
  color: #4ed6cf;
  margin-bottom: 0.5rem;
}

.image-box-content p {
  color: #cccccc;
  font-size: 1.5rem;
}

.download-section {
  text-align: center;
  margin: 3rem 1rem;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.download-btn {
  text-decoration: none;
  color: white;
  background-color: #4ed6cf;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 160px;
}

.download-btn:hover {
  background-color: #4ed6cf;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 209, 178, 0.2);
}

.platform-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.download-btn:hover .platform-icon {
  transform: scale(1.2);
}

.download-btn span {
  font-weight: 500;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #1e1e1e;
  color: #666;
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 1rem;
  position: relative;
  transition: color 0.3s;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #4ed6cf;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #4ed6cf;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.business-info {
  margin: 1.5rem 0;
  line-height: 1.6;
}

.business-info p {
  margin: 0.5rem 0;
}

.business-info a {
  color: #4ed6cf;
  text-decoration: none;
  transition: color 0.3s;
}

.business-info a:hover {
  color: #ffffff;
}

.copyright {
  margin-top: 1.5rem;
  color: #666;
}

.early-access-section {
  text-align: center;
  padding: 4rem 1rem;
  margin-top: 4rem;
}

.early-access-content {
  max-width: 600px;
  margin: 0 auto;
}

.early-access-content h2 {
  font-size: 3rem;
  color: #4ed6cf;
  margin-bottom: 1rem;
}

.early-access-content .subtitle {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.early-access-btn {
  display: inline-block;
  background-color: #4ed6cf;
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #4ed6cf;
}

.early-access-btn:hover {
  background-color: transparent;
  color: #4ed6cf;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 214, 207, 0.2);
}
