body{
    font-family:'Inter',sans-serif;
    background:#faf6ef;
}

.ocraft-font{
    font-family:'Archivo Black',sans-serif;
}
.gta-gradient{
    background:linear-gradient(135deg,#00e5ff 0%,#00ff99 50%,#ffb300 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.glass{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.2);
}
.hero-overlay{
    background:linear-gradient(to top,rgba(250,246,239,1) 0%,rgba(250,246,239,.2) 40%,rgba(0,0,0,.45) 100%);
}
.card-hover{
    transition:.35s ease;
}
.card-hover:hover{
    transform:translateY(-6px);
}
html{
    scroll-behavior:smooth;
}

.sep-card {
  background: silver;
  border: 1px solid skyblue;
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.25s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  width: 50%;
  text-align: center;

  margin: 0 auto; /* centers it */
}

.sep-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;

}

.sep-card button {
  background: linear-gradient(135deg, #d4af37, #f0d77b);
  color: white;
  padding: 0.9rem 2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(212,175,55,0.35);
  font-weight: 600;
}
.sep-card p{color:white;}

#copyPopup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #06b6d4;
    color: black;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: bold;
    display: none;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}