* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Arial", sans-serif;
  background: linear-gradient(135deg, #0f1419 0%, #1a2027 50%, #0f1419 100%);
  color: #f8fafc;
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #006b7d, #00a693, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: breathe 4s ease-in-out infinite;
  cursor: pointer;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.2);
  }
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 217, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #f8fafc;
  background: linear-gradient(
    135deg,
    rgba(0, 107, 125, 0.3),
    rgba(0, 166, 147, 0.3)
  );
  border: 1px solid rgba(0, 217, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
}

.main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.section {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgba(0, 107, 125, 0.1),
    rgba(0, 166, 147, 0.1),
    rgba(0, 217, 255, 0.1)
  );
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 217, 255, 0.05),
    transparent
  );
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #006b7d,
    #00a693,
    #00d9ff,
    #ff6b6b,
    #ffb627
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 166, 147, 0.1),
    transparent
  );
  transition: transform 0.6s ease;
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
}

.stat-card:hover::before {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #00d9ff;
  box-shadow: 0 25px 50px rgba(0, 217, 255, 0.3);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d9ff;
  margin-bottom: 0.5rem;
  counter-reset: number;
}

.stat-label {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 500;
}

.stat-change {
  font-size: 0.9rem;
  color: #22c55e;
  margin-top: 0.5rem;
  font-weight: 500;
}

.collections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.collection {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.collection::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 166, 147, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.collection:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.collection:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #00a693;
  box-shadow: 0 30px 60px rgba(0, 166, 147, 0.4);
}

.collection-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.collection-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.collection-desc {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.collection-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stat {
  background: rgba(0, 166, 147, 0.2);
  color: #00a693;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(0, 166, 147, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px rgba(0, 166, 147, 0.2);
  }
  to {
    box-shadow: 0 0 15px rgba(0, 166, 147, 0.4);
  }
}

.btn {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, #ff8e53, #ffb627);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.live-feed {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.live-feed::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 107, 0.05),
    transparent
  );
  animation: sweep 3s ease-in-out infinite;
}

@keyframes sweep {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.live-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.live-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: livePulse 2s infinite;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.3);
  }
}

.viewer-count {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(255, 107, 107, 0.3);
  animation: countGlow 2s ease-in-out infinite alternate;
}

@keyframes countGlow {
  from {
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
  }
  to {
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.6);
  }
}

.streams {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.stream {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.stream:hover {
  transform: translateY(-5px);
  border-color: #ff6b6b;
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
}

.stream-thumb {
  height: 200px;
  background: linear-gradient(135deg, #006b7d, #00a693, #00d9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6b6b;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  animation: livePulse 2s infinite;
}

.viewers {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.stream-info {
  padding: 1.5rem;
}

.stream-title {
  color: #f8fafc;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.stream-desc {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #006b7d, #00a693, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    filter: brightness(1);
  }
  to {
    filter: brightness(1.2);
  }
}

.section-subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 217, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.feature:hover::before {
  opacity: 1;
  animation: featureShimmer 1.5s ease-in-out;
}

@keyframes featureShimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.feature:hover {
  transform: translateY(-10px);
  border-color: #00d9ff;
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: featureFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes featureFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-3px) rotate(1deg);
  }
  66% {
    transform: translateY(3px) rotate(-1deg);
  }
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f8fafc;
  position: relative;
  z-index: 2;
}

.feature p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.feature-btn {
  background: linear-gradient(135deg, #006b7d, #00a693);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.feature-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.feature-btn:hover::before {
  left: 100%;
}

.feature-btn:hover {
  background: linear-gradient(135deg, #00a693, #00d9ff);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 166, 147, 0.3);
}

.footer {
  background: rgba(15, 20, 25, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00a693, transparent);
  animation: footerGlow 3s ease-in-out infinite alternate;
}

@keyframes footerGlow {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #f8fafc;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #00a693, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  cursor: pointer;
  position: relative;
  display: block;
  border-radius: 8px;
  padding-left: 0.5rem;
  margin: 0.2rem 0;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00a693, #00d9ff);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: calc(100% - 1rem);
}

.footer-links a:hover {
  color: #00a693;
  background: rgba(0, 166, 147, 0.1);
  transform: translateX(8px);
  padding-left: 0.8rem;
  box-shadow: 0 4px 15px rgba(0, 166, 147, 0.2);
}

.footer-links a:active {
  transform: translateX(8px) scale(0.98);
  background: rgba(0, 166, 147, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
}

.notification {
  position: fixed;
  top: 100px;
  right: -400px;
  background: rgba(0, 166, 147, 0.95);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 166, 147, 0.3);
  transition: right 0.5s ease;
  z-index: 1001;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.notification.show {
  right: 20px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .collections {
    grid-template-columns: 1fr;
  }
  .nav {
    gap: 1rem;
  }
  .nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .notification {
    right: -350px;
    width: 300px;
  }
  .notification.show {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .main {
    padding: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .notification {
    right: -320px;
    width: 280px;
  }
}

/* Additional animation classes */
.animate-in {
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.glow-effect {
  animation: continuousGlow 2s ease-in-out infinite alternate;
}

@keyframes continuousGlow {
  from {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  }
  to {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
  }
}
