* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  color: white;
  user-select: none;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #eb59bd;
  margin-top: 2rem;
}

.partner-container {
  max-width: 1100px;
  margin: 0 auto;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#loading-screen img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 10px #eb59bd);
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1.7;
}

.partner-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.partner-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(235, 89, 189, 0.2);
  border-radius: 20px;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  backdrop-filter: blur(10px);
  position: relative;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(235, 89, 189, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(235, 89, 189, 0.4);
  box-shadow: 0 20px 40px rgba(235, 89, 189, 0.2);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-summary {
  display: flex;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.partner-summary img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid rgba(235, 89, 189, 0.3);
  box-shadow: 0 10px 30px rgba(235, 89, 189, 0.3);
  transition: all 0.4s ease;
}

.partner-card:hover .partner-summary img {
  transform: scale(1.05);
  border-color: rgba(235, 89, 189, 0.6);
  box-shadow: 0 15px 40px rgba(235, 89, 189, 0.4);
}

.partner-summary .text {
  flex: 1;
}

.partner-summary h2 {
  font-size: 2rem;
  color: #eb59bd;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(235, 89, 189, 0.3);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-summary h2 {
  text-shadow: 0 4px 20px rgba(235, 89, 189, 0.5);
  transform: translateX(5px);
}

.partner-summary p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-summary p {
  opacity: 1;
  transform: translateX(5px);
}

.partner-details {
  display: none;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(235, 89, 189, 0.05), rgba(0, 242, 255, 0.05));
  border-top: 1px solid rgba(235, 89, 189, 0.2);
  position: relative;
  z-index: 2;
}

.partner-details p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.partner-details a {
  color: #eb59bd;
  text-decoration: none;
  font-weight: bold;
}

.partner-details a:hover {
  text-decoration: underline;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(235, 89, 189, 0.15), rgba(0, 242, 255, 0.1));
  border-left: 4px solid #eb59bd;
  padding: 1.2rem;
  margin: 1.2rem 0;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(235, 89, 189, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  position: relative;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(235, 89, 189, 0.1));
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(235, 89, 189, 0.3);
}

.highlight-box:hover::before {
  opacity: 1;
}

.highlight-box strong {
  color: #eb59bd;
  text-shadow: 0 1px 5px rgba(235, 89, 189, 0.3);
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background-color: rgba(26, 26, 46, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 5rem;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

nav li {
  text-align: center;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #eb59bd;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #1a1a2e;
  color: #ccc;
  margin-top: 0;
  font-size: 1.2rem;
}

footer .socials a {
  color: #eb59bd;
  text-decoration: none;
  margin: 0 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
}

footer .socials {
  margin-bottom: 2rem;
  margin-top: 20px;
}

footer .socials a {
  color: #eb59bd;
  text-decoration: none;
  margin: 0 1.5rem;
  font-size: 1.9rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

footer .socials a:hover {
  color: #eb59bdb0;
  transform: scale(2.5);
}

.content {
  flex: 1;
}

p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px #eb59bd;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px #eb59bd;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px #eb59bd;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Card animations */
.partner-card {
  animation: fadeInUp 0.6s ease forwards;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }
.partner-card:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced hover interactions */
.partner-card:hover .partner-summary {
  transform: translateX(5px);
}

.partner-details {
  animation: slideIn 0.4s ease forwards;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(235, 89, 189, 0.1), rgba(0, 242, 255, 0.05));
  padding: 4rem 2rem;
  margin: 4rem 0 0 0;
  border-top: 1px solid rgba(235, 89, 189, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(235, 89, 189, 0.15), transparent 50%);
  z-index: 1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #eb59bd;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(235, 89, 189, 0.4);
}

.cta-content p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1rem;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #eb59bd, #d946a8);
  color: white;
  box-shadow: 0 8px 25px rgba(235, 89, 189, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(235, 89, 189, 0.4);
  background: linear-gradient(135deg, #f06bc9, #e951b8);
}

.cta-btn.secondary {
  background: transparent;
  color: #eb59bd;
  border-color: #eb59bd;
}

.cta-btn.secondary:hover {
  background: rgba(235, 89, 189, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(235, 89, 189, 0.2);
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ddd;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  border: 1px solid rgba(235, 89, 189, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(235, 89, 189, 0.1);
  transform: translateY(-2px);
}

.benefit-item i {
  color: #eb59bd;
  font-size: 1.2rem;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  background: linear-gradient(135deg, #eb59bd, #d946a8);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(235, 89, 189, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: linear-gradient(135deg, #f06bc9, #e951b8);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 15px 35px rgba(235, 89, 189, 0.6);
}

@media (max-width: 768px) {
  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
    flex-direction: column;
  }

  nav.active ul {
    display: flex;
  }

  header {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 500px) {
  .stats {
    flex-direction: column;
    align-items: center;
  }

  .tiktok-embeds {
    flex-direction: column;
    align-items: center;
  }

  .streamer-img {
    max-width: 250px;
  }
}
