
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  background: #0b0b0b;
  color: #e6e6e6;
  text-align: center;
  overflow-x: hidden;
}

/* Industrial textured background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,80,0,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,120,0,0.05), transparent 40%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.02) 2px,
      transparent 2px,
      transparent 6px
    );
  pointer-events: none;
  z-index: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.logo {
  width: 420px;
  max-width: 90%;
  margin-bottom: 30px;
}

h1 {
  font-size: 3rem;
  margin: 0.3em 0;
  letter-spacing: 3px;
  color: #ffffff;
}

.subtitle {
  margin-bottom: 40px;
  color: #bbbbbb;
}

.spotify {
  margin: 30px 0 40px;
  border-radius: 12px;
}

/* Industrial buttons */
.links a {
  display: inline-block;
  margin: 12px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f2f2f2;
  background: #1a1a1a;
  border: 1px solid #ff5a00;
  transition: all 0.25s ease;
}

.links a:hover {
  background: #ff5a00;
  color: #000;
  box-shadow: 0 0 20px rgba(255,90,0,0.6);
  transform: translateY(-2px);
}
