:root {
    --primary: #868686;
    --secondary: #69beff;
    --dark: #121212;
    --light: #FFFFFF;
    --gradient: linear-gradient(45deg, #868686, #69beff);
  }

  * {
    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: var(--gradient);
    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: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .chat-button::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: 0.5s;
  }

  .chat-button:hover::before {
    left: 100%;
  }

  .chat-button:hover {
    background: var(--gradient);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(98, 0, 234, 0.3);
  }

  .chat-button i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }

  .chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    animation: bounce 1s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3px);
    }
  }

  .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;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 15px 15px 0 0;
    position: relative;
    overflow: hidden;
  }

  .chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }

  .chat-header h3 {
    color: var(--light);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }

  .close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--light);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
  }

  .close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }

  .close-chat i {
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .close-chat:hover i {
    color: #fff;
  }

  .chat-content {
    background: rgba(18, 18, 18, 0.98);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
  }

  .cbox-container {
    position: relative;
    margin: 0 auto;
    width: 300px;
    font-size: 0;
    line-height: 0;
    border-radius: inherit;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .cbox-messages {
    position: relative;
    height: 370px;
    overflow: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 0;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
  }

  .cbox-messages iframe {
    background: transparent;
    border-radius: 0 0 15px 15px;
  }

  .cbox-form {
    position: relative;
    height: 80px;
    overflow: hidden;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
  }

  .cbox-form iframe {
    background: transparent;
  }

  .cbox-messages::-webkit-scrollbar {
    width: 6px;
  }

  .cbox-messages::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
  }

  .cbox-messages::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 3px;
  }

  .cbox-messages::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
  }

  .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: var(--gradient);
    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(--secondary);
  }

  .dj-time {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 1rem;
  }

  .dj-description {
    font-size: 0.9rem;
    color: #ccc;
  }

  .now-playing {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    width: 800px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: floatAnimation 3s ease-in-out infinite;
  }

  .playing-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .play-controls {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    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: 10px;
  }

  .volume-slider {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .volume-percentage {
    min-width: 45px;
    font-size: 0.9rem;
    color: var(--light);
  }

  @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 {
      padding: 12px 15px;
      bottom: 10px;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    
    .playing-info {
      justify-content: center;
      gap: 12px;
    }
    
    .playing-info img {
      width: 45px;
      height: 45px;
    }
    
    .playing-info h4 {
      font-size: 0.9rem;
    }
    
    #nowPlayingText {
      font-size: 0.85rem;
      margin: 3px 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 200px;
    }
    
    #djInfo {
      font-size: 0.75rem;
    }
    
    .play-controls {
      width: 100%;
      justify-content: center;
      gap: 15px;
    }
    
    .volume-controls {
      display: none !important;
    }
    
    .play-btn {
      width: 38px;
      height: 38px;
    }
    
    .play-btn svg {
      width: 22px;
      height: 22px;
    }
  }

  @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: 10px;
      width: 95%;
      max-width: 350px;
    }
    
    .playing-info img {
      width: 40px;
      height: 40px;
    }
    
    #nowPlayingText {
      max-width: 150px;
      font-size: 0.8rem;
    }
    
    .play-btn {
      width: 35px;
      height: 35px;
    }
    
    .play-btn svg {
      width: 20px;
      height: 20px;
    }
  }

  @media (max-width: 360px) {
    .now-playing {
      padding: 8px;
      max-width: 300px;
    }
    
    .playing-info {
      gap: 8px;
    }
    
    .playing-info img {
      width: 35px;
      height: 35px;
    }
    
    #nowPlayingText {
      max-width: 120px;
      font-size: 0.75rem;
    }
    
    .play-btn {
      width: 32px;
      height: 32px;
    }
    
    .play-btn svg {
      width: 18px;
      height: 18px;
    }
  }

  .now-playing:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  }

  .play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.4);
  }

  .volume-slider input[type="range"] {
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    transition: all 0.3s ease;
  }

  .volume-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .volume-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.4);
  }

  @keyframes floatAnimation {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-5px);
    }
  }