/* ========== GENERAL STYLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

html, body {
  scroll-behavior: auto !important;
  height: 100%;
}

/* ========== NAVBAR ========== */
.bottom-navbar {
  position: fixed;
  bottom: -70px;
  left: 0;
  width: 100%;
  background-color: #1a0426;
  color: white;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s;
  opacity: 0;
  visibility: hidden;
}

.bottom-navbar.show {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.bottom-navbar ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  text-align: center;
}

.bottom-navbar ul li {
  display: inline-block;
  margin: 0 15px;
}

.bottom-navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.bottom-navbar ul li a:hover {
  color: #a95ad3;
}

.bottom-navbar ul li a i {
  margin-right: 8px;
}

@media (max-width: 767px) {
  .bottom-navbar {
    display: none;
  }
}

/* ========== ANNOUNCEMENTS ========== */
.announcement, .announcement2 {
  position: fixed;
  left: 0;
  width: 100%;
  background-color: #2a063d;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

.announcement {
  top: 0;
}

.announcement i {
  color: #a95ad3;
  font-size: 1.2rem;
  margin-left: 5px;
}

.announcement2 {
  top: 40px;
  z-index: 999;
}

.announcement p, .announcement2 p {
  margin: 0;
}

.announcement a, .announcement2 a {
  color: #f196f1;
  text-decoration: underline;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .announcement, .announcement2 {
    font-size: 0.9rem;
    padding: 8px 0;
  }
}

@media (max-width: 768px) {
  .announcement, .announcement2 {
    font-size: 0.85rem;
    padding: 1px;
    line-height: 1;
  }

  .announcement p, .announcement2 p {
    margin: 0 8px;
    word-wrap: break-word;
  }
}

@media (max-width: 430px) {
  .announcement, .announcement2 {
    font-size: 0.8rem;
    padding: 3px 0;
    line-height: 1;
  }

  .announcement p, .announcement2 p {
    margin: 0 5px;
    word-wrap: break-word;
  }
}

section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0a0214;
    color: #fff;
}

::selection {
    background: #1a0426;
    color: #7108aa;
}

::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #3c025a, #220835);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #541494, #6f08bc);
    border-radius: 5px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to right, #5900b3, #5e0577);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
}

/* ========== CUSTOM CURSOR ========== */
.custom-cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    background-color: #905fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease-out, background-color 0.2s ease;
}

.custom-cursor.active {
    transform: scale(2);
    z-index: 10000;
    background-color: #8201fc;
}

/* ========== HOMEPAGE ========== */
.hero {
  position: relative;
  padding: 150px 20px;
  text-align: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
  pointer-events: none;
}

.hero::before {
  top: 45px;
  left: 0;
  border-left: 4px solid #a95ad3;
  border-top: 4px solid #a95ad3;
  z-index: 999;
}

.hero::after {
  bottom: 0;
  right: 0;
  border-right: 4px solid #a95ad3;
  border-bottom: 4px solid #a95ad3;
}

.hero:hover::before {
  width: 60px;
  height: 60px;
}

.hero:hover::after {
  width: 60px;
  height: 60px;
}

.hero i {
    margin-right: 5px;
    color: #a95ad3;
    font-size: 3rem;
}

@keyframes zoomFloat {
  0% {
    transform: scale(1) translateY(0) rotate(0deg);
  }
  50% {
    transform: scale(1.15) translateY(-5px) rotate(3deg);
  }
  100% {
    transform: scale(1) translateY(0) rotate(0deg);
  }
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgb(87 17 122 / 31%), transparent 70%);
    animation: waveAnimation 10s linear infinite;
}

.background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgb(49 8 73 / 17%), transparent 70%);
    animation: waveAnimationReverse 12s linear infinite;
}

@keyframes waveAnimation {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(-50%) translateY(-50%) rotate(180deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(360deg);
    }
}

@keyframes waveAnimationReverse {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(50%) translateY(50%) rotate(-180deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(-360deg);
    }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero h1:hover {
  transform: scale(1.1);
  transform-origin: center;
}

.hero h1 i {
  transition: transform 0.4s ease;
}

.hero h1:hover i {
  animation: zoomFloat 2s ease-in-out infinite;
}

@keyframes zoomFloat {
  0% {
    transform: scale(1) translateY(0) rotate(0deg);
  }
  50% {
    transform: scale(1.15) translateY(-5px) rotate(3deg);
  }
  100% {
    transform: scale(1) translateY(0) rotate(0deg);
  }
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 700px;
    margin: auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #7a1faa;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 31, 170, 0.3);
}

.btn:hover {
    background: #9b2fcf;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(155, 47, 207, 0.5);
}

.btn i {
    font-size: 1rem;
    color: #ea26ea;
}

/* ========== TECHNOLOGY ========== */
#technology {
  position: relative;
  padding: 50px 25px;
  text-align: center;
  display: block;
  overflow: hidden;
}

#technology::before,
#technology::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
  z-index: 0;
}

#technology::before {
  top: 0;
  left: 0;
  border-left: 4px solid #a95ad3;
  border-top: 4px solid #a95ad3;
}

#technology::after {
  bottom: 0;
  right: 0;
  border-right: 4px solid #a95ad3;
  border-bottom: 4px solid #a95ad3;
}

#technology:hover::before {
  width: 60px;
  height: 60px;
}

#technology:hover::after {
  width: 60px;
  height: 60px;
}

#technology i {
    margin-right: 5px;
    color: #a95ad3;
    font-size: 3rem;
}

#technology h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s ease;
}

#technology h2:hover {
  transform: scale(1.1);
  transform-origin: center;
}

#technology h2 i {
  transition: transform 0.4s ease;
}

#technology h2:hover i {
  animation: zoomFloat 2s ease-in-out infinite;
}

#technology p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

#technology ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
    list-style-type: none;
    margin: 0;
    flex-wrap: wrap;
}

#technology ul li {
    width: 30%;
    padding: 10px;
    box-sizing: border-box;
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 1024px) {
    #technology ul li {
        width: 45%;
        margin: 10px auto;
    }
}

@media (max-width: 768px) {
    #technology h2 {
        font-size: 2rem;
    }

    #technology p {
        font-size: 1rem;
    }

    #technology ul {
        flex-direction: column;
        align-items: center;
    }

    #technology ul li {
        width: 90%;
        margin-bottom: 15px;
    }
}


/* ========== TECHNOLOGY CARDS ========== */
.card {
    background: #1a0426;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #2f0c3b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card i {
    font-size: 3rem;
    color: #a95ad3;
    margin-right: 5px;
    transition: transform 0.6s ease;
}

.card:hover i {
  animation: bounce 2s linear infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card strong {
    display: block;
    padding-top: 20px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* ========== FEATURES ========== */
.features {
    padding: 50px 20px;
    text-align: center;
    background: #14021b;
}

.features::before,
.features::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
  z-index: 0;
}

.features::before {
  top: 0;
  left: 0;
  border-left: 4px solid #a95ad3;
  border-top: 4px solid #a95ad3;
}

.features::after {
  bottom: 0;
  right: 0;
  border-right: 4px solid #a95ad3;
  border-bottom: 4px solid #a95ad3;
}

.features:hover::before {
  width: 60px;
  height: 60px;
}

.features:hover::after {
  width: 60px;
  height: 60px;
}

.features i {
    margin-right: 5px;
    padding-top: 10px;
    color: #a95ad3;
    font-size: 3rem;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.features h2:hover {
  transform: scale(1.1);
  transform-origin: center;
}

.features h2 i {
  transition: transform 0.4s ease;
}

.features h2:hover i {
  animation: zoomFloat 2s ease-in-out infinite;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1050px;
    margin: auto;
}

.feature-item {
    background: #1a0426;
    padding: 20px;
    border: 2px solid #2f0c3b;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-item i {
    font-size: 3rem;
    transition: transform 0.3s ease;
    color: #a95ad3;
}

.feature-item:hover i {
  animation: swing 1s ease-in-out infinite;
}

@keyframes swing {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  50% { transform: rotate(-15deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.feature-item:hover {
    background: #2d0640;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========== UPDATES ========== */
.updates {
    text-align: center;
    padding: 50px 20px;
}

.updates::before,
.updates::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
  z-index: 0;
}

.updates::before {
  top: 0;
  left: 0;
  border-left: 4px solid #a95ad3;
  border-top: 4px solid #a95ad3;
}

.updates::after {
  bottom: 0;
  right: 0;
  border-right: 4px solid #a95ad3;
  border-bottom: 4px solid #a95ad3;
}

.updates:hover::before {
  width: 60px;
  height: 60px;
}

.updates:hover::after {
  width: 60px;
  height: 60px;
}

.updates i {
    margin-right: 5px;
    color: #a95ad3;
    font-size: 3rem;
}

.updates h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.updates h2:hover {
  transform: scale(1.1);
  transform-origin: center;
}

.updates h2 i {
  transition: transform 0.4s ease;
}

.updates h2:hover i {
  animation: zoomFloat 2s ease-in-out infinite;
}

.update-card {
    background: #1a0426;
    padding: 20px;
    border-radius: 10px;
    margin: 10px auto;
    max-width: 800px;
    border: 2px solid #2f0c3b;
    text-align: left;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.update-card:hover {
    transform: scale(1.02);  
}

.update-card i {
    margin-right: 5px;
    color: #a95ad3;
    font-size: 1.6rem;
}

.update-card h3 {
    margin-bottom: 10px;
    color: #c57aff;
}

.update-date {
    top: 10px;
    right: 15px;
    font-size: 15px;
    color: #C084FC;
    opacity: 0.8;
    font-weight: bold;
}

.update-date i {
    font-size: 1rem;
    color: #a95ad3;
}

/* ========== OUR TEAM ========== */
.team {
    text-align: center;
    padding: 50px 20px;
    background: #14021b;
}

.team::before,
.team::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
  z-index: 0;
}

.team::before {
  top: 0;
  left: 0;
  border-left: 4px solid #a95ad3;
  border-top: 4px solid #a95ad3;
}

.team::after {
  bottom: 0;
  right: 0;
  border-right: 4px solid #a95ad3;
  border-bottom: 4px solid #a95ad3;
}

.team:hover::before {
  width: 60px;
  height: 60px;
}

.team:hover::after {
  width: 60px;
  height: 60px;
}

.team i {
    margin-right: 3px;
    color: #a95ad3;
    font-size: 1.5rem;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.team h2:hover {
  transform: scale(1.1);
  transform-origin: center;
}

.team h2 i {
  transition: transform 0.4s ease;
}

.team h2:hover i {
  animation: zoomFloat 2s ease-in-out infinite;
}

.team h2 i {
    margin-right: 5px;
    color: #a95ad3;
    font-size: 3rem;
}

.team-member {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #1a0426;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #2f0c3b;
  cursor: pointer;
  max-width: 800px;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-member .image-wrapper {
    position: relative;
    width: 120px;
    right: 30px;
    height: 120px;
    display: inline-block;
}

.team-member img {
    width: 105%;
    height: 105%;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.image-wrapper::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #511173;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.image-wrapper:hover::before {
    transform: scale(1.1);
    border-color: #4c2c5e;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.team-info {
    text-align: left;
    max-width: 500px;
}

.team-info h3 {
  margin-bottom: 5px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.team-info h3:hover {
  transform: scale(1.1) translateY(-5px);
  color: #a95ad3;
}


/* ========== OUR TEAM SOCIAL LINKS ========== */
.social-links {
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-links a {
    margin-right: 5px;
}

/* ========== FAQ ========== */
.faq {
    text-align: center;
    padding: 50px 20px;
}

.faq::before,
.faq::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
  z-index: 0;
}

.faq::before {
  top: 0;
  left: 0;
  border-left: 4px solid #a95ad3;
  border-top: 4px solid #a95ad3;
}

.faq::after {
  bottom: 0;
  right: 0;
  border-right: 4px solid #a95ad3;
  border-bottom: 4px solid #a95ad3;
}

.faq:hover::before {
  width: 60px;
  height: 60px;
}

.faq:hover::after {
  width: 60px;
  height: 60px;
}

.faq i {
    margin-right: 5px;
    color: #a95ad3;
    font-size: 3rem;
}

.faq h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq h2:hover {
  transform: scale(1.1);
  transform-origin: center;
}

.faq h2 i {
  transition: transform 0.4s ease;
}

.faq h2:hover i {
  animation: zoomFloat 2s ease-in-out infinite;
}

.faq-item {
    margin-bottom: 15px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

details {
    cursor: pointer;  
}

.faq-item h3 {
    color: #b300b3;
    font-size: 1.3rem;
    cursor: pointer;
}

.faq-item p {
    display: none;
    font-size: 1rem;
    color: #e0e0e0;
}

/* ========== JOIN THE PROJECT ========== */
.join {
    position: relative;
    text-align: center;
    padding: 50px 20px;
    background: #14021b;
    z-index: 1;
}

.join::before,
.join::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
  z-index: 0;
}

.join::before {
  top: 0;
  left: 0;
  border-left: 4px solid #a95ad3;
  border-top: 4px solid #a95ad3;
}

.join::after {
  bottom: 0;
  right: 0;
  border-right: 4px solid #a95ad3;
  border-bottom: 4px solid #a95ad3;
}

.join:hover::before {
  width: 60px;
  height: 60px;
}

.join:hover::after {
  width: 60px;
  height: 60px;
}

.join i {
    margin-right: 5px;
    color: #a95ad3;
    font-size: 3rem;
}

.join h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.join h2:hover {
  transform: scale(1.1);
  transform-origin: center;
}

.join h2 i {
  transition: transform 0.4s ease;
}

.join h2:hover i {
  animation: zoomFloat 2s ease-in-out infinite;
}

/* ========== JOIN THE PROJECT DROPDOWN ========== */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 10;
  transform: none !important;
}

.dropdown .btn {
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 165px;
  background-color: #7a1faa;
  color: white;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.3s ease;
}

.dropdown .btn:hover {
  background-color: #9b2fcf;
  transform: scale(1.1);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #0a0214;
  min-width: 170px;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #3c0a3e;
  border-radius: 8px;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #2a0751;
}

/* ========== ROLES LIST STYLES ========== */
.role-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.role-item {
    background-color: #1a0520;
    margin: 15px 0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #e1b7e0;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.role-item:hover {
    transform: translateY(-7px);
    color: white;
}

.role-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #a95ad3;
}

.role-description {
    font-size: 1rem;
    margin-top: 10px;
    color: #d1c7e0;
}

.role-item:hover .role-title {
    color: white;
}

.role-item:hover .role-description {
    color: #a29da3;
}

.role-title i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 38px;
  transition: transform 0.3s ease;
}

.role-item:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .join h2 {
        font-size: 2rem;
    }

    .dropdown .btn {
        font-size: 14px;
        padding: 12px;
    }

    .dropdown-content a {
        padding: 10px 12px;
    }
}

/* ========== SUPPORT AVAILABILITY ========== */
.support {
    text-align: center;
    padding: 50px 20px;
}

.support::before,
.support::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
  z-index: 0;
}

.support::before {
  top: 0;
  left: 0;
  border-left: 4px solid #a95ad3;
  border-top: 4px solid #a95ad3;
}

.support::after {
  bottom: 0;
  right: 0;
  border-right: 4px solid #a95ad3;
  border-bottom: 4px solid #a95ad3;
}

.support:hover::before {
  width: 60px;
  height: 60px;
}

.support:hover::after {
  width: 60px;
  height: 60px;
}

.support i {
    margin-right: 5px;
    color: #a95ad3;
    font-size: 3rem;
}

.support h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.support h2:hover {
  transform: scale(1.1);
  transform-origin: center;
}

.support h2 i {
  transition: transform 0.4s ease;
}

.support h2:hover i {
  animation: zoomFloat 2s ease-in-out infinite;
}

.support-info {
    background: #1a0426;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #2f0c3b;
    max-width: 800px;
    margin: 20px auto;
    transition: transform 0.2 ease;
    cursor: pointer;
}

.support-info:hover {
    transform: scale(1.02);  
}

.support-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.support-info h3 i {
    margin-right: 5px;
    color: #a95ad3;
    font-size: 2rem;
}

.support-info p {
    font-size: 1.1rem;
    color: #dcdcdc;
}

.support .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #511173;
    color: white;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.support .btn:hover {
    background-color: #4c2c5e;
}


/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(to right, #12022f, #1a042d);
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid #2e1050;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer .socials {
  margin-bottom: 25px;
}

.footer .socials a {
  margin: 0 10px;
  color: #a95ad3;
  font-size: 1.3rem;
  transition: color 0.3s, transform 0.3s;
}

.footer .socials a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* ========== MUSIC ========== */
.music-controls {
    position: fixed;
    bottom: 55px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
    width: 30px;
    overflow: hidden;
    cursor: pointer;
}

.music-controls:hover {
    width: 200px;
    opacity: 1;
}

#play-pause-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 150px;
    height: 6px;
    background: linear-gradient(to right, #3b00ff, #b282ff);
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

#volume-slider:hover {
    opacity: 1;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    transition: background 0.2s ease;
}

#volume-slider::-webkit-slider-thumb:hover {
    background: #e4feff;
}

#volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    transition: background 0.2s ease;
}

#volume-slider::-moz-range-thumb:hover {
    background: #e4feff;;
}

.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-scroll] {
  will-change: transform;
}
