/* Reset & Base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #ff8800;
  background-image: url(./images/background.png);
  color: white;
  text-align: center;
}

@font-face {
  font-family: check;
  src: url(./Eighty\ Miles.ttf);
}

/* Header */
.main-header {
  background-color: #FE6400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 26px;
  margin-left: 5%;
  margin-right: 5%;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: white;
  padding: 3px;
  margin-right: 10px;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  font-family: 'check', serif;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon {
  height: 54px;
  width: 54px;
  /* filter: brightness(0) invert(1); */
  cursor: pointer;
}

/* Wallet Bar */
.wallet-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.wallet-bar {
  background-color: #FE6400;
  border: 4px solid white;
  border-radius: 40px;
  padding: 18px 70px;
  max-width: 90%;
}

.wallet-address {
  font-weight: bold;
  font-size: 30px;
}

/* Main Content */
.main-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.main-title {
  font-size: 80px;
  font-family: 'check', serif;
  margin-bottom: 0;
}

/* Intro Section Flex Layout */
.intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
    font-size: 30px;

}

.intro-text {
  flex: 1 1 400px;
  text-align: left;
}

.intro-image {
  flex: 1 1 300px;
  text-align: right;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


.difference h2,
.special h2 {
  font-size: 54px;
  margin-top: 40px;
  font-family: 'check';
}

.special .tokenomics-box {
  background-color: #FE6400;
  border: 4px solid white;
  border-radius: 25px;
  padding: 20px 20px;
  width: 1298.16px;
  margin: 20px auto;
  display: inline-block;
  font-size: 29px;
  max-width: 90%;
}

/* Meme Grid */
.pepe-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.pepe-gallery img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
