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

.logo {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

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;
  font-weight: 500;
}

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

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

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

/* ------------ HERO SECTION ------------ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 2rem 1rem 2rem;
  margin-top: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
}

.profile-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.streamer-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(235, 89, 189, 0.4);
  border: 4px solid #eb59bd;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.streamer-img:hover {
  transform: scale(1.05);
}

.status-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(26, 26, 46, 0.9);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  border: 2px solid #00ff00;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.status-badge.offline {
  border-color: #ff4444;
}

.status-badge.offline i {
  color: #ff4444 !important;
}

.hero-text {
  text-align: center;
  flex: 1;
}

.status-badge i {
  color: #00ff00;
  animation: pulse-green 2s infinite;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: #eb59bd;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(235, 89, 189, 0.5);
}

.hero-tagline {
  font-size: 1.3rem;
  color: #00f2ff;
  margin-bottom: 2rem;
  font-weight: 500;
}

.quick-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.cta-btn.primary {
  background: linear-gradient(45deg, #9146ff, #6441a5);
  color: white;
  box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3);
}

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

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn.primary:hover {
  box-shadow: 0 10px 25px rgba(145, 70, 255, 0.5);
}

.cta-btn.secondary:hover {
  background: #eb59bd;
  color: white;
}

/* ------------ STATS SECTION ------------ */

/* ------------ STATS SECTION ------------ */
.stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.stat {
  padding: 1.2rem 3rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(235, 89, 189, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(26, 26, 46, 0.7);
  border: 1px solid rgba(235, 89, 189, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  min-width: 60px;
  margin-top: 30px;
  margin-bottom: -20px;
}

.stat:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(235, 89, 189, 0.6);
}

.stat i {
  font-size: 1.6rem;
  color: #eb59bd;
  flex-shrink: 0;
}

.stat span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ------------ HIGHLIGHTS SECTION ------------ */
.highlights {
  padding: 4rem 2rem;
  background: rgba(15, 12, 41, 0.3);
}

.highlights-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(0, 242, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 242, 255, 0.2);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(45deg, #00f2ff, #0066cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  font-size: 2rem;
  color: white;
}

.highlight-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

/* ------------ WHATS NEW SECTION ------------ */
.whats-new {
  padding: 4rem 2rem;
  background: rgba(26, 26, 46, 0.3);
}

.whats-new-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.whats-new h2 {
  font-size: 2.5rem;
  color: #eb59bd;
  margin-bottom: 3rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.whats-new h2 i {
  color: #00f2ff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-item {
  background: rgba(15, 12, 41, 0.6);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(235, 89, 189, 0.2);
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-badge.live {
  background: linear-gradient(45deg, #ff4444, #ff6666);
  color: white;
  animation: pulse-red 2s infinite;
}

.news-badge.new {
  background: linear-gradient(45deg, #00ff88, #00cc66);
  color: #1a1a2e;
}

.news-badge.event {
  background: linear-gradient(45deg, #ffaa00, #ff8800);
  color: white;
}

.news-item h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.news-item p {
  color: #ccc;
  line-height: 1.6;
}

.stream-section,
.tiktok-section {
  text-align: center;
  padding: 3rem 1rem;
}

.tiktok-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #eb59bd;
}

.stream-section h2 {
  font-size: 2rem;
  margin-bottom: 4rem;
  margin-top: 60px;
  text-transform: uppercase;
  color: #eb59bd;
}

.twitch-embed iframe {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.2);
}

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

footer {
  text-align: center;
  padding: 2rem;
  background-color: #1a1a2e;
  color: #ccc;
  margin-top: 4rem;
  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);
}

#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);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#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);
}

/* ------------ ANIMATIONS ------------ */
@keyframes pulse-green {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse-red {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* ------------ RESPONSIVE ------------ */

/* ------------ RESPONSIVE ------------ */
@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;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .quick-links {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat {
    min-width: 150px;
    padding: 1rem 2rem;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 2rem 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .streamer-img {
    width: 280px;
    height: 280px;
  }

  .status-badge {
    bottom: 20px;
    right: 20px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1rem 2rem;
  }

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

.kick-embed {
  position: relative;
  width: 70%;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}

.kick-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}