/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Press Start 2P', cursive, monospace;
}

body {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #fff8dc;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

a {
  color: #f5d76e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  padding: 2rem 0;
  text-align: center;
}

header img {
  width: 150px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px #f5d76e);
}

header h1 {
  font-size: 2rem;
  color: #f5d76e;
  margin-bottom: 1rem;
}

header p {
  font-size: 1rem;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
  color: #fff8dccc;
}

.main-content {
  margin-bottom: 3rem;
}

.bg-container {
  background: rgba(245, 215, 110, 0.05);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(245, 215, 110, 0.1);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
}

section {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  margin: 0 0 2.5rem 0;
  padding: 0;
}

section + section {
  margin-top: 2.5rem;
}

h2 {
  color: #f5d76e;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.tokenomics-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  font-size: 0.85rem;
  text-align: center;
}

.tokenomics-list div {
  min-width: 150px;
  background: #222;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 8px #f5d76e66;
}

.tokenomics-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff8dc;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #fff8dcdd;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.partners-list img {
  object-fit: contain;
  filter: drop-shadow(0 0 4px #f5d76e);
  transition: transform 0.3s ease;
  cursor: pointer;
  height: auto;
  width: auto;
  max-width: 100%;
  transform: scale(0.75);
  transform-origin: center center;
}

.partners-list img:hover {
  transform: scale(0.85);
}

.buy-container {
  margin: 3rem auto;
  width: 380px;
  height: 300px;
  border-radius: 12px;
  box-sizing: border-box;
  color: #fff8dc;
  font-weight: 300;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #000000, #1a1a1a);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.9);
  text-shadow: 2px 2px 5px #000;
  text-align: center;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.buy-container > div {
  font-size: 14px;
  line-height: 1.4;
  max-width: 380px;
  margin: 0;
}

.buy-container:hover {
  box-shadow: 0 12px 30px #f5d76e;
}

.buy-container span {
  color: #f5d76e;
  letter-spacing: 2px;
}

.buy-container span.big {
  font-size: 18px;
  letter-spacing: 3px;
}

/* Social Buttons - Updated Solution */
/* Social Buttons - New Bulletproof Version */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.social-buttons a {
  display: block; /* Changed from inline-block */
  padding: 0.8rem 1.4rem;
  background: #222;
  border-radius: 8px;
  box-shadow: 0 0 8px #f5d76e88;
  color: #f5d76e;
  font-size: 0.7rem;
  text-transform: uppercase;
  text-align: center;
  flex: 1 0 auto;
  min-width: 120px;
  max-width: 200px;
}

/* Mobile Breakpoint - Guaranteed Stack */
@media (max-width: 768px) {
  .social-buttons {
    display: block !important;
    width: 100%;
  }
  
  .social-buttons a {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 0.75rem !important;
    display: block !important;
    box-sizing: border-box;
  }
  
  .social-buttons a:last-child {
    margin-bottom: 0 !important;
  }
}


