/* Records section styles */

/* Records Section */
.records {
    background: 
      radial-gradient(ellipse at 100% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
      var(--dark);
  }
  
  .records-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .record-card {
    background: linear-gradient(145deg, rgba(28, 44, 91, 0.3) 0%, rgba(10, 10, 15, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .record-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
  }
  
  .record-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
  }
  
  .record-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .record-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--gold);
  }
  
  .record-description {
    color: rgba(240, 244, 248, 0.75);
    line-height: 1.8;
  }
