give/* No Wrap Text */
.nowrap {
    white-space: nowrap;
}

/* Button Styling */
.btn-home {
    background-color: #6653CD;
    border-color: #6653CD;
    color: white; /* Adjust the text color if needed */
}

.btn-home:hover {
    background-color: #5642b1; /* Darker shade for hover effect */
    border-color: #5642b1;
}

/* Home Theme Colors */
.home-bg {
    background-color: #6653CD !important;
}

.home-text {
    color: #6653CD !important;
}

.home-border {
    border-color: #6653CD !important;
}

/* Image Size */
.winner-img {
    height: 20px;
    width: 20px;
}

/* Text Colors */
.home-text-light {
    color: #A197FF !important;
}

.home-text-lighter {
    color: #B6AEE3 !important;
}

.home-text-dark {
    color: #4D4194 !important;
}

.home-text-darker {
    color: #332B63 !important;
}

/* Gradient Backgrounds */
.staff-gradient {
background: linear-gradient(135deg, #275CBF, #347AFF);

}


.retired-gradient {
background: linear-gradient(135deg, #E91E63, #FF5E94);

}
.gradient-background {
    background: linear-gradient(to top, #6656C5, #8578D1);

}
.gradient-background-r {
    background: linear-gradient(to top, #8578D1, #6656C5);
    height: 100%; /* Adjust the height as needed */
    width: 100%;
}

/* Gradient Text */
.home-gradient {
    background: linear-gradient(to top, #6656C5, #8578D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient Border */
.home-gradient-border {
    position: relative;
    border-radius: 5px; /* Adjust based on your needs */
    padding: 2px; /* Adjust padding to control the border thickness */
    background: linear-gradient(to top, #6656C5, #8578D1);
}

.home-gradient-border::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    border-radius: inherit;
}

.p a {
    color: #A197FF !important;
}



/* View Image Hover Effects */
.view .mask {
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.view:hover .mask {
    opacity: 1;
}

.view img {
    transition: transform 0.3s ease;
}

.view:hover img {
    transform: scale(1.1);
}

/* Custom Theme for MDBootstrap */
[data-mdb-theme="dark"] {
    --mdb-body-bg: #1C1C1E !important; /* Force override */
    --mdb-dark-color: #e0e0e0 !important;
}
.card {
  background-color: rgba(0, 0, 0, 0.25) !important;
}


/* Base class for adding an icon */
.icon {
    display: inline-flex;
    align-items: center;
}

/* Icon classes with custom images */
.icon-staff::before {
    content: "";
    display: inline-block;
    background-image: url('/img/staff.png');
    background-size: contain; /* Ensure the image scales properly */
    background-repeat: no-repeat;
    width: 20px; /* Set the desired width of the icon */
    height: 20px; /* Set the desired height of the icon */
    margin-right: 3px;
}

.icon-caffeine::before {
    content: "";
    display: inline-block;
    background-image: url('/img/caffeine.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

.icon-warning::before {
    content: "";
    display: inline-block;
    background-image: url('/img/warning.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

/* Add more icon classes with custom images as needed */


/* CSS */
#logo {
  transition: all 0.3s ease-in-out;
}

#logo:hover {
  content: url('/img/logo_animated.gif'); /* Replace with your animated logo path */
  height: 35px; /* Optional: adjust height to maintain consistency */
}

#sky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Send to background */
  pointer-events: none; /* Allow clicks through canvas */
}




/*RANK CHECK*/

  /* Custom font for staff names */
  @font-face {
    font-family: 'Alagard';
    src: url('ALAGARD.woff') format('woff'),
         url('ALAGARD') format('ttf');
    font-weight: normal;
    font-style: normal;
  }

  /* rsn heading */
  .rsn {
    color: #FFF;
    font-family: 'Alagard';
    text-shadow: -2px 2px 0 rgba(0, 0, 0, 0.5);
    font-size: 36px;
  }

  /* Search section form controls */
  #usernameSearchSection .form-control {
    background-color: #1a1a1a;
    border: 1px solid #6653CD;
    color: #fff;
  }
  #usernameSearchSection .form-control::placeholder {
    color: #ccc;
  }
  #usernameSearchSection .form-control:focus {
    border-color: #A197FF;
    box-shadow: 0 0 0 0.2rem rgba(161,151,255, 0.25);
  }

  /* Search section button */
  #usernameSearchSection .btn {
    background-color: #6653CD;
    border-color: #6653CD;
    color: #fff;
    transition: background-color 0.2s, border-color 0.2s;
  }
  #usernameSearchSection .btn:hover,
  #usernameSearchSection .btn:focus {
    background-color: #A197FF;
    border-color: #A197FF;
    color: #222;
  }

  /* Fade-in animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fade-in-up {
    animation: fadeInUp 0.4s ease-out;
  }

  /* Purple divider */
  .hr-purple {
    border: none;
    border-bottom: 2px solid #6653CD;
    margin: 1rem 0;
    opacity: 1 !important;
  }

  /* Profile metrics */
  .profile-metrics .col {
    text-align: center;
    font-size: 0.9rem;
  }

  /* Events row */
  .events {
    text-align: center;
    margin-bottom: 1rem;
  }
  .events .event-label {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }

  /* Metric icons */
  .metric-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 0.3rem;
  }

  /* Modal content override */
.modal-content {
    background-color: #161618 !important;
    color: #fafafa;
  }

  /* Missing-requirements list */
  .missing-list li {
    margin-bottom: 0.4rem;
  }
  
  
  /* animated rainbow gradient text */

  
  
.shop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.shop-card {
  border-radius: 8px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
  text-align: center;
    background: rgba(0,0,0,0.2);

}
.shop-card:hover {
  transform: translateY(-4px);
}


.shop-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease; /* Smooth transition */
}

.shop-card img:hover {
  transform: scale(1.3); /* Enlarge the image on hover */
}
.shop-card h4 {
  font-size: 1rem;
  color: #6653CD;
  margin: 0.75rem 0 0.5rem;
  padding: 0 0.5rem;
}
.shop-card p {
  color: #ccc;
  margin: 0 0 1rem;
  font-size: 0.875rem;
}
.btn-shop {
  display: inline-block;
  background-color: #6653CD;
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.btn-shop:hover {
  background-color: #7a6eff;
}
@media (max-width: 767.98px) {
  .credit {
    position: static !important;    /* drop out of absolute positioning */
    bottom: auto !important;
    right: auto !important;
    margin: 0.5rem auto 0;          /* some top-spacing, centered */
    text-align: center;             /* center the text */
  }
}

.credit {
    color: #606060 !important;
}
/* animated rainbow gradient text */
.magician-effect {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1em; /* adjust as needed */
  background: linear-gradient(
    45deg,
    #0A36EF,
    #3B5EF2,
    #6C86F5
  );
  background-size: 300% 300%;
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  animation: gradientShift 4s ease infinite;
}

/* move the gradient */
@keyframes gradientShift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}

/* sparkle overlay */
.magician-effect::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background-image:
    radial-gradient(circle 2px at 10% 20%, rgba(255,255,255,0.9) 0%, transparent 40%),
    radial-gradient(circle 1.5px at 80% 40%, rgba(255,255,255,0.7) 0%, transparent 50%),
    radial-gradient(circle 2px at 50% 80%, rgba(255,255,255,0.8) 0%, transparent 45%);
  background-repeat: no-repeat;
  opacity: 0;
  animation: sparkle 3s ease-out infinite;
}

/* fade sparkles in and out, randomly reposition */
@keyframes sparkle {
  0%, 85%   { opacity: 0; }
  90%       { 
    opacity: 1;
    background-position: 
      15% 25%,  /* first sparkle */
      75% 35%,  /* second sparkle */
      55% 85%;  /* third sparkle */
  }
  100%      { opacity: 0; }
}




/* LATEST MERCH */

/* ─── Merch Slider Styles ─────────────────────────────────────────────────── */
.slider-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.slide-wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  perspective: 1000px;
}
.slide {
  user-select: none;
  position: absolute;
  width: 300px;
  height: 100%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  border-radius: 5px;
  overflow: hidden;
  background: #141518;
}
.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* Caption text */
.captions {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: bold;
  color: #6653CD;
  z-index: 10;
}
