/* Logo */
.logo {
  text-align: center;
  margin-bottom: 1rem;
}

.logo img {
  max-width: 700px;
  height: auto;
  display: inline-block;
}


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

/* Handmade Fonts */
body {
  font-family: 'Gloria Hallelujah', cursive;
  background: #fffdf6;
  color: #2a2a2a;
  line-height: 1.8;
  padding: 0;
  margin: 0;
}

/* X Account Link */
.x-link {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fffef9;
  border: 2px solid #000;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 3px 3px 0px #000;
  transition: transform 0.2s ease;
}
.x-link:hover {
  transform: rotate(-5deg) scale(1.05);
}
.x-link img {
  width: 28px;
  height: 28px;
  display: block;
}

/* Header */
header {
  text-align: center;
  padding: 2rem;
  background: #fffae6;
  border-bottom: 4px dashed #000;
}

header h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
}

/* Section Cards (paper look) */
.card {
  background: #fffef9;
  border: 3px solid #000;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 6px 6px 0px #000;
  position: relative;
}

/* Doodle Borders */
.card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: #ffde59;
  border: 2px solid #000;
  border-radius: 50%;
}

/* Headings */
h2 {
  font-family: 'Permanent Marker', cursive;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

/* Crypto Address Box */
.crypto-address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem auto 0;
  padding: 1rem;
  font-size: 1rem;
  background: #fffef9;
  border: 2px dashed #000;
  border-radius: 8px;
  max-width: 600px;
  box-shadow: 4px 4px 0px #000;
}

.crypto-address p {
  margin: 0;
  word-break: break-all;
}

.crypto-address button {
  font-family: 'Gloria Hallelujah', cursive;
  background: #ffde59;
  border: 2px solid #000;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.crypto-address button:hover {
  transform: scale(1.05) rotate(-2deg);
  background: #ffe88a;
}

/* Roadmap */
.roadmap ul {
  list-style: none;
}

.roadmap li {
  margin-bottom: 0.7rem;
}

/* Gallery */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.art-placeholder {
  background: #fefefe;
  border: 2px dashed #000;
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 3px 3px 0px #000;
  transition: transform 0.2s ease;
}

.art-placeholder:hover {
  transform: scale(1.05);
}

.art-placeholder img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  background: #fffae6;
  border-top: 3px dashed #000;
  font-size: 0.9rem;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #aaa;
}