/* Reset */
* {
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #00FF00;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background-color: #101010;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid #00FF00;
  user-select: none;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #00FF00;
  letter-spacing: 1.2px;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: #00FF00;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #00FF00;
}

nav a.active::after,
nav a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #00FF00;
  bottom: 0;
  left: 0;
  border-radius: 4px;
}

/* Main container */
main {
  flex: 1;
  padding: 2rem 3rem;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Pages */
.page {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 1rem 0;
  overflow-y: auto;
  background-color: #0a0a0a;
  pointer-events: none;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 6px;
}

.page.active {
  display: block;
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

/* Fade animations */
.page.enter {
  animation: fadeIn 0.3s forwards;
}
.page.exit {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeOut {
  from {opacity: 1; transform: translateY(0);}
  to {opacity: 0; transform: translateY(10px);}
}

/* Headings */
h1, h2, h3, h4 {
  color: #00FF00;
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

/* Paragraphs */
p {
  max-width: 700px;
  margin: 0 auto 1.25rem;
  font-weight: 400;
  text-align: center;
}

/* Buttons */
.btn, .buy-btn {
  background-color: #00FF00;
  color: #0a0a0a;
  padding: 0.8rem 2.5rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.25s ease;
  user-select: none;
  margin: 1rem auto;
  text-align: center;
}

.btn:hover, .buy-btn:hover {
  background-color: #00cc00;
}

/* Hero Section */
.hero {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.hero img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  display: block;
  margin: 0 auto 1rem;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

/* DJ Grid */
.dj-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.dj-card {
  background-color: #101010;
  border: 2px solid #00FF00;
  border-radius: 8px;
  width: 200px;
  padding: 1rem;
  text-align: center;
}

.dj-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Store Grid */
.store-tier {
  margin: 2rem 0;
  text-align: center;
}

.store-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.store-item {
  background-color: #101010;
  border: 2px solid #00FF00;
  border-radius: 8px;
  width: 220px;
  padding: 1rem;
  text-align: center;
}

.store-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* News Grid */
.news-grid {
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-item {
  border: 2px solid #00FF00;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background-color: #101010;
  transition: background-color 0.3s ease;
}

.news-item:hover {
  background-color: #0f0f0f;
}

.news-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #00FF00;
  user-select: none;
}

.news-summary {
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #aaffaa;
}

.news-details {
  max-height: 0;
  overflow: hidden;
  color: #aaffaa;
  transition: max-height 0.35s ease;
}

.news-item.expanded .news-details {
  max-height: 1000px; /* large enough to show all content */
  margin-top: 1rem;
}

/* Contact Section */
.contact-info {
  max-width: 400px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-weight: 600;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.socials a img {
  width: 28px;
  height: 28px;
  filter: none;
  transition: filter 0.3s ease;
}

.socials a:hover img {
  filter: brightness(1.2);
}

/* Contact Form */
.contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background-color: #101010;
  border: 2px solid #00FF00;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #00FF00;
  font-size: 1rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00cc00;
}

.contact-form button {
  background-color: #00FF00;
  color: #0a0a0a;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.contact-form button:hover {
  background-color: #00cc00;
}

.form-status {
  color: #00FF00;
  font-weight: 600;
  text-align: center;
  margin-top: 0.5rem;
}

/* Scrollbar styling (optional) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background-color: #00FF00;
  border-radius: 4px;
}

/* ===== STORE TIERS STYLING ===== */
.store-tier {
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.store-tier:hover {
  transform: scale(1.02);
}

.store-tier h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Bronze */
.store-tier.bronze {
  background: linear-gradient(135deg, #ad6f39, #704726);
  border: 2px solid #d2a679;
}

/* Silver */
.store-tier.silver {
  background: linear-gradient(135deg, #c0c0c0, #8f8f8f);
  border: 2px solid #e0e0e0;
}

/* Gold */
.store-tier.gold {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  border: 2px solid #ffecb3;
}

/* Platinum / Diamond */
.store-tier.platinum {
  background: linear-gradient(135deg, #e5e4e2, #c0c0c0);
  border: 2px solid #ffffff;
}

/* Store Cards */
.store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.store-item {
  background: #111;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  flex: 1 1 300px;
  border: 1px solid #333;
}

.store-item img {
  width: 100%;
  max-width: 250px;
  border-radius: 0.5rem;
}

.store-item h4 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
  color: #00ff88;
}

.buy-btn {
  background-color: #00ff88;
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.buy-btn:hover {
  background-color: #00cc66;
}

/* ====== HOVER SHINE EFFECT ====== */
.store-item {
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  flex: 1 1 300px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.store-item:hover {
  transform: scale(1.02);
}

.store-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.store-item:hover::before {
  transform: rotate(25deg) translateX(100%);
}

