
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #ffe8e8, #fffaf0);
    margin: 0;
    padding: 0;
    color: #333;
  }
  

  h1 {
    text-align: center;
    background: linear-gradient(90deg, #c62828, #ad1457);
    color: white;
    padding: 40px 20px;
    margin: 0;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 3px;
    border-bottom: 5px solid #fff;
  }
  

  .artist-card {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: rotate(-0.5deg);
  }
  

  .artist-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .artist-header h2 {
    font-size: 2em;
    color: #b71c1c;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .artist-header p {
    font-size: 1.1em;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
  }
  

  .song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  

  .song-card {
    background: #fff6f0;
    border-radius: 15px;
    padding: 20px;
    border: 2px dashed #e57373;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  
  .song-card h3 {
    margin-top: 0;
    color: #c2185b;
    text-align: center;
  }
  

  input, textarea {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
  }
  
  textarea {
    height: 90px;
    resize: none;
  }
  

  button {
    background: #c62828;
    color: white;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: background 0.3s;
  }
  
  button:hover {
    background: #b71c1c;
  }
  

  .comment-list {
    margin-top: 10px;
  }
  
  .comment {
    background: #ffe0e0;
    padding: 8px 10px;
    margin-top: 8px;
    border-radius: 6px;
    font-size: 0.95em;
    border: 1px solid #f8bdbd;
  }
  

  footer {
    text-align: center;
    padding: 30px;
    background-color: #880e4f;
    color: white;
    font-size: 0.9em;
    margin-top: 60px;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.2);
  }
  