/* Fonts */
@font-face {
  font-family: "Averta";
  src: url("public/avertastd-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Averta";
  src: url("public/avertastd-extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Averta", system-ui, -apple-system, sans-serif;
  background-color: #01060c;
  color: #fafafa;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #01060c;
}

::-webkit-scrollbar-thumb {
  background: #01ff80;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #01ff80;
  opacity: 0.8;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #01ff80 #01060c;
}

/* Text Selection */
::selection {
  background-color: #01ff80;
  color: #000000;
}

::-moz-selection {
  background-color: #01ff80;
  color: #000000;
}

/* Image Protection */
img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

/* Container */
.container-symmetric {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container-symmetric {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #01ff80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Added semibold text class for "Airdrop campaign" */
.text-semibold {
  font-weight: 600;
}

/* Header */
#header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(1, 6, 12, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-link {
  transition: opacity 0.3s;
}

.logo-link:hover {
  opacity: 0.7;
}

.logo {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  background: none;
  border: none;
  color: rgba(250, 250, 250, 0.7);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
  font-family: "Averta", sans-serif;
}

.nav-link:hover {
  color: #fafafa;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Averta", sans-serif;
}

.btn-primary {
  background-color: #01ff80;
  color: #000000;
}

.btn-primary:hover {
  background-color: rgba(1, 255, 128, 0.9);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(1, 255, 128, 0.5);
}

.btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.3);
  border-color: rgba(1, 255, 128, 0.5);
  color: #ffffff;
}

.btn-lg {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
}

.icon {
  width: 1rem;
  height: 1rem;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: rgba(250, 250, 250, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-image {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-image {
    justify-content: flex-end;
  }
}

.logo-3d {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* Giveaway Section */
.giveaway-section {
  padding: 3rem 0;
}

.giveaway-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(1, 255, 128, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .giveaway-card {
    padding: 3rem;
  }
}

.giveaway-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.rocket-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.1;
}

.giveaway-content {
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(1, 255, 128, 0.1);
  border: 1px solid rgba(1, 255, 128, 0.3);
  color: #01ff80;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.giveaway-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .giveaway-amount {
    font-size: 4.5rem;
  }
}

.giveaway-text {
  font-size: 1.125rem;
  color: rgba(250, 250, 250, 0.7);
}

@media (min-width: 768px) {
  .giveaway-text {
    font-size: 1.25rem;
  }
}

/* Participate Section */
.participate-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .participate-section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1rem;
  color: rgba(250, 250, 250, 0.7);
  max-width: 42rem;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: rgba(1, 255, 128, 0.5);
}

.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: rgba(1, 255, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #01ff80;
}

.step-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-description {
  font-size: 0.875rem;
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.6;
}

/* Distribution Section */
.distribution-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .distribution-section {
    padding: 6rem 0;
  }
}

.distribution-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .distribution-card {
    padding: 2.5rem;
  }
}

.distribution-container {
  height: 480px;
  overflow: hidden;
}

.distribution-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.distribution-item {
  background-color: rgba(1, 6, 12, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: all 0.5s;
  animation: slideIn 0.5s ease-out;
}

@media (min-width: 768px) {
  .distribution-item {
    padding: 1rem;
  }
}

.distribution-item:hover {
  border-color: rgba(1, 255, 128, 0.3);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.distribution-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.distribution-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.distribution-logo {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.distribution-info {
  flex: 1;
  min-width: 0;
}

.distribution-amount {
  font-size: 1rem;
  color: #01ff80;
  margin-bottom: 0.125rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .distribution-amount {
    font-size: 1.125rem;
  }
}

/* Changed address font-weight to 600 (semibold) */
.distribution-address {
  font-size: 0.75rem;
  color: rgba(250, 250, 250, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
  font-weight: 600;
}

@media (min-width: 768px) {
  .distribution-address {
    font-size: 0.875rem;
  }
}

.distribution-time {
  font-size: 0.75rem;
  color: rgba(250, 250, 250, 0.5);
  flex-shrink: 0;
  font-weight: 600;
}

@media (min-width: 768px) {
  .distribution-time {
    font-size: 0.875rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 6rem 0;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Fixed FAQ item padding to match preview */
.faq-item {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(1, 255, 128, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #fafafa;
  text-align: left;
  cursor: pointer;
  font-family: "Averta", sans-serif;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 500;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #01ff80;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 24rem;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.6;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #01060c;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(250, 250, 250, 0.7);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-link {
  background: none;
  border: none;
  font-size: 0.875rem;
  color: rgba(250, 250, 250, 0.7);
  cursor: pointer;
  transition: color 0.3s;
  font-family: "Averta", sans-serif;
}

.footer-link:hover {
  color: #01ff80;
}
