@font-face {
  font-family: 'Calibre';
  src: url('fonts/CalibreRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Calibre';
  src: url('fonts/CalibreBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  background: #1a1a2e url('bg.png') center center / cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  font-family: 'Calibre', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logo-area {
  text-align: center;
  margin-bottom: 20px;
}

.logo-area img {
  max-width: 80px;
  width: 100%;
  display: block;
  margin: 0 auto 10px;
}

.logo-area p {
  color: #fff;
  font-size: 18px;
}

@media (min-height: 750px) {
  .logo-area {
    margin-bottom: 2rem;
  }

  .logo-area img { max-width: 140px; }

  .logo-area p {
    font-size: 24px;
  }
}

.btn-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 600px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Calibre', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-decoration: none;
  width: 100%;
  transition: none;
  background: #2b2e46;
  color: #fff;
}

.btn:hover .btn-action { color: #ffffff; }

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg { fill: #fff; }

.btn-label { flex: 1; text-align: left; }

.btn-sub {
  font-size: 12px;
  font-weight: 400;
  color: #808cbf;
  display: block;
  margin-top: 1px;
}

.btn-action { display: none; font-size: 12px; color: #808cbf; transition: color 0.15s; }

@media (min-width: 370px) {
  .btn-action { display: block; }
}

.section-heading {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 20px;
}

.section-heading:first-child {
  margin-top: 0;
}

.btn-website .btn-icon { background: #4fbc83; }
.btn-instagram .btn-icon { background: linear-gradient(135deg, #f77737, #c13584); }
.btn-tiktok .btn-icon { background: #111; border: 1px solid rgba(255,255,255,0.15); }
.btn-facebook .btn-icon { background: #1877f2; }
.btn-spotify .btn-icon { background: #1ed760; }
.btn-spotify .btn-icon svg { fill: #000; }
.btn-apple .btn-icon { background: linear-gradient(135deg, #fc3c44, #cc0a0a); }
.btn-youtube .btn-icon { background: #ff0000; }
