/* Body background with a gradient and enhanced neon effect */
body {
    background: linear-gradient(135deg, #00b4ff, #4b0786, #64050e);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    box-sizing: border-box;
}

/* Centered container for the content */
.custom-centered-div {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6); /* Slightly darken background for better readability */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    margin-bottom: 100px;
    text-align: left;
}

/* Main section styling */
.custom-main-section {
    margin-top: 20px;
    padding: 0;
    transition: margin-left 0.5s;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Card for the content box */
.custom-card {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Headings with neon-like color and text-shadow */
.custom-card h4 {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 10px #00b4ff, 0 0 20px #9b2ff7, 0 0 30px #f74d5d;
    margin-bottom: 20px;
}

/* Links with hover effect */
.custom-card a {
    color: #f74d5d;
    font-size: 1.2rem;
    text-decoration: none;
    text-shadow: 0 0 5px #f74d5d;
}

.custom-card a:hover {
    color: #fff;
    text-shadow: 0 0 15px #f74d5d, 0 0 20px #00b4ff;
}

/* Images in the content */
.custom-card img {
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Text content with spacing */
.custom-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px 0;
}

/* Buttons with neon glow effect */
.custom-card .btn-primary {
    background-color: #9b2ff7;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.custom-card .btn-primary:hover {
    background-color: #f74d5d;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Footer with a gradient background */
.custom-footer {
    background: linear-gradient(135deg, #00b4ff, #9b2ff7, #f74d5d);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* Custom section styling with a glow effect for links */
.custom-section-links a {
    color: #f74d5d;
    text-decoration: none;
    text-shadow: 0 0 10px #f74d5d, 0 0 20px #00b4ff;
}

.custom-section-links a:hover {
    color: #fff;
    text-shadow: 0 0 15px #f74d5d, 0 0 20px #00b4ff;
}


.credit-card {
  width: 150px;
  height: 90px;
  background: linear-gradient(145deg, #5f5d9f, #4b4a88);
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: rotate(30deg); /* Rotate the card by 30 degrees */
  margin: 50px auto; /* Centering */
}

/* Credit Card Number and Info */
.credit-card::before {
  content: "1234 5678 9876 5432";
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  color: white;
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
}

/* Cardholder Name */
.credit-card .name {
  position: absolute;
  bottom: 20px;
  left: 10%;
  font-family: 'Arial', sans-serif;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Expiry Date */
.credit-card .expiry {
  position: absolute;
  bottom: 20px;
  right: 10%;
  font-family: 'Arial', sans-serif;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Card Logo - Placeholder */
.credit-card .logo {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: #f1f1f1;
  border-radius: 50%;
}

@media (max-width: 767px) {
    .custom-centered-div {
        padding: 0px;
    }
    .custom-card a {
        font-size: 0.9rem;
    }
}





.dollar-signs {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.dollar-signs span {
  position: absolute;
  font-family: "Arial", sans-serif;
  color: rgba(169, 169, 169, 0.8); /* Slightly darker color */
  opacity: 0.7;
  pointer-events: none;
}

.dollar-signs span:nth-child(1) {
  top: 10%;
  left: 5%;
  font-size: 5rem;
  transform: rotate(-30deg);
}

.dollar-signs span:nth-child(2) {
  top: 30%;
  left: 25%;
  font-size: 4.5rem;
  transform: rotate(10deg);
}

.dollar-signs span:nth-child(3) {
  top: 50%;
  left: 60%;
  font-size: 6rem;
  transform: rotate(-20deg);
}

.dollar-signs span:nth-child(4) {
  top: 55%;
  left: 15%;
  font-size: 7rem;
  transform: rotate(30deg);
}

.dollar-signs span:nth-child(5) {
  top: 60%;
  left: 45%;
  font-size: 3.5rem;
  transform: rotate(40deg);
}

.dollar-signs span:nth-child(6) {
  top: 60%;
  left: 70%;
  font-size: 5rem;
  transform: rotate(-45deg);
}

.dollar-signs span:nth-child(7) {
  top: 40%;
  left: 15%;
  font-size: 4rem;
  transform: rotate(25deg);
}

.dollar-signs span:nth-child(8) {
  top: 10%;
  left: 73%;
  font-size: 7.5rem;
  transform: rotate(-10deg);
}

.dollar-signs span:nth-child(9) {
  top: 20%;
  left: 65%;
  font-size: 6rem;
  transform: rotate(5deg);
}

.dollar-signs span:nth-child(10) {
  top: 50%;
  left: 35%;
  font-size: 5.5rem;
  transform: rotate(15deg);
}