* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    sans-serif;
  background: #000;
}
#root {
  width: 100%;
  min-height: 100%;
}
.main-wrapper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  pointer-events: none;
}
.logo-container img {
  max-width: 90vw;
  height: auto;
}
.ca-container {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%);
  z-index: 25;
  cursor: pointer;
  text-align: center;
  padding: 10px 20px;
  background: #00000080;
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.ca-container:hover {
  background: #8b5cf64d;
  border-color: #8b5cf6cc;
  transform: translate(-50%) scale(1.02);
}
.ca-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: Monaco, Menlo, monospace;
  letter-spacing: 1px;
  word-break: break-all;
}
.ca-copy-hint {
  display: block;
  font-size: 10px;
  color: #a78bfae6;
  margin-top: 5px;
  letter-spacing: 2px;
  font-weight: 600;
}
.nft-gallery {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  gap: 15px;
  z-index: 25;
}
.nft-item {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px #0000004d;
  transition: all 0.3s ease;
  animation: fadeInNft 0.5s ease;
}
.nft-item:hover {
  transform: scale(1.1);
  border-color: #fff9;
  box-shadow: 0 6px 30px #00000080;
}
.nft-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes fadeInNft {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.get-pfp-cta {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%);
  z-index: 30;
  cursor: pointer;
  animation: floatText 2s ease-in-out infinite;
}
.get-pfp-cta span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.8),
    0 0 20px rgba(139, 92, 246, 0.6);
  letter-spacing: 2px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #8b5cf64d, #a855f74d);
  border: 2px solid rgba(139, 92, 246, 0.6);
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
}
.get-pfp-cta:hover span {
  background: linear-gradient(135deg, #8b5cf699, #a855f799);
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(139, 92, 246, 1), 0 0 30px rgba(139, 92, 246, 0.8);
}
@keyframes floatText {
  0%,
  to {
    transform: translate(-50%) translateY(0);
  }
  50% {
    transform: translate(-50%) translateY(-10px);
  }
}
.pfp-modal {
  background: linear-gradient(180deg, #1a0a2e, #0a0a0a);
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  text-align: center;
  position: relative;
  animation: slideUp 0.3s ease;
}
.pfp-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pfp-image-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  border: 4px solid rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 30px #8b5cf666;
}
.pfp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pfp-name {
  font-size: 24px;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 5px;
}
.pfp-number {
  font-size: 14px;
  color: #fff9;
  letter-spacing: 2px;
  margin-bottom: 25px;
}
.pick-again-btn {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pick-again-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #8b5cf699;
}
.wood-container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 15;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.wood-container:hover {
  filter: brightness(1.1);
}
.wood-container img {
  max-width: 90vw;
  height: auto;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
}
.menu-icon {
  height: 40px;
  width: auto;
  margin-right: 20px;
}
.nav {
  display: flex;
  gap: 40px;
}
.nav a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 20px;
  background: transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav a:hover {
  background: #ffffff1a;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  color: #ffffffb3;
  cursor: pointer;
  z-index: 100;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-size: 12px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}
.scroll-indicator .arrow {
  font-size: 20px;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  to {
    transform: translate(-50%) translateY(0);
  }
  40% {
    transform: translate(-50%) translateY(-10px);
  }
  60% {
    transform: translate(-50%) translateY(-5px);
  }
}
.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 20px;
  z-index: 100;
}
.hero-footer p {
  color: #fff9;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.x-icon {
  display: inline-flex;
  margin-left: 10px;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.x-icon:hover {
  transform: scale(1.15);
  opacity: 0.8;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000d9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-box {
  background: linear-gradient(180deg, #1a0a2e, #0a0a0a);
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  line-height: 1;
}
.modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}
.modal-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal-intro {
  text-align: center;
  margin-bottom: 30px;
}
.modal-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffffd9;
  max-width: 700px;
  margin: 0 auto;
}
.modal-intro strong {
  color: #a78bfa;
}
.modal-grid {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}
.modal-card {
  flex: 1;
  background: #8b5cf61a;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 15px;
  padding: 20px;
}
.modal-image-container {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(139, 92, 246, 0.5);
  margin-bottom: 15px;
}
.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-text h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.modal-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #fffc;
}
.modal-text strong {
  color: #a78bfa;
}
.modal-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 25px;
  padding: 20px;
  background: #8b5cf61a;
  border-radius: 15px;
}
.stat {
  text-align: center;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: #fff9;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #a78bfa;
}
.modal-cta {
  text-align: center;
}
.twitter-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8b5cf6;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.twitter-link:hover {
  background: #a78bfa;
  transform: translateY(-2px);
}
.contract-section {
  position: fixed;
  top: 80px;
  left: 40px;
  z-index: 100;
}
.contract-label {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.contract-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #80008033;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 8px;
  padding: 10px 15px;
}
.contract-address {
  color: #ffffffe6;
  font-size: 11px;
  font-family: Monaco, Menlo, monospace;
}
.copy-btn {
  background: #8b5cf6;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.copy-btn:hover {
  background: #a78bfa;
}
@media (max-width: 768px) {
  .ca-container {
    top: 55%;
    padding: 8px 15px;
  }
  .ca-text {
    font-size: 10px;
  }
  .ca-copy-hint {
    font-size: 8px;
  }
  .nft-gallery {
    top: 65%;
    gap: 8px;
  }
  .nft-item {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border-width: 2px;
  }
  .get-pfp-cta {
    top: 78%;
  }
  .get-pfp-cta span {
    font-size: 11px;
    padding: 10px 18px;
    letter-spacing: 1px;
  }
  .pfp-modal {
    margin: 15px;
    padding: 25px;
  }
  .pfp-title {
    font-size: 22px;
  }
  .pfp-image-container {
    width: 150px;
    height: 150px;
  }
  .pfp-name {
    font-size: 20px;
  }
  .header {
    padding: 10px 15px;
  }
  .menu-icon {
    height: 28px;
    margin-right: 10px;
  }
  .nav {
    gap: 8px;
  }
  .nav a {
    padding: 6px 8px;
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .contract-section {
    top: 55px;
    left: 15px;
  }
  .contract-label {
    font-size: 9px;
  }
  .contract-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 8px 10px;
  }
  .contract-address {
    font-size: 7px;
    word-break: break-all;
    max-width: 160px;
  }
  .copy-btn {
    font-size: 9px;
    padding: 4px 8px;
  }
  .footer {
    padding: 10px;
  }
  .footer p {
    font-size: 8px;
    letter-spacing: 1px;
    flex-wrap: wrap;
  }
  .x-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .ca-container {
    top: 53%;
    padding: 6px 10px;
  }
  .ca-text {
    font-size: 8px;
  }
  .ca-copy-hint {
    font-size: 7px;
  }
  .nav a {
    font-size: 7px;
    padding: 4px 5px;
  }
  .menu-icon {
    height: 22px;
  }
  .contract-address {
    font-size: 6px;
    max-width: 130px;
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 70px;
  }
  .scroll-indicator span {
    font-size: 10px;
  }
  .hero-footer {
    padding: 15px;
  }
  .hero-footer p {
    font-size: 8px;
    letter-spacing: 1px;
    flex-wrap: wrap;
  }
  .hero-footer .x-icon svg {
    width: 20px;
    height: 20px;
  }
  .modal-box {
    margin: 15px;
    padding: 25px 20px;
    max-height: 90vh;
  }
  .modal-close {
    top: 10px;
    right: 15px;
    font-size: 28px;
  }
  .modal-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .modal-intro p {
    font-size: 14px;
  }
  .modal-grid {
    flex-direction: column;
    gap: 15px;
  }
  .modal-card {
    padding: 15px;
  }
  .modal-image-container {
    height: 150px;
  }
  .modal-text h2 {
    font-size: 18px;
  }
  .modal-text p {
    font-size: 13px;
  }
  .modal-stats {
    flex-wrap: wrap;
    gap: 25px;
    padding: 15px;
  }
  .stat-label {
    font-size: 11px;
  }
  .stat-value {
    font-size: 16px;
  }
  .twitter-link {
    padding: 10px 18px;
    font-size: 13px;
  }
}
