@font-face {
    font-family: 'TVCD';
    src: url('./fonts/Tvcd-d92gK.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: 'TVCD', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
  }
  
  .logo {
    width: clamp(200px, 40vw, 600px);
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
  }
  
  .logo:hover {
    opacity: 0.8;
  }
  
  .tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.05em;
  }
  
  /* Vinyl spin animation */
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .logo.spin {
    animation: spin 1s linear infinite;
  }
  