* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-color: rgba(255, 166, 0, 0.774) rgb(0, 0, 0);
    scrollbar-width: thin;
    scroll-behavior: smooth;
    
}
img {
    pointer-events: none;
}


body {
  font-family: 'Courier New', Courier, monospace, sans-serif;
  background-color: #000000; /* Black background to ensure darkness */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  z-index: -1;
  user-select: none;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/Assets/test.jpg');
  background-size: cover; /* Image covers the entire background */
  background-position: center; /* Centers the image */
  background-attachment: fixed; /* Image remains fixed when scrolling */
  background-repeat: no-repeat; /* No image repetition */
  opacity: 1; /* Set the opacity */
  z-index: -1; /* Ensure the pseudo-element is behind the content */
  filter: hue-rotate(10deg);

}

.mb-only{
  display: none;

}

h1 {
  font-family: 'Alpino', sans-serif;
  color: #f4f3ee;
}

h2 {
  font-family: 'Alpino', sans-serif;
  color: #f4f3eecc;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}
h3 {
  font-family: 'Alpino', sans-serif;
  color: #f4f3ee;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}



section {
  font-family: 'Alpino', sans-serif;
  border-radius: 2em;
  padding: 20px;
  color: #ffffff; /* Set text color to black for better visibility */
  max-width: 600px;
  width: 100%;
  overflow: hidden; /* Hide overflow */
  position: relative; /* Ensure arrows are positioned correctly */
  background-color: rgba(0, 0, 0, 0.2)!important; /* Dark Purple */
  backdrop-filter: blur(5px);
  border-radius: 1rem;
}
.time {
  font-size: 1.2em; /* Adjust the size as needed */
  color: orange;
  
}



.quick-withdrawal-banner {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 1rem;
    color: #ebb400;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    gap: 10px; /* Adds space between text and icon */
    border: 1px solid rgba(255, 208, 0, 0.212);
    border-radius: 0.5rem;
    padding: 0.4rem;
  }
  
  .withdrawal-icon {
    color: rgb(255, 255, 255);
    font-size: 1.5em; /* Example of potential icon styling */
  }

.quick-withdrawal-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg, 
    transparent, 
    rgba(255, 174, 0, 0.281), 
    transparent
  );
  transform: rotate(-15deg);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { transform: translate(-100%, -100%) rotate(-45deg); }
  100% { transform: translate(100%, 100%) rotate(-45deg); }
}

.quick-withdrawal-banner .withdrawal-icon {
  margin-left: 8px;
  font-size: 1.3em;
  animation: wallet-shake 2s infinite alternate ease-in-out;
}

@keyframes wallet-shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .quick-withdrawal-banner {
    padding: 8px 12px;
    font-size: 0.9em;
  }
}


.exclusive-banner {
  position: absolute;
  margin-left: 40px;
  border-bottom: 2px solid rgb(255, 166, 0);;
  border-top: 2px solid rgb(255, 166, 0);;
  color: rgb(255, 255, 255); /* Adjusted text color to match your website */
  padding: 5px 10px; /* Padding around the text */
  font-size: 1.1em; /* Font size */
  font-weight: bolder; /* Font weight */
  animation: wiggle 1s infinite; /* Apply the animations */
  text-shadow: rgb(0, 0, 0) 2px 2px; /* Text shadow */
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.vpn-banner {
  position: absolute;
  margin-left: 40px;
  border: 2px dotted;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.384); /* Adjusted text color to match your website */
  padding: 15px; /* Padding around the text */
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vpn-banner i {
  font-size: 1em; /* Adjust the icon size if needed */
  color: #e9b406;
}

.tooltip {
  visibility: hidden;
  background-color: rgba(17, 17, 17, 0.918);
  color: #ffffff;
  text-align: left; /* Align text to the left */
  border: 2px double  #ff910031;
  border-radius: 6px;
  padding: 5px 10px; /* Adjusted padding for better readability */
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position the tooltip above the banner */
  left: 50%;
  margin-left: -75px; /* Center the tooltip */
  opacity: 0;
  transition: opacity 0.3s;
  text-wrap: wrap;
  width: 500px;
}

.vpn-banner:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 600px) {
  .tooltip {
      width: 140px;
      bottom: auto; /* Reset bottom position */
      margin-left: 0; /* Reset margin */
      top: 50%; /* Center vertically */
      transform: translateY(20%); /* Center vertically */
      text-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .vpn-banner{
    margin-left: 6rem;
  }
}




#stars-container {
  position: fixed;
  width: 100%;
  height: 75vh; /* Space limit */
  overflow: hidden;
  z-index: -1;
}

.shooting-star {
  position: absolute;
  background-color: white; /* Set star color to white */
  border-radius: 50%;
  animation: shootingStar linear infinite, glowPulse 3s ease-in-out infinite; /* Added glowing animation */
}

@keyframes shootingStar {
  0% {
    transform: translate(100vw, 0);
  }
  100% {
    transform: translate(-100vw, 50vh);
  }
}





header {
    position: fixed;
    width: 250px;
    height: 100vh;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.logo img {
    margin-top: 20px;
    width: 200px;
}

nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    font-family: 'Alpino', sans-serif;
}

nav a {
    color: #fbf5f3;
    background-color: rgb(0, 0, 0)!important;
    border: 2px solid rgba(77, 0, 153, 0.534);
    text-decoration: none;
    border-radius: 0.5rem;
    text-align: left;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 5px 5px 0px rgba(77, 0, 153, 0.534); /* Added second shadow */

}

nav a i {
    margin-right: 10px;
    font-size: 20px;
}

nav a:hover, nav a:focus {
    background-color: rgba(255, 255, 255, 0);
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
    box-shadow: 0px 5px 0px rgba(77, 0, 153, 0.534); /* Added second shadow */
}

nav a:active {
    transform: translateY(-1px);
    box-shadow: 0px 5px 0px rgba(42, 0, 85, 0.534);  /* Added second shadow */
}

#lottie-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 600px;
  z-index: -1;
  opacity: 0.6;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgb(10, 10, 10);
  z-index: 999999;
}

#loading-text, #htext {
  opacity: 0;
}



.preloader img {
  transform: scaleX(-1); /* Flip the SVG horizontally */
  animation: hover 2s infinite alternate;
}

@keyframes hover {
  0% {
      transform: translateY(0) scaleX(-1);
  }
  50% {
      transform: translateY(-20px) scaleX(-1);
  }
  10% {
      transform: translateY(0px) scaleX(-1);
  }
}

h1{
  text-align: center;
  margin-block: 1em;
}
.progress {
  background: rgba(89, 0, 255, 0.1);
  border-radius: 100px;
  align-items: center;
  position: relative;
  padding: 0 5px;
  display: flex;
  height: 20px;
  width: 300px;
}

.progress-value {
  animation: load 2s normal forwards;
  animation-delay: 1s; /* Add a 1-second delay before the animation starts */
  box-shadow: 0 10px 40px -10px #ffffff;
  border-radius: 100px;
  background: orange;
  height: 10px;
  width: 0;
}

@keyframes load {
  0% { width: 0; }
  100% { width: 100%; }
}

.preloader.fade-out {
  opacity: 0;
}


.toggle-btn {
    display: none;
    cursor: pointer;
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 1000;
}

.card-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 1;
  overflow: hidden;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto; /* Centers the container horizontally */
  align-items: center; /* Centers the content horizontally */
  justify-content: center; /* Centers the content vertically */
}


.card {
  position: relative; /* Ensure the pseudo-element is positioned correctly */
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.678)!important; /* Dark Purple */
  background: 
  radial-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1)), /* Adjust the opacity here */
  url(/Assets/25694312_shinny_blue_mesh_pattern_background.png);
background-position: center;
background-size: cover;
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  box-shadow: 
  5px 5px 0px rgba(77, 0, 153, 0.534), /* First shadow */
  10px 10px 0px rgba(77, 0, 153, 0.3), /* Second shadow */
  15px 15px 0px rgba(77, 0, 153, 0.2), /* Third shadow */
  20px 20px 0px rgba(77, 0, 153, 0.15), /* Third shadow */
  25px 25px 0px rgba(77, 0, 153, 0.1); /* Third shadow */
  margin: 0!important;
}

.rank {
    background-color: rgb(255, 153, 0);
    color: rgb(20, 20, 20);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    margin-right: 30px;
    font-size: 1.4em;
    box-shadow: 3px 3px rgb(122, 73, 0) ,
    6px 6px rgba(122, 73, 0, 0.521);
}


.card-body {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.rating {
    white-space: nowrap;
    color: rgb(255, 153, 0);
    margin-right: 20px;
    font-weight: bold;
}

.bonus-item {
  background-color: rgba(0, 0, 0, 0.667)!important; /* Dark Purple */
  height: 55px;
  border-radius: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  padding: 10px;
  box-shadow: 
  4px 4px 3px rgba(77, 0, 153, 0.534);
}


.bonus-label {
    font-size: 0.8em;
    margin-bottom: 5px;
    order: -1;
    white-space: nowrap;
    color: #ffffffa8;

}
.bonus-label i {
  margin-left: 5px; /* Adds spacing between the text and the icon */
  font-size: 1.2em; /* Adjust the size of the icon */
  vertical-align: middle; /* Ensures icon aligns with the text baseline */
}

.bonus-value {
  font-size: 1.2em;
  color: orange;
  text-shadow: 2px 2px #000000;
}


.button-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

button {
    margin-left: 20px;
    background-color: rgb(255, 153, 0);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bolder;
    width: 11em;
    border-radius: 8px;
    color: rgb(29, 29, 29);
    box-shadow: 3px 3px rgb(122, 73, 0) ,
    6px 6px rgba(122, 73, 0, 0.521);
    cursor: pointer;
    align-self: center;
}

button:active {
    box-shadow: 0 0.2rem rgb(122, 73, 0);
    transform: translateY(0.6rem);
}

button:hover {
    color: white;
    text-shadow: 10px 10px 100px #fff, 0 0 12px #fff, 0 0 24px #ff9900;
}

.stars {
    color: #ff9100;
    animation: color-animation 3s infinite alternate;
    font-size: 1.2em;
}

@keyframes color-animation {
    0% { color: #ffea4e; }
    50% { color: #ffe600; }
    100% { color: #ff9900; }
}

@media screen and (min-width: 1441px) {
    .topcard { display: none; }

    .container {
        display: flex;
        padding: 0;
        gap: 0;
    }

    .card-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-grow: 1;
    }

    .card-header {
        display: grid;
        margin: 0;
        gap: 10px;
    }

    .card-body {
        margin: 0;
        padding: 0;
    }

    .rank {
        width: 30px;
        height: 30px;
        font-size: 1.2em;
    }

    .card {
        display: flex;
        white-space: nowrap;
        justify-content: space-between;
        padding: 20px;
        margin-right: 10px;
        margin-left: 10px;
        max-width: 1200px;
    }

    .casino-logo img {
      display: block;
      width: 180px; /* Adjust as needed */
      height: auto;
      object-fit: cover;
    }

    .rating {
        font-size: 1.2em;
        padding-bottom: 10px;
    }

    .card-body {
        flex-direction: row;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .bonus-info {
        display: grid;
        align-items: center;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
        gap: 10px;
        width: 100%;
        padding: 20px;
    }

    .bonus-item {
        width: auto;
        height: auto;
        margin-bottom: 0;
        background-color: #0000009c;
    }

    .bonus-value {
        font-size: 1.6em;
        color: orange;
      }

    .bonus-label {
        font-size: 1em;
    }

    button.claim-bonus {
        margin: 0;
        font-size: 0.9em;
        padding: 10px;
        width: 150px;
    }
}

@media screen and (max-width: 1440px) {
    .topcard { display: none; }

    .container {
        display: flex;
        padding: 0;
        margin: 0;
        gap: 0;
    }

    .card-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 250px;
    }

    .card-header {
        display: grid;
        margin: 0;
        gap: 10px;
    }

    .card-body {
        margin: 0;
        padding: 0;
    }

    .rank {
        width: 30px;
        height: 30px;
        font-size: 1.2em;
    }

    .card {
        display: flex;
        white-space: nowrap;
        justify-content: space-around;
        padding: 20px;
    }

    .casino-logo img {
      display: block;
      width: 160px; /* Adjust as needed */
      height: auto;
    }

    .rating {
        font-size: 1.2em;
        padding-bottom: 10px;
    }

    .card-body {
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }

    .bonus-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 10px;
        width: 100%;
    }

    .bonus-item {
        width: 100%;
        height: auto;
        margin-bottom: 0;
        background-color: #0000009c;
    }

    .bonus-value {
        font-size: 1.2em;
        color: orange;
      }

    .bonus-label {
        font-size: 0.7em;
    }

    button.claim-bonus {
        margin: 0;
        font-size: 0.9em;
        padding: 10px;
        width: 150px;
    }
}

@media screen and (max-width: 768px) {
    .toggle-btn {
        display: block;
        position: fixed;
        top: 3rem;
        right: 3rem;
        z-index: 10000;
        cursor: pointer;
        width: 40px;
        height: 40px;
        background-color: transparent;
    }

    .toggle-btn img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: opacity 1s ease;
    }
    .h22 {
      margin: 60px;
  }
    .menu-icon { opacity: 1; }
    .close-icon { opacity: 0; }

    header.active .toggle-btn .menu-icon { opacity: 0; }
    header.active .toggle-btn .close-icon { opacity: 1; }

    header {
        position: fixed;
        background-color: #000000;
        transform: translateX(100%);
        overflow-y: auto;
        z-index: 9999;
        transition: transform 1s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        width: 100%;
        top: 0;
    }

    header.active {
        transform: translateX(0%);
        transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    }


    #lottie-container {
      position: absolute;
      top: 0!important; /* Adjust this value to control the sticky position */
      right: 0;
      width: 330px;
      z-index: -1;
      opacity: 0.4;
  }
  
  

    .card-container {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .card {
        flex-direction: column;
        margin: 0;
    }

    .card-header {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 10px;
        gap: 10px;
    }

    .card-body {
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0;
        font-size: 1.2em;
    }

    .rating {
        font-size: 2em;
        margin: 0;
    }

    .rank { margin: 0; }

   .casino-logo img {
      display: block;
      width: 160px; /* Adjust as needed */
      height: auto;
  }

    .bonus-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 10px;
        width: 100%;
    }

    .bonus-item {
        width: 100px;
    }

    button.claim-bonus {
        margin: 20px 0;
        width: 200px;
    }
    .mb-only{
      display: flex;
      justify-content: center;
      align-items: center;
      height: 50vh;
      width: auto;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
      
  }
  .mb-only img{
      width: 350px;
      height: auto;
  }

}

@media screen and (max-width: 500px) {
  
  header {
      top: 0;
  }

  #lottie-container {
      opacity: 1!important;
      z-index: 9999999;
  }
  .card {
      max-width: 100%;
      margin: 0;
      padding: 10px;
  }

  .card-container {
      margin: 0;
      padding: 15px;
  }

  .card-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin: 0;
      padding: 10px; /* Adjust padding as needed */
  }

  .rank {
      width: 30px;
      height: 30px;
      font-size: 1.2em;
      font-weight: bolder;
      place-items: center;
      margin: 0;
  }


  .casino-logo {
      grid-column: 1 / 3; /* Span both columns */
      grid-row: 2 / 3; /* Second row */
  }

  .casino-logo img {
    display: block;
    width: 200px; /* Adjust as needed */
    height: auto;
  }

  .rating {
      grid-column: 1 / 3; /* Span both columns */
      grid-row: 3 / 4; /* Third row */
      font-size: 1em;
      margin: 0;
  }

  .card-body {
      flex-direction: column;
      align-items: center;
      font-size: 1.2em;
  }
  .quick-withdrawal-banner{
    margin: 0;
  }

  .bonus-info {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      width: 100%;
      padding: 10px;
  }

  .bonus-item {
      width: 100%;
  }

  .bonus-value {
      font-size: 1.2em;
  }

  .bonus-label {
      font-size: 0.7em;

  }

  button.claim-bonus {
      margin: 0;
      font-size: 0.9em;
      padding: 10px;
      width: 200px;
      margin-top: 10px;
      margin-bottom: 20px;
  }

  #lottie-container {
      position: fixed; /* or 'relative' depending on your layout */
      top: 0; /* Adjust as needed */
      height: 250px;
      width: auto;
      z-index: -1;
      opacity: 0.2;
  }
  .exclusive-banner {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  section p{
      padding: 10px;
      text-align: center;
      word-wrap: break-word;
  
  }
  .h22 {
      margin: 20px;
  }
  .mb-only{
      display: flex;
      justify-content: center;
      align-items: center;
      height: 30vh;
      width: auto;
  }
  .mb-only img{
      width: 250px;
      height: auto;
  }

}



/* Basic container styling */
.giveaway-container {
  padding: 25px;
  color: #fff;
  border: 7px double rgba(98, 0, 255, 0.39);
  border-radius: 20px;
  margin: 0 auto;
  font-family: 'Alpinor', sans-serif;
  background: 
      radial-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1)), /* Adjust the opacity here */
      url(/Assets/25694312_shinny_blue_mesh_pattern_background.png);
  background-position: center;
  background-size: cover;
  text-shadow: 2px 2px 4px rgb(0, 0, 0); /* Horizontal offset, Vertical offset, Blur radius, Color */
  animation: background-move 50s linear infinite;
}

@keyframes background-move {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}
.giveaway-container a{
  text-decoration: underline;
  color: #ffd900c2;
  cursor: pointer; 
  
}
/* Header section for the giveaway */
.giveaway-header {
  text-align: center;
  margin-bottom: 20px;
}
.giveaway-header h2 {
  font-size: 1.5rem;
  color: #ffd700; /* Gold color for emphasis */
}
.giveaway-header p {
  margin-top: 10px;
  font-size: 1rem;
  color: #fff;
}
/* Points Section */
.points-section {
  margin-bottom: 20px;
}
.points-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.point-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00000070;
  backdrop-filter: blur(5px);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1rem;
}
.point-item span {
  color: #edf2f4;
}
.point-item strong {
  color: #ffcc00;
  font-weight: bold;
}
/* Countdown Timer section */
.countdown-timer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between; /* Ensure content is spaced between left and right */
  align-items: center; /* Vertically align the items */
}
#live-timer {
  font-size: 1.5rem;
  font-weight: bolder;
  color: #edf2f4;
  text-align: end;
  background: linear-gradient(90deg, #ff9900, #ff9900, #ffe600);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient 3s ease infinite;
  text-shadow: 2px 2px 5px rgba(224, 104, 6, 0.664); /* Adding a subtle shadow */
  
}
.countdown-timer p {
  font-size: 1rem;
  margin-bottom: 5px;
}
.note {
  display: flex;
  flex-direction: column;
  max-width: 60%; /* Control the width of the note */
}
.note span {
  color: #ffae00; /* Red color for important note */
  font-weight: bold;
  margin-bottom: 5px;
}

.note p {
  font-size: 0.9rem; /* Smaller text for the paragraph */
  color: #edf2f4;
  line-height: 1.4;
  max-width: 500px;
}

/* Responsive design */
@media (max-width: 768px) {
  .giveaway-container {
    padding: 15px;
  }

  .points-list {
    gap: 5px;
  }

  .countdown-timer {
    text-align: center;
    margin-top: 10px;
  }
  .note p {
      text-align: start;
      font-size: 0.7rem;
  }
  .note span {
      text-align: start;
      font-size: 0.7rem;
  }
  #live-timer {
      font-size: 1.2rem;
      color: #ffffff;
      text-align: end;
  }
  .mc{
      text-align: right;
  }
  .mc p{
      text-align: right;
      font-size: 1rem!important;
  }

  .giveaway-title{
      font-size: 2em!important;
      padding: 10px;
  }
  
  #live-timer{
      font-size: 1.1rem;
      background: linear-gradient(90deg, #ff9900, #ff9900, #bbff00);
      -webkit-background-clip: text;
      color: transparent;

  }

}
#vpn-link {
  color: #ffffff; /* Opposite color */
  margin-top: 20px; /* Add top margin */
  box-shadow: 5px 5px 0px #ff00666c; /* Initial shadow color */
  border: 1px solid #ff00666c;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  animation: glowing 3.5s infinite alternate; /* Add glowing animation */
}

#vpn-link:hover, #vpn-link:focus {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: 0px 5px 0px #ff00666c, 0 0 15px #ff0066; /* Add stronger glow on hover */
}

#vpn-link:active {
  box-shadow: 0px 5px 0px #ff00666c; /* Keep current active shadow */
}

/* Keyframes for glowing effect */
@keyframes glowing {
  0% {
      box-shadow: 5px 5px 0px #ff00666c, 0 0 10px #ff0066, 0 0 20px #ff0066;
  }
  50% {
      box-shadow: 5px 5px 0px #ff00666c, 0 0 15px #ff0066, 0 0 25px #ff0066;
  }
  100% {
      box-shadow: 5px 5px 0px #ff00666c, 0 0 10px #bf00ff, 0 0 20px #bf00ff; /* Bright purple glow */
  }
}

.giveaway-title {
  font-size: 3em;
  text-align: center;
  margin-top: 20px;
  background: linear-gradient(90deg, #ff9900, #ff9900, #bbff00);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient 3s ease infinite;
  text-shadow: 2px 2px 5px rgba(224, 104, 6, 0.664); /* Adding a subtle shadow */
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.new-banner {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffcc00; /* Bright yellow */
  color: #000; /* Black text */
  padding: 5px 10px;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: -1; /* Stays above other content */
  animation: bounceIn 2s infinite ease-in-out; /* Subtle animation */
}

/* Bounce animation */
@keyframes bounceIn {
  0% {
      transform: rotate(-3deg) translateY(0);
  }
  50% {
      transform: rotate(-9deg) translateY(-9px); /* Slight lift */
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); /* Enhanced shadow */
  }
  100% {
      transform: rotate(-3deg) translateY(0);
  }
}

