body {
    position: relative;
    overflow-x: hidden;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: radial-gradient(circle at 50% 0%, #1a1a2e 60%, #0f0c29 100%);
    color: #fff;
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    pointer-events: none;
    z-index: 0;
    inset: 0;
    background:
        radial-gradient(circle at 3% 3%, rgba(255,255,255,0.10) 0, rgba(255,255,255,0.01) 38%, transparent 60%),
        radial-gradient(circle at 97% 3%, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.01) 38%, transparent 60%),
        radial-gradient(circle at 3% 97%, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.01) 38%, transparent 60%),
        radial-gradient(circle at 97% 97%, rgba(255,255,255,0.13) 0, rgba(255,255,255,0.01) 38%, transparent 60%);
    opacity: 0.85;
    pointer-events: none;
}


.about-section-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2cm;
}
.about-img {
    max-width: 350px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 #ff267e22, 0 1.5px 8px 0 #0004;
    background: #23233a;
    aspect-ratio: 16/10;
    object-fit: cover;
}
@media (max-width: 900px) {
    .about-section-redcloud {
        flex-direction: column;
        gap: 2.3rem;
        padding: 1.2rem 0.6rem 1.7rem 0.6rem;
        align-items: stretch;
    }
    .about-section-title, .about-section-lead, .about-section-desc {
        text-align: center;
        display: block;
    }
    .about-section-image {
        width: 100%;
        justify-content: center;
    }
    .about-img {
        max-width: 100%;
        border-radius: 14px;
    }
}


.navbar {
    width: 100%;
    background: #181824;
    height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #e60053;
    position: fixed;
    top: 0;
    z-index: 1000;
    font-family: 'Montserrat', Arial, sans-serif;
}

.navbar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 36px 0.5rem 36px;
    box-sizing: border-box;
}


.navbar-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}


.navbar-logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #fff;
}
.navbar-logo span {
    color: #e60053;
}

.navbar {
    position: relative;
}

@keyframes kreska-fade-in {
    from { opacity: 0; transform: scaleX(0.2); }
    to   { opacity: 1; transform: scaleX(1); }
}

.navbar-underline {
    position: absolute;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(.4,1.5,.5,1);
    width: 0;
    left: 0;
    top: 100%;
    z-index: 10;
}



.copy-alert {
  position: fixed;
  left: 32px;
  bottom: 32px;
  width: 350px;
  background: #232531;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px #0005;
  font-size: 12px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
}

.copy-alert.show {
  opacity: 1;
  pointer-events: auto;
}

.copy-alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 70px;
    padding: 0 20px;
    position: relative;
}

.copy-alert-icon {
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    color: #d65563;
}

.copy-alert-title {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 1.15em;
}

.copy-alert-desc {
    color: #bdbdbd;
    margin: 0;
    font-size: 1.0em;
}

.copy-alert-close {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    border-radius: 6px;
    padding: 5px;
    transition: background 0.2s;
    margin-left: auto;
    display: flex;
    align-items: center;
}
.copy-alert-close:hover {
    background: rgba(255,255,255,0.08);
}

.copy-alert .icon {
    width: 22px;
    height: 22px;
}

.copy-alert-progress {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ff267e 0%, #d65563 100%);
    border-radius: 0 0 12px 12px;
    transform: scaleX(1);
    transform-origin: left;
    transition: none;
    margin-top: -2px;
}

main {
    margin-top: 70px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ff267e;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.hero p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.hero-btn {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    box-shadow: none;
}
.hero-btn {
    border: 2px solid #ff267e;
    color: #ff267e;
    background: #181824;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    box-shadow: 0 0 16px 0 #ff267e44;
    transition: color 0.3s cubic-bezier(.4,1.5,.5,1), box-shadow 0.3s cubic-bezier(.4,1.5,.5,1), background 0.3s cubic-bezier(.4,1.5,.5,1);
    padding: 15px 30px;
    cursor: pointer;
}
.hero-btn span {
    position: relative;
    z-index: 2;
    color: #ff267e;
    font-weight: 700;
    font-size: 1.15rem;
    transition: color 0.22s;
}
.hero-btn .stars {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1.2" fill="%23fff" opacity="0.8"/><circle cx="40" cy="20" r="0.7" fill="%23fff" opacity="0.4"/><circle cx="30" cy="50" r="1.1" fill="%23fff" opacity="0.7"/><circle cx="50" cy="40" r="0.8" fill="%23fff" opacity="0.6"/><circle cx="20" cy="30" r="0.5" fill="%23fff" opacity="0.5"/></svg>');
    background-size: 60px 60px;
    background-repeat: repeat;
    opacity: 0.45;
    animation: stars-move 18s linear infinite;
}
@keyframes stars-move {
    0% { background-position: 0 0; }
    100% { background-position: 120px 60px; }
}
.hero-btn:hover, .hero-btn:focus {
    color: #fff;
    background: #ff267e;
    box-shadow: 0 0 32px 6px #ff267ecc, 0 0 12px 2px #fff2;
    border-color: #fff;
}
.hero-btn:hover span, .hero-btn:focus span {
    color: #fff;
    text-shadow: 0 0 12px #fff, 0 0 24px #ff267e;
}
.hero-btn:hover .stars, .hero-btn:focus .stars {
    opacity: 0.7;
    filter: blur(0.5px) brightness(1.3);
    animation-duration: 7s;
}

.hero button:hover {
    background: #e60053;
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 0 32px 6px #ff267ecc, 0 0 12px 2px #fff2;
    animation: button-glow 1.1s infinite alternate;
}

@keyframes button-glow {
    from {
        box-shadow: 0 0 32px 6px #ff267ecc, 0 0 12px 2px #fff2;
    }
    to {
        box-shadow: 0 0 48px 10px #ff267eee, 0 0 24px 8px #fff4;
    }
}

.about {
    background: #181824;
    padding: 3rem 0 4rem 0;
    text-align: center;
}
.about h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.about h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    background: #ff267e;
    margin: 0 auto;
    border-radius: 2px;
    margin-top: 5px;
    transition: width 0.35s cubic-bezier(.4,1.5,.5,1);
    box-shadow: 0 0 12px 2px #ff267e88, 0 0 18px 6px #ff267e33;
}

.about h2:hover::after {
    width: 100%;
}
.about p {
    color: #bdbdbd;
    margin-bottom: 2.5rem;
}
.about-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Neon hover for each card */
.about-cards .card:nth-child(1):hover {
  box-shadow: 0 0 24px 3px #ffe600cc, 0 0 48px 7px #ffe60055;
}
.about-cards .card:nth-child(1):hover .card-emoji {
  color: #ffe600;
  filter: drop-shadow(0 0 10px #ffe600cc) drop-shadow(0 0 20px #ffe60099);
  text-shadow: 0 0 24px #ffe600, 0 0 36px #ffe60099;
}

.about-cards .card:nth-child(2):hover {
  box-shadow: 0 0 24px 3px #ff267ecc, 0 0 48px 7px #ff267e55;
}
.about-cards .card:nth-child(2):hover .card-emoji {
  color: #ff267e;
  filter: drop-shadow(0 0 10px #ff267ecc) drop-shadow(0 0 20px #ff267e99);
  text-shadow: 0 0 24px #ff267e, 0 0 36px #ff267e99;
}

.about-cards .card:nth-child(3):hover {
  box-shadow: 0 0 24px 3px #00e1ffcc, 0 0 48px 7px #00e1ff55;
}
.about-cards .card:nth-child(3):hover .card-emoji {
  color: #00e1ff;
  filter: drop-shadow(0 0 10px #00e1ffcc) drop-shadow(0 0 20px #00e1ff99);
  text-shadow: 0 0 24px #00e1ff, 0 0 36px #00e1ff99;
}

.about-cards .card:nth-child(4):hover {
  box-shadow: 0 0 24px 3px #00ffb0cc, 0 0 48px 7px #00ffb055;
}
.about-cards .card:nth-child(4):hover .card-emoji {
  color: #00ffb0;
  filter: drop-shadow(0 0 10px #00ffb0cc) drop-shadow(0 0 20px #00ffb099);
  text-shadow: 0 0 24px #00ffb0, 0 0 36px #00ffb099;
}

.about-cards .card:nth-child(5):hover {
  box-shadow: 0 0 24px 3px #ff8c1acc, 0 0 48px 7px #ff8c1a55;
}
.about-cards .card:nth-child(5):hover .card-emoji {
  color: #ff8c1a;
  filter: drop-shadow(0 0 10px #ff8c1acc) drop-shadow(0 0 20px #ff8c1a99);
  text-shadow: 0 0 24px #ff8c1a, 0 0 36px #ff8c1a99;
}


.card {
    background: #23233a;
    border-radius: 15px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 2px 16px 0 #0002;
    width: 100%;
    max-width: 320px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 8px 24px rgba(230,0,83,0.13);
}
.card-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff267e;
    transition: filter 0.3s, text-shadow 0.3s, color 0.3s;
}

.card:hover .card-emoji {
    filter: drop-shadow(0 0 10px #ff267e88) drop-shadow(0 0 20px #ff267e44);
    text-shadow: 0 0 24px #ff267e, 0 0 36px #ff267e99;
    color: #ff267e;
}

.card-emoji.rocket_launch {
    transform: rotate(-45deg);
}
.card h3 {
    color: #ff267e;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    transition: color 0.22s, text-shadow 0.22s;
}

.about-cards .card:nth-child(1):hover h3 {
  color: #ffe600;
  text-shadow: 0 0 12px #ffe600, 0 0 24px #ffe60099;
}
.about-cards .card:nth-child(2):hover h3 {
  color: #ff267e;
  text-shadow: 0 0 12px #ff267e, 0 0 24px #ff267e99;
}
.about-cards .card:nth-child(3):hover h3 {
  color: #00e1ff;
  text-shadow: 0 0 12px #00e1ff, 0 0 24px #00e1ff99;
}
.about-cards .card:nth-child(4):hover h3 {
  color: #00ffb0;
  text-shadow: 0 0 12px #00ffb0, 0 0 24px #00ffb099;
}
.about-cards .card:nth-child(5):hover h3 {
  color: #ff8c1a;
  text-shadow: 0 0 12px #ff8c1a, 0 0 24px #ff8c1a99;
}

.card p {
    color: #fff;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .about-cards {
        flex-direction: column;
        align-items: center;
    }
}

.footer {
  background: #191929;
  color: #fff;
  padding: 2.7rem 0 1.3rem 0;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 0 0 2px #ff267e22, 0 -2px 0 0 #ff267e;
  margin-top: 3.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
}
.footer-brand {
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 2.2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 4px 24px #ff267e44, 0 1px 0 #0008;
}
.footer-logo-accent {
  color: #ff006a;
  text-shadow: 0 0 12px #ff267e88;
}
.footer-desc {
  display: block;
  margin-top: 0.5rem;
  color: #bdbdbd;
  font-size: 1.03rem;
  font-weight: 400;
}
.footer-columns {
  display: flex;
  flex: 2 1 480px;
  gap: 3.2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 140px;
}
.footer-col-title {
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 0.7rem;
  display: inline-block;
  color: #fff;
  border-bottom: 2px solid #ff267e;
  padding-bottom: 0.15em;
  margin-bottom: 0.7em;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.5em;
}
.footer-col ul li a {
  color: #ff267e;
  text-decoration: none;
  font-size: 1.01rem;
  transition: color 0.18s;
  display: flex;
  align-items: center;
  gap: 0.45em;
}
.footer-link-arrow {
  color: #ff267e;
  font-size: 1.18em;
  font-weight: 700;
  margin-right: 0.15em;
  pointer-events: none;
  user-select: none;
  transition: color 0.16s, filter 0.20s, transform 0.20s cubic-bezier(.4,1.5,.5,1);
  display: inline-block;
  position: relative;
  top: 1px;
}
.footer-col ul li a:hover .footer-link-arrow {
  color: #ff267e;
  filter: drop-shadow(0 0 8px #ff267e) drop-shadow(0 0 16px #ff267e);
  transform: translateX(5px);
  transition: color 0.16s, filter 0.20s, transform 0.20s cubic-bezier(.4,1.5,.5,1);
}

.footer-col ul li a:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff267e99;
}
.footer-social {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  margin-left: auto;
  margin-top: 2.1rem;
}
.social-icon {
  width: 50px;
  height: 50px;
  background: #232234;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #ff267e44;
  transition: background 0.22s, box-shadow 0.22s, filter 0.24s;
  margin-right: 0.1rem;
  color: #fff;
  font-size: 1.45rem;
}
.social-icon:hover {
  box-shadow: 0 0 0 3px #ff267d00, 0 0 16px 0 #ff267d00;
  filter: drop-shadow(0 0 8px #ff267d00) drop-shadow(0 0 16px #ff267d00);
  background: #23233a;
}
.footer-social .social-icon[aria-label="Discord"]:hover {
  box-shadow: 0 0 0 3px #5865F288, 0 0 32px 12px #5865F244, 0 0 64px 24px #5865F222;
}
.footer-social .social-icon[aria-label="Discord"]:hover svg {
  filter: drop-shadow(0 0 8px #5865F2) drop-shadow(0 0 16px #5865F2);
  fill: #5865F2;
}
.footer-social .social-icon[aria-label="TikTok"]:hover {
  box-shadow: 0 0 0 3px #ff267e88, 0 0 32px 12px #ff267e44, 0 0 64px 24px #ff267e22;
}
.footer-social .social-icon[aria-label="TikTok"]:hover i {
  filter: drop-shadow(0 0 8px #ff267e) drop-shadow(0 0 16px #ff267e);
  color: #ff267e;
}
.footer-social .social-icon[aria-label="GitHub"]:hover {
  box-shadow: 0 0 0 3px #0cf8, 0 0 32px 12px #0cf4, 0 0 64px 24px #0cf2;
}
.footer-social .social-icon[aria-label="GitHub"]:hover svg {
  filter: drop-shadow(0 0 8px #0cf) drop-shadow(0 0 16px #0cf);
  fill: #0cf;
}
.footer-social .social-icon[aria-label="YouTube"]:hover {
  box-shadow: 0 0 0 3px #ff174488, 0 0 32px 12px #ff174444, 0 0 64px 24px #ff174422;
}
.footer-social .social-icon[aria-label="YouTube"]:hover svg {
  filter: drop-shadow(0 0 8px #ff1744) drop-shadow(0 0 16px #ff1744);
  fill: #ff1744;
}

.social-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.footer-bottom {
  border-top: 1px solid #232234;
  margin-top: 2.3rem;
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
  color: #bdbdbd;
  gap: 1.1rem;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem;
  }
  .footer-social {
    margin-left: 0;
    margin-top: 1.3rem;
  }
  .footer-columns {
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .footer-main, .footer-bottom {
    max-width: 98vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
  .footer {
    padding: 1.5rem 0 0.7rem 0;
  }
  .footer-logo {
    font-size: 1.4rem;
  }
  .footer-columns {
    flex-direction: column;
    gap: 1.1rem;
  }
  .footer-col {
    min-width: 0;
  }
}

.partners {
    background: #181824;
    padding: 3.5rem 0 3.5rem 0;
    text-align: center;
    margin-top: 0;
}
.partners-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
    text-align: center;
    letter-spacing: 0.5px;
    color: #ff267e;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}
.carousel-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: carousel-infinite-scroll 60s linear infinite;
}

@keyframes carousel-infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
    min-width: 200px;
    min-height: 80px;
    background: #26273a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 2px 16px 0 #0002;
    margin: 0.5rem 0;
}
@keyframes carousel-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-scroll:hover {
    animation-play-state: paused;
}
@keyframes partners-scroll-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 700px) {
    .partners-scroll {
        gap: 1.2rem;
        padding: 0.5rem 0.3rem 1rem 0.3rem;
    }
    .partner-box {
        min-width: 140px;
        max-width: 180px;
        height: 70px;
        font-size: 0.97rem;
    }
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 18px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.5px;
}

.navbar-links a:focus, .navbar-links a:active {
    outline: none;
    box-shadow: none;
}

.navbar-links a:hover {
    background: #ffffff25;
    color: #fff;
    box-shadow: 0 2px 8px rgba(255,38,126,0.13);
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin-left: 1px;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
}
