
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0f1a;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.umai-sell-navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 40px;
}

.umai-sell-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  height: 80px;
}

/* NAV */
.nav-actions {
  display: flex;
  gap: 15px;
}

.nav-btn {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: 0.3s;
}

.nav-btn:hover {
  color: #fff;
}

.nav-btn.primary {
  padding: 8px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7f5af0, #00c6ff);
  color: #fff;
}

/* MOBILE MENU */
.umai-sell-menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* umaibi */
.umai-sell-umaibi {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 20px 40px;
  overflow: hidden;
}

/* BACKGROUND GLOW */
.umai-sell-umaibi::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(127,90,240,0.4), transparent 70%);
  top: -200px;
  left: -200px;
  filter: blur(120px);
}

.umai-sell-umaibi::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,198,255,0.3), transparent 70%);
  bottom: -150px;
  right: -150px;
  filter: blur(120px);
}

/* CONTENT */
.umai-sell-umaibi-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* HEADLINE */
.umai-sell-umaibi h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.umai-sell-umaibi h1 span {
  background: linear-gradient(90deg, #7f5af0, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.umai-sell-umaibi p {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #cbd5e1;
}

/* BUTTONS */
.umai-sell-buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  margin: 5px;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #7f5af0, #00c6ff);
  color: #fff;
  box-shadow: 0 0 20px rgba(127,90,240,0.6);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid #7f5af0;
  color: #7f5af0;
}

.btn-outline:hover {
  background: #7f5af0;
  color: #fff;
}

/* DASHBOARD */
.umai-sell-dashboard {
  margin-top: 50px;
}

.umai-sell-dashboard img {
  width: 100%;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: perspective(1000px) rotateX(8deg);
  transition: 0.4s;
}

.umai-sell-dashboard img:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

  
.umai-notice {
  background: #2a8f21;
  border: 1.5px dashed #d1d1d1;
}  
  
.umai-read-more {
  color: #ececec;
  font-size: 15px;
}
  
/* RESPONSIVE */
@media (max-width: 768px) {

  .umai-sell-navbar {
    padding: 15px 20px;
  }

  .umai-sell-menu-toggle {
    display: block;
  }

  .umai-sell-nav-actions {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.95);
    padding: 15px;
    border-radius: 10px;
    flex-direction: column;
    display: none;
  }

  .umai-sell-nav-actions.active {
    display: flex;
  }

  .umai-sell-umaibi h1 {
    font-size: 1.8rem;
  }

  .umai-sell-umaibi p {
    font-size: 0.95rem;
  }

  .umai-sell-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
  }

  .umai-sell-dashboard img {
    transform: none;
  }
}


