/* styles.css */
:root {
    --primary-color: #00d8ff;
    --secondary-color: #6e00ff;
    --dark-bg: #0f0f1a;
    --darker-bg: #0a0a12;
    --light-text: #e0e0e0;
    --accent-color: #ff00aa;
    --neon-glow: 0 0 10px rgba(0, 216, 255, 0.8);
  }
  
  body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    margin: 0;
    padding: 2rem;
    min-height: 100vh;
    background-image: 
      radial-gradient(circle at 25% 25%, rgba(110, 0, 255, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(0, 216, 255, 0.15) 0%, transparent 50%);

        display: flex;
    align-items: center;
    justify-content: center;
  }
  
  h1 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-shadow: var(--neon-glow);
    position: relative;
  }
  
  h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0.5rem auto;
    border-radius: 3px;
  }
  
  form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--darker-bg);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
  }
  
  select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    color: var(--light-text);
    font-size: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300d8ff'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color), var(--neon-glow);
  }
  
  textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--secondary-color);
    border-radius: 6px;
    color: var(--light-text);
    font-size: 1rem;
    resize: vertical;
    min-height: 150px;
    transition: all 0.3s ease;
  }
  
  textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--secondary-color), 0 0 15px rgba(110, 0, 255, 0.6);
  }
  
  button {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 216, 255, 0.4);
  }
  
  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;
  }
  
  button:hover::before {
    left: 100%;
  }
  
  /* Download section */
  p {
    text-align: center;
    font-size: 1.2rem;
    margin: 2rem 0;
    color: var(--light-text);
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    body {
      padding: 1rem;
    }
    
    form {
      padding: 1.5rem;
    }
    
    h1 {
      font-size: 1.8rem;
    }
  }
  
  /* Animation */
  @keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
  }
  
  .loading {
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  /* Futuristic elements */
  .tech-border {
    position: relative;
  }
  
  .tech-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
    pointer-events: none;
  }

  /* Audio Player Styles */
.audio-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--darker-bg);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  .audio-player {
    margin: 2rem 0;
  }
  
  audio {
    width: 100%;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  audio::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
  }
  
  .action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .download-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.8rem 1.5rem;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .back-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    color: var(--light-text);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .download-btn:hover, .back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 216, 255, 0.4);
  }

  .notice {
    background-color: rgba(255, 204, 0, 0.2);
    border-left: 4px solid #ffcc00;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
  }
  
  .notice p {
    margin: 0;
    color: #ffcc00;
  }

  .audio-info {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
  }
  
  .audio-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  
  .audio-info strong {
    color: var(--primary-color);
    font-weight: 600;
  }