.crox-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
}

.crox-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.crox-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.93;
  z-index: 1;
}

.crox-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.5s ease;
  text-align: center;
  padding: 20px;
}

.crox-logo {
  max-width: 420px;
  width: 80%;
  margin-bottom: 40px;
}

.crox-text {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: #111;
}

.crox-button {
  margin-top: 30px;
  padding: 12px 28px;
  border: 1px solid #ff0000;
  color: #ff0000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.crox-button:hover {
  background: #ff0000;
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .crox-logo {
    max-width: 280px;
  }
}
