* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin-top: 80px;
  background: linear-gradient(90deg, #000000, #000000, #130518, #22072c, #480655, #22072c, #130518, #000000, #000000);
  background-size: 600% 600%;
  animation: rainbowAnimation 10s linear infinite;
}

@keyframes rainbowAnimation {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.top-bar {
  background-color: rgb(11, 3, 29);
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  height: 80px;
  position: fixed;
  padding: 0 25px;
  box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.5);
}

.app-title {
  font-size: 26px;
  margin-left: 18px;
  font-weight: 600;
  background: linear-gradient(45deg, #0000ff, #1e90ff, #00bfff, #87ceeb, #b0e0e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.connect-button {
  padding: 10px 20px;
  margin-right: 18px;
  background: linear-gradient(135deg, #62d3ff 0%, #4fc3f7 50%, #29b6f6 100%);
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(98, 211, 255, 0.3);
}

.connect-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.connect-button:hover {
  background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 50%, #0288d1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98,211,255,0.4), 0 4px 10px rgba(0,0,0,0.1);
}

.connect-button:hover::before { left: 100%; }

.connect-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(98,211,255,0.3);
}

.second-connect-button {
  padding: 12px 32px;
  background: linear-gradient(135deg, #62d3ff 0%, #4fc3f7 50%, #29b6f6 100%);
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(98,211,255,0.3);
}

.second-connect-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.second-connect-button:hover {
  background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 50%, #0288d1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98,211,255,0.4), 0 4px 10px rgba(0,0,0,0.1);
}

.second-connect-button:hover::before { left: 100%; }

.banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 60vh;
  padding: 80px 20px 40px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(98,211,255,0.05) 0%, transparent 70%);
}

.banner-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(98,211,255,0.03) 0%, transparent 50%, rgba(79,195,247,0.03) 100%);
  pointer-events: none;
}

.banner {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  background: linear-gradient(45deg, #94bfca, #ffffff, #7e99b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.below-banner {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  padding: 0 20px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.below-banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.second-connect-button-container {
  position: relative;
  z-index: 2;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px 0 25px;
  position: relative;
  z-index: 2;
  padding: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(98,211,255,0.05);
  border-radius: 25px;
  border: 1px solid rgba(98,211,255,0.15);
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(98,211,255,0.08), transparent);
  transition: left 0.5s ease;
}

.feature-item:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(98,211,255,0.08);
  border-color: rgba(98,211,255,0.3);
  box-shadow: 0 4px 15px rgba(98,211,255,0.15);
}

.feature-item:hover::before { left: 100%; }

.feature-icon {
  font-size: 18px;
  margin-right: 8px;
}

.feature-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

/* Footer */
.footer {
  min-height: 370px;
  text-align: center;
  padding-top: 50px;
  background-color: black;
}

.footer-text {
  text-align: center;
  font-size: 2vw;
  font-weight: 600;
  padding: 2vw;
  background: linear-gradient(45deg, #0000ff, #3e97f0, #1e51df, #840ab4, #d5e2e4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-connect-box { padding: 20px; }

.third-connect-button {
  background: linear-gradient(135deg, #62d3ff 0%, #4fc3f7 50%, #29b6f6 100%);
  color: black;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(98,211,255,0.3);
}

.third-connect-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.third-connect-button:hover {
  background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 50%, #0288d1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98,211,255,0.4);
}

.third-connect-button:hover::before { left: 100%; }

.socials {
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  gap: 30px;
  padding: 20px;
  font-size: 22px;
}

.soc-div {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  font-size: 22px;
}

.soc-div:hover { transform: scale(1.2); }

.trademark {
  padding-top: 1.5vw;
  font-size: 1vw;
  color: rgba(255,255,255,0.6);
}

.trademarkCo {
  text-align: center;
  padding: 2vw;
}

@media (max-width: 768px) {
  .banner { font-size: 40px; line-height: 1.3; }
  .below-banner { font-size: 15px; }
  .footer-text { font-size: 4vw; }
  .trademark { font-size: 2.5vw; }
  .feature-text { font-size: 12px; }
  .feature-item { padding: 10px 14px; }
}

@media (max-width: 576px) {
  .banner { font-size: 30px; }
  .below-banner { font-size: 13px; }
  .app-title { font-size: 20px; }
  .connect-button { padding: 8px 14px; font-size: 12px; }
  .footer-text { font-size: 5vw; }
  .trademark { font-size: 3vw; }
}
