
.domain-container{
  max-width:1200px;
  margin:auto;
  padding:20px;
}

.domain-hero{
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
  color:#fff;
  padding:45px 20px;
  border-radius:18px;
  text-align:center;
  margin-bottom:25px;
}

.domain-hero h1{
	color: white;
  font-size:42px;
  margin-bottom:10px;
}

.domain-hero p{
  opacity:.95;
  font-size:17px;
}

.domain-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.domain-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #ddd;
}

.card-head{
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
  color:#fff;
  padding:16px 20px;
  font-weight:700;
  font-size:18px;
}

.card-body{
  padding:18px;
}

textarea{
  width:100%;
  min-height:340px;
  border:1px solid #f3c6cf !important;
  border-radius:10px !important;
  padding:15px;
  resize:vertical;
  outline:none;
  font-size:14px;
  line-height:1.6;
}

textarea:focus{
  border-color:#5f2dee;
}

.tool-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

button{
  border:none;
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
  color:#fff;
  padding:12px 18px;
  border-radius:20px 191px !important;
  cursor:pointer;
  font-weight:700;
  transition:.2s;
  position:relative;
  overflow:hidden;
}

button::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:50%;
  height:100%;
  background:rgba(255,255,255,.3);
  transform:skewX(-25deg);
}

button:hover::after{
  animation:shine .8s;
}

button:hover{
  transform:translateY(-2px);
}

@keyframes shine{
  100%{
    left:150%;
  }
}

.stats{
  display:flex;
  gap:12px;
  margin-bottom:15px;
}

.stat-box{
  flex:1;
  background: #f7f7f7;
  border-radius:10px;
  padding:15px;
  text-align:center;
  font-size:14px;
  font-weight:600;
}

.stat-box span{
  display:block;
  font-size:26px;
  color: #ff93a9;
  margin-bottom:5px;
}

@media(max-width:900px){

  .domain-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .domain-hero h1{
    font-size:32px;
  }

  textarea{
    min-height:260px;
  }

}