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

body {
  font-family: 'Comic Sans MS', sans-serif;
  background-color: #1a1e2e;
  color: #fff;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 10px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffff;
}

.buy-btn {
  background-color: #ff00c8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 0 #00000080;
}

/* Tagline */
.tagline {
  text-align: center;
  margin: 40px 0;
}

.tagline h1 {
  font-size: 2.2rem;
  color: #00ffff;
  text-shadow: 2px 2px #000;
}

/* Card Section */
.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.card {
  background: #2b2e44;
  border-radius: 30px;
  padding: 40px;
  width: 500px;
  text-align: center;
  box-shadow: 8px 8px 0 #000000cc, 0 0 15px #00000088;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.card p {
  color: #c8c8c8;
  margin-bottom: 20px;
}

.card-btn {
  background: #ff00c8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 0 #00000080;
}

/* NFT Gallery */
.nft-gallery {
  text-align: center;
  margin-bottom: 60px;
}

.nft-gallery h2 {
  margin-bottom: 20px;
  color: #ff00c8;
}

.nft-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nft-row img {
  width: 180px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 6px 20px #000;
}

/* Footer di tengah layar (benar-benar center di viewport) */
footer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: .9;
  font-size: 14px;
  background: rgba(43, 46, 68, 0.9);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000000cc, 0 0 10px #00000066;
  z-index: 999;
}

.social-media {
  margin-bottom: 40px;
}

/* === SOCIALS === */
.socials{ 
  display:grid; 
  grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); 
  gap:5px; 
}

/* Social card container */
.social-card { 
  display:flex; 
  align-items:center; 
  gap:10px; 
  background:#2b2e44; 
  border-radius:20px; 
  padding:14px 18px; 
  box-shadow:6px 6px 0 #000000cc, 0 0 10px #00000066; 
  transition:transform .2s ease; 
  justify-content:center;
  text-align:center;
}
.social-card:hover{ transform:translateY(-2px); }

.social-card svg{ width:22px; height:22px; }

.social-card a{ 
  color:#ffffff; 
  text-decoration:none; 
  display:flex; 
  align-items:center; 
  gap:8px; 
  font-size:15px; 
  justify-content:center;
}

/* NEW: Social Media Card Wrapper */
.social-card-wrapper {
  background: #2b2e44;
  border-radius: 30px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 8px 8px 0 #000000cc, 0 0 15px #00000088;
  text-align: center;
}

.social-card-wrapper h2 {
  color: #ff00c8;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* Jarak antara Social Media dan Footer */
.social-card-wrapper {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .social-card-wrapper {
    margin-bottom: 100px;
  }
}