/*-----------------------------------------*/
.text{
    color:white;
    font-size:23px;
}
.text1{
    color:white;
    font-size:15px;
    text-align:center;
}
/* Main Section */
.login-section {
    min-height: 100vh;
    /*background:#0b2e80;*/
     background-image: url('/public/images/1_oUPYHaJYWSIuEpOSh9dK5Q.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    align-items: center;
}

.login-container {
    width: 100%;
}

.login-grid {
    display: flex;
    min-height: 100vh;
}

/* Left Image */
.login-image {
    width: 60%;
    background-size: cover;
    background-position: center right;
    display: none;
}

@media (min-width: 768px) {
    .login-image {
        display: block;
    }
}

/* Right Form */
.login-form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form-inner {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border: 2px solid gray;
    background: #24268cc9;
}

.login-box {
    text-align: center;
    color: #fff;
}

/* Logo */
.login-logo img {
    margin-bottom: 20px;
}

/* Title */
.login-title {
    font-size: 20px;
    margin-bottom: 30px;
    color:white;
}

/* Alert */
.login-alert {
    background: #ff4d4f;
    color: #fff;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* Form */
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #aaa;
}

.form-input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border-radius: 6px;
    border: none;
    outline: none;
}

/* Button */
.login-btn {
    width: 100%;
    padding: 12px;
    background: #1e87f0;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.login-btn:hover {
    background: #0f6ecd;
}

/* Footer */
.login-footer {
    margin-top: 20px;
    font-size: 14px;
}

.login-footer a {
    color: #1e87f0;
    text-decoration: none;
}

/*-----------------------------------------*/
.site-footer {
  background: linear-gradient(180deg, #2b1fa6, #0b082f);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  font-size: 23px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfd2ff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-bottom p {
  font-size: 14px;
  color: #cfd2ff;
}

.social-icons a {
  margin-left: 15px;
  text-decoration: none;
  color: #cfd2ff;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .social-icons a {
    margin: 0 8px;
  }
}

.safe{
    color: white;
  font-size: 25px;
}

/* HERO WRAPPER */
.hero-sectionsafe {
  position: relative;
  min-height: 95vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(120,80,255,0.35), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(100,120,255,0.25), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(80,100,255,0.2), transparent 45%),
    linear-gradient(180deg, #1b145c, #0b082f);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* ANNOUNCEMENT BAR */
.safe-announce {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 15px;
  background: rgba(75,43,214,0.85);
  backdrop-filter: blur(6px);
  margin-top: 108px;
}

.safe-announce p {
  margin: 0;
  color: #6fffd2;
  font-size: 14px;
}

.safe-announce a {
  color: #6fffd2;
  text-decoration: underline;
  font-weight: 500;
}

/* HERO CONTENT */
.hero-content {
  margin-top: 10%; 
  padding: 20px;
  max-width: 1100px;
}
.safe-announce marquee {
  color: #6fffd2;
  font-size: 14px;
  height: 22px;
}

.hero-content h1 {
  font-size: clamp(27px, 4vw, 84px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-content {
    margin-top: 90px;
  }

  .hero-content h1 {
    font-size: 25px;
  }
  .text{
    color:white;
    font-size:20px;
}
.text1{
    color:white;
    font-size:14px;
    text-align:center;
}
  
}





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

.sp-hero{
  min-height: calc(100vh - 80px);
  background:#4b2ce3;
  /*background: radial-gradient(circle at top, #3c2cc9, #1a0f5e);*/
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
  text-align:center;
}

.sp-hero-inner{
  max-width:900px;
  width:100%;
}

.sp-hero-icon img{
  width:110px;
  margin-bottom:30px;
}

.sp-hero-title{
  font-size:56px;
  font-weight:800;
  color:#ffffff;
  line-height:1.2;
  margin-bottom:40px;
}

.sp-hero-btn{
  display:inline-block;
  padding:18px 40px;
  background:#5cffc3;
  color:#000;
  font-size:18px;
  font-weight:600;
  border-radius:40px;
  text-decoration:none;
  box-shadow: 0 0 0 8px rgba(92,255,195,0.2);
  transition:0.3s;
}

.sp-hero-btn:hover{
  transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px){
  .sp-hero-title{
    font-size:38px;
  }

  .sp-hero-btn{
    font-size:16px;
    padding:16px 32px;
  }
}




.sp-trust-section{
  background: #2304bb;
  /*background: linear-gradient(180deg, #3c2cc9, #2a1a8f);*/
  padding:100px 20px;
}

.sp-trust-wrapper{
  max-width:1200px;
  margin:auto;
}

.sp-trust-title{
  text-align:center;
  color:#fff;
  font-size:48px;
  font-weight:800;
  margin-bottom:60px;
}

.sp-trust-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}

.sp-trust-card{
  background:#f7f7ff;
  border-radius:24px;
  padding:30px;
  font-size:16px;
  line-height:1.7;
  color:#222;
}

.sp-trust-user{
  display:block;
  margin-top:20px;
  font-weight:600;
  color:#555;
}

/* RESPONSIVE */
@media(max-width:992px){
  .sp-trust-cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .sp-trust-title{
    font-size:34px;
  }

  .sp-trust-cards{
    grid-template-columns:1fr;
  }
}


.sp-trust-section{
  background:#4b2ce3;
  /*background: linear-gradient(180deg, #3c2cc9, #2a1a8f);*/
  padding:100px 20px;
}

.sp-trust-wrapper{
  max-width:1200px;
  margin:auto;
}

.sp-trust-title{
  text-align:center;
  color:#fff;
  font-size:48px;
  font-weight:800;
  margin-bottom:60px;
}

.sp-trust-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}

.sp-trust-card{
  background:#f7f7ff;
  border-radius:28px;
  padding:36px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.sp-trust-text{
  font-size:16px;
  line-height:1.7;
  color:#222;
}

/* PROFILE */
.sp-trust-profile{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:30px;
}

.sp-trust-profile img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
}

.sp-trust-info strong{
  display:block;
  font-size:15px;
  color:#000;
}

.sp-trust-info span{
  font-size:13px;
  color:#666;
}

/* RESPONSIVE */
@media(max-width:992px){
  .sp-trust-cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .sp-trust-title{
    font-size:34px;
  }

  .sp-trust-cards{
    grid-template-columns:1fr;
  }
}

.sp-explore-section{
  background:#4b2ce3;
  padding:140px 20px 160px;
}
.sp-explore-section1{
  background:#4b2ce3;
  /*padding:140px 20px 160px;*/
}

.sp-explore-wrapper{
  max-width:1300px;
  margin:auto;
  text-align:center;
}

/* TITLE */
.sp-explore-title{
  color:#fff;
  font-size:56px;
  font-weight:800;
  margin-bottom:120px;
  line-height:1.2;
}

/* FEATURES GRID */
.sp-explore-features1{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  /*gap:120px;*/
}
.sp-explore-features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:40px;
}

/* ITEM */
.sp-explore-item{
  color:#fff;
}

.sp-explore-icon{
  width:140px;
  margin-bottom:40px;
  height: 170px;
}
.sp-explore-icon1{
  width:80px;
  /*margin-bottom:20px;*/
  height: 120px;
}

.sp-explore-item h3{
  font-size:26px;
  font-weight:700;
  margin-bottom:20px;
  color: white;
}

.sp-explore-item p{
  font-size:17px;
  line-height:1.7;
  max-width:360px;
  margin:auto;
  opacity:0.95;
  color: white;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .sp-explore-features{
    gap:70px;
  }
}

@media(max-width:900px){
  .sp-explore-features{
    grid-template-columns:1fr;
    gap:90px;
  }
  .sp-explore-features1{
    grid-template-columns:1fr;
    gap:90px;
  }

  .sp-explore-title{
    font-size:40px;
    margin-bottom:80px;
  }
}





.sp-web3-section{
  background:#4b2ce3;
 padding: 76px 50px;
}

.sp-web3-container{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

/* LEFT */
.sp-web3-content{
  flex:1;
  color:#fff;
}

.sp-web3-tag{
  display:inline-block;
  color:#4dffc3;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:20px;
}

.sp-web3-title{
  font-size:64px;
  font-weight:800;
  line-height:1.1;
  margin-bottom:30px;
  color: white;
}

.sp-web3-text{
  font-size:18px;
  line-height:1.7;
  max-width:520px;
  opacity:0.95;
  color: white;
}

/* RIGHT */
.sp-web3-visual{
  flex:1;
  text-align:right;
}

.sp-web3-visual img{
  max-width:100%;
  height:auto;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .sp-web3-title{
    font-size:52px;
  }
}

@media(max-width:900px){
  .sp-web3-container{
    flex-direction:column;
    text-align:center;
  }

  .sp-web3-visual{
    text-align:center;
  }

  .sp-web3-title{
    font-size:42px;
  }

  .sp-web3-text{
    margin:auto;
  }
}






/* Referral Card Wrapper */
.referral-card {
    background: #f2f2f2;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
}

/* Title */
.referral-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

/* Referral Link Text */
.referral-link {
    font-size: 13px;
    color: #000;
    word-break: break-all;
    line-height: 1.5;
}

/* Share Icons Row */
.referral-share-icons {
    margin-top: 10px;
}

/* Common icon button */
.referral-share-icons .btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

/* Icon size */
.referral-share-icons i {
    font-size: 16px;
}

/* Hover Effect */
.referral-share-icons .btn:hover {
    background-color: #0d6efd;
    color: #fff !important;
}

/* Copy button special */
.copy-referral-btn:hover {
    background-color: #198754 !important;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .referral-card {
        padding: 15px;
    }

    .referral-title {
        font-size: 14px;
    }

    .referral-link {
        font-size: 12px;
    }
}








