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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050509;
  color: #f5f5f5;
  line-height: 1.6;
}

/* HEADER */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #090911;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #ffd54f, #f57f17);
  font-weight: 700;
  font-size: 0.9rem;
  color: #050509;
}

.logo-text h1 {
  font-size: 1.1rem;
  font-weight: 700;
}

.logo-text p {
  font-size: 0.75rem;
  color: #aaa;
}

.main-nav a {
  margin-left: 1rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: #ddd;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #ffeb3b;
}

/* LAYOUT */

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

@media (max-width: 800px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
}

.hero-text h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.hero-text p {
  color: #ccc;
}

/* PLAYER CARD */

.player-card {
  background: #101018;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1px solid #26263a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.player-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.player-note {
  font-size: 0.8rem;
  color: #aaaaee;
  margin-bottom: 0.75rem;
}

/* SECTIONS */

.info-section {
  margin-top: 2.25rem;
  background: #090911;
  padding: 1.25rem 1.1rem;
  border-radius: 14px;
  border: 1px solid #202032;
}

.info-section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.info-section p + p {
  margin-top: 0.5rem;
}

/* RELEASE GRID & CARDS */

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.release-card {
  background: #0b0b13;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #26263a;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.release-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.release-cover {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.release-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: #fff;
}

.release-card p {
  font-size: 0.85rem;
  color: #bbb;
  margin-bottom: 0.9rem;
}

.release-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.7rem 1rem;
  background: #6a5acd;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.release-btn:hover {
  background: #7c6cff;
}

.release-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* DONATE ROW */

.donate-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.donate-btn {
  flex: 1 1 120px;
  text-align: center;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
  border: none;
}

.donate-btn.cashapp {
  background: #00c244;
  color: #fff;
}

.donate-btn.paypal {
  background: #003087;
  color: #fff;
}

.donate-btn.bmac {
  background: #ffdd00;
  color: #222;
}

/* CONTACT FORM */

.contact-section {
  margin-top: 2.5rem;
}

.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-row label {
  font-size: 0.85rem;
  color: #ddd;
}

.form-row input,
.form-row textarea {
  border-radius: 8px;
  border: 1px solid #33334d;
  background: #050509;
  color: #f5f5f5;
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #ffeb3b;
}

button[type="submit"] {
  margin-top: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #ffeb3b, #f57f17);
  color: #050509;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}

button[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.contact-alt {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #bbb;
}

.contact-alt a {
  color: #ffeb3b;
  text-decoration: none;
}

.contact-alt a:hover {
  text-decoration: underline;
}

/* CALL + WHATSAPP BUTTONS */

.call-btn,
.whatsapp-btn {
  display: inline-block;
  margin-top: 0.75rem;
  margin-right: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.call-btn {
  background: #3b82f6;
}

.call-btn:hover {
  background: #2563eb;
}

.call-btn:active,
.whatsapp-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* FOOTER */

.site-footer {
  text-align: center;
  padding: 1rem 0 1.5rem;
  font-size: 0.8rem;
  color: #888;
}
