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

body {
  background-color: #000000;
  color: #ffffff;
  font-family: "poppins", sans-serif;
  min-height: 100vh;
}

/* Logo - Shared */
.logo {
  position: absolute;
  z-index: 1000;
  top: 30px;
  left: 30px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

/* Button Base Styles - Shared */
.beta-button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 18px 40px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.info-button,
.invite-button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 18px 40px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  display: inline-block;
  font-size: 40px;
}

.beta-button:hover,
.info-button:hover,
.invite-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.beta-button:active,
.info-button:active,
.invite-button:active {
  transform: translateY(0);
}

/* Index Page Specific */
body.index-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-container {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.beta-button {
  font-size: 24px;
}

.coinz-logo {
  width: 50vh;
}

.hero-title {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: orange;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 20px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Page 2 Specific */
body.page2-page {
  display: flex;
  flex-direction: column;
}

.main-container {
  flex: 1;
  display: flex;
  position: relative;
}

.section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ffffff;
  transform: translateX(-50%);
}

.info-text {
  align-self: flex-start;
  margin-left: 10%;
  line-height: 1.8;
  font-size: 14px;
}

.footer {
  position: absolute;
  bottom: 40px;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.7;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
