:root {
  --fiesta: #005dab;
  --rojo: #ee2e24;
  --primary: #6200EA;
  --secondary: #FF1744;
  --dark: #121212;
  --light: #FFFFFF;
  --gradient: linear-gradient(45deg, #6200EA, #FF1744);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  background: #005dab;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding: 2rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #FFF, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.chat-container {
  position: relative;
  z-index: 1000;
}

.chat-button {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(98, 0, 234, 0.3);
}

.chat-window {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  width: 300px;
  background: rgba(18, 18, 18, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.chat-window.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.chat-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  color: var(--light);
  margin: 0;
}

.close-chat {
  background: none;
  border: none;
  color: var(--light);
  cursor: pointer;
  padding: 5px;
}

.chat-messages {
  height: 300px;
  padding: 1rem;
  overflow-y: auto;
}

.chat-input {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.5rem;
}

.chat-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: var(--light);
}

.chat-input button {
  background: var(--secondary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.chat-input button:hover {
  transform: scale(1.1);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.app-badges {
  display: flex;
  gap: 1rem;
}

.badge {
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
}

.schedule {
  padding: 4rem 0;
  background: var(--dark);
}

.schedule-header {
  text-align: center;
  margin-bottom: 3rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.dj-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dj-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00F;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.dj-card:hover {
  transform: translateY(-10px);
}

.dj-card:hover::before {
  opacity: 0.1;
}

.dj-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  position: relative;
}

.dj-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-info {
  text-align: center;
  position: relative;
  z-index: 1;
}

.dj-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gradient);
}

.dj-time {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 1rem;
}

.dj-description {
  font-size: 0.9rem;
  color: #ccc;
}

.now-playing {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.playing-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.play-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #005dab;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-btn svg {
  width: 24px;
  height: 24px;
}

.play-icon, .pause-icon {
  transition: display 0.3s ease;
}

.volume-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.volume-percentage {
  color: var(--light);
  min-width: 45px;
  font-size: 0.9rem;
}

.volume-slider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem 0;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-image svg {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .app-badges {
    justify-content: center;
  }

  .schedule-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .dj-card {
    padding: 1.5rem;
  }

  .now-playing {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .playing-info {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
  }

  .badge {
    width: 100%;
    max-width: 200px;
  }

  .schedule-header h2 {
    font-size: 2rem;
  }

  .live-stream h2 {
    font-size: 2rem;
  }

  .stream-container {
    margin-bottom: 2rem;
  }

  .now-playing {
    padding: 0.5rem;
  }

  .play-controls {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .live-stream {
    padding: 2rem 0;
  }

  .stream-header {
    margin-bottom: 2rem;
  }

  .stream-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.5rem 0;
  }

  .logo {
    font-size: 1.5rem;
  }
}

.footer {
  background: var(--dark);
  padding: 4rem 0 8rem; 
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--light);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #888;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .brand-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-column {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.live-stream {
  background: var(--dark);
  padding: 4rem 0;
  position: relative;
}

.live-stream::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.live-stream h2 {
  color: var(--light);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.live-stream p {
  color: #888;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .package-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(98, 0, 234, 0.2);
}

.package-btn:hover {
  box-shadow: 0 5px 15px rgba(255, 23, 68, 0.3);
}