@keyframes rainbow-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
html, body { height: 100%; margin: 0; }
body {
  background-image: linear-gradient(to top, #ff0000 0%, #683c02 50%, #000000 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  overflow-x: hidden;
  box-sizing: border-box;
}


.rainbow-box {
    padding: 3px;
    background: linear-gradient(90deg, #ff0000, #ff5e00, #ff6600, #ff8800, #ffbb00, #e5ff00, #550404, #fffb00, #ff0000);
    background-size: 200% 200%;
    border-radius: 17px;
    animation: rainbow-glow 8s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 17, 17, 0.308);
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.container {
    background-color: #010101;
    background-image: linear-gradient(to bottom, black, rgb(27, 27, 27));
    border-radius: 12px;
    padding: 0 clamp(1rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgb(255, 153, 0), 0 0 25px rgb(238, 255, 0);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    text-shadow:
        0 0 7px rgb(255, 145, 0),
        0 0 10px rgb(255, 145, 0),
        0 0 21px rgb(255, 0, 0),
        0 0 42px rgb(255, 238, 0),
        0 0 82px rgb(255, 0, 0);
    letter-spacing: 0.1em;
    margin: 0;
    text-align: center;
}

.description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ccc;
    max-width: 60ch;
    margin: 0 0 1rem 0;
    text-shadow: 0 0 5px rgba(204, 204, 204, 0.5);
}

.benefits {
    width: 100%;
    margin-bottom: 0;
}

.benefits h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: rgb(255, 238, 0);
    text-shadow: 0 0 10px rgb(255, 0, 0);
    margin-bottom: 1.5rem;
}

.benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.benefits li {
    color: #ddd;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefits .bullet {
    color: rgb(255, 208, 0);
    font-weight: bold;
    text-shadow: 0 0 8px rgb(255, 0, 0);
}

.discord-link {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid rgb(255, 0, 0);
    border-radius: 8px;
    color: rgb(255, 174, 0);
    background-color: transparent;
    text-decoration: none;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 5px rgb(255, 153, 0), inset 0 0 5px rgb(255, 123, 0);
}

.discord-link:hover {
    background-color: rgb(255, 217, 0);
    color: #000;
    box-shadow: 0 0 10px rgb(251, 255, 0), 0 0 20px rgb(255, 0, 0), 0 0 40px #0af;
}

.team {
    width: 100%;
}

.team h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: rgb(255, 123, 0);
    text-shadow: 0 0 10px rgb(255, 0, 0);
    margin-bottom: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.team-member {
    background: rgba(10, 175, 255, 0.05);
    border: 1px solid rgba(255, 10, 10, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(255, 10, 10, 0.5), 0 0 25px rgba(255, 10, 10, 0.3);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgb(255, 174, 0);
    box-shadow: 0 0 10px rgb(255, 187, 0);
}

.team-member h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
}

.team-member p {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
}

.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}
.membersCount {
  text-align: center;
  color: white;
      text-shadow: 0 0 10px rgb(255, 0, 0);
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.requirements {
    width: 100%;
    margin-bottom: 0;
}

.requirements h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: rgb(251, 255, 0);
    text-shadow: 0 0 10px rgb(255, 0, 0);
    margin-bottom: 1.5rem;
}

.requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
        text-shadow: 0 0 14px rgb(255, 255, 255);
}

.requirements li {
    color: #ddd;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
            text-shadow: 0 0 14px rgb(255, 255, 255);
}

.requirements .bullet {
    color: rgb(255, 217, 0);
    font-weight: bold;
    text-shadow: 0 0 8px rgb(255, 0, 0);
}
.footer {
    background-color: #0b0f1a;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
    color: white;
    border-top: 2px solid #331a1a;
    border-radius: 15px;
}

.footer-container h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffe18e;
}

.footer-icon {
    width: 24px;
    height: 24px;
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.6;
}
.carousel {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.creator-card {
  background: rgba(0,0,0,0.3);
  border: 2px solid #ff0000;
  border-radius: 14px;
  padding: 12px;
  width: 180px;            
  flex: 0 0 auto;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 5px #ffbb00;
}
.creator-card img {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px solid #ff0000;
  margin-bottom: 8px;
}


@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; 
  background: transparent;
  pointer-events: none; 
}
.clip-section {
  text-align: center;
  margin: 40px 0;
  color: white;
  font-family: 'Orbitron', sans-serif;
}

.clip-section h2 {
  text-shadow: 0 0 10px #ff0000;
}

.clip-container {
  position: relative;
  max-width: 720px;
  margin: 20px auto;
  border: 2px solid #ff7300;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(206, 59, 22, 0.4);
}

.clip-container iframe {
  width: 100%;
  height: 405px;
}

#clipTitle {
  margin-top: 10px;
  font-size: 1rem;
  opacity: 0.8;
}
.banana {
  position: fixed;
  top: -50px;
  font-size: 2rem;
  pointer-events: none;
  user-select: none;
  z-index: 9999;
  animation: fall linear forwards;
}

@keyframes fall {
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}


.modal{position:fixed;inset:0;background:rgba(0,0,0,.55);display:none;align-items:center;justify-content:center;z-index:9999}
.modal.show{display:flex}
.modal-card{background:#0c1020;border:1px solid rgb(51, 34, 34);border-radius:14px;padding:16px;min-width:320px;max-width:900px;box-shadow:0 0 24px rgba(0,255,255,.2);color:#eaf6ff}
.modal-wide{width:min(900px,92vw)}
.modal-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.btn-ghost{background:transparent;border:1px solid rgb(85, 24, 24);color:#cfe;border-radius:10px;padding:6px 10px;cursor:pointer}
.muted{opacity:.8}

.rewards-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
  margin-top:8px;
}
.reward-card{
  background:#0a0f1a;border:1px solid #203040;border-radius:12px;padding:12px;
}
.reward-card h5{margin:0 0 6px}
.reward-meta{opacity:.85;font-size:.9rem;margin-bottom:8px}
.reward-card button{width:100%}

.inventory{
  border:1px solid #203040;border-radius:12px;padding:10px;min-height:46px;background:#0a0f1a
}
.inv-item{padding:6px 0;border-bottom:1px solid #371b1b}
.inv-item:last-child{border-bottom:none}

@media (max-width: 640px){
  #bananaHud{right:10px; bottom:10px}
}
#initOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: grid;
  place-items: center;
  z-index: 999999; 
  opacity: 1;
  transition: opacity .5s ease;
}

#initOverlay.fade-out{ opacity: 0; pointer-events: none; }

#initCenter{
  text-align: center;
  color: #eaf6ff;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 12px rgba(255, 173, 80, 0.6);
  user-select: none;
}

#initText{
  font-size: clamp(20px, 4vw, 42px);
  margin-bottom: 10px;
}

#initHint{
  font-size: clamp(12px, 2.2vw, 16px);
  opacity: .8;
}

@media (hover:hover){
  #initText{ animation: pulse 2s infinite; }
  @keyframes pulse{
    0%,100%{ filter: drop-shadow(0 0 0 rgba(0,255,255,.0)); }
    50%{ filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.6)); }
  }
}
