@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body {
     font-family: "Josefin Sans", sans-serif !important;
     background-color: black;
     color: white;
}

.ff {
     font-family: "Josefin Sans", sans-serif !important;
}

h1 h2 h3 h4 h5 h6 {
     font-family: "Josefin Sans", sans-serif !important;
}

h4 {
     font-family: "Josefin Sans", sans-serif !important;
     font-size: 24px !important;
     color: white;
}


p {
     font-family: "Josefin Sans", sans-serif !important;
}

span {
     font-family: "Josefin Sans", sans-serif !important;
}


.text-yellow {
     color: #FEAF0D;
}

.btn-1 {
     background: linear-gradient(180deg, #FEAF0D 0%, #FFDA8E 100%);
     border-radius: 12px;
     padding: 10px 15px;
     color: black;
     font-weight: 600;
}

.banner-bg {
     background-image: url(/images/rollbit-clone-script/rollbit-clone-script-banner-bg.webp);
     background-repeat: no-repeat;
     background-size: cover;
}

.card-bg-1 {
     background: linear-gradient(180deg, rgba(2, 2, 0, 0.36) 31.25%, rgba(210, 141, 0, 0.36) 98.56%);
     position: relative;
     overflow: hidden;
     transition: transform 0.4s ease, box-shadow 0.4s ease;
     transform: scale(1);
     will-change: transform;
}

.card-bg-1:hover {
  transform: scale(1.05); /* Adjust to 1.03 - 1.08 as needed */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gold-border {
    position: relative;
    overflow: hidden;
}

/* Top Left */
.gold-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 25%;
    border-top: 4px solid #d9a11b;
    border-left: 4px solid #d9a11b;
}

/* Top Right */
.gold-border::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: -webkit-fill-available;
    height: 25%;
    border-top: 4px solid #d9a11b;
    border-right: 4px solid #d9a11b;
}

/* Bottom corners */
.gold-border .bottom-left,
.gold-border .bottom-right {
    position: absolute;
    width: -webkit-fill-available;
    height: 25%;
    pointer-events: none;
}

.gold-border .bottom-left {
    left: 0;
    bottom: 0;
    border-left: 4px solid #d9a11b;
    border-bottom: 4px solid #d9a11b;
}

.gold-border .bottom-right {
    right: 0;
    bottom: 0;
    border-right: 4px solid #d9a11b;
    border-bottom: 4px solid #d9a11b;
}
/*  */
.yellow-bg-1 {
  position: relative;
  padding: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(99deg, #1f1701 0%, rgb(104, 71, 0) 100%);

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(99deg, #1f1701 0%, #d9a11b 100%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
  }

  &:hover::before {
    opacity: 1;
  }

  > * {
    position: relative;
    z-index: 1;
  }
}
.bg-black{
     background-color: #000000;
}

.cusborder-start {
  position: relative;
  padding-left: 16px;
  transition: all 0.3s ease;
}

.cusborder-start::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #f0e297, #f1a900);
  transition: all 0.3s ease;
}

.cusborder-start:hover::before {
  background: linear-gradient(to bottom, #ffffff, #ff4081);
}

.yellow-bg-3{
     background: linear-gradient(90deg, #FFDA8E 0%, #FEAF0D 100%);
     color: #000000;
}

@media(max-width:992px){
     .min-vh-100 {
    min-height: 70vh !important;
}
}
.pt-150 {
    padding-top: 100px;
}
@media(min-width:992px){
.pt-150 {
    padding-top: 150px;
}
}