/* CSS Variables */
:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.1 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.145 0 0);
  --muted: oklch(0.95 0 0);
  --muted-foreground: oklch(0.4 0 0);
  --border: oklch(0.1 0 0);
  --radius: 0.25rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-scale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-5px) rotate(-2deg);
  }
  75% {
    transform: translateX(5px) rotate(2deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 40px;
  }
}

@keyframes ms-paint-gentle {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(1px, -1px) rotate(0.5deg);
  }
  50% {
    transform: translate(-1px, 1px) rotate(-0.5deg);
  }
  75% {
    transform: translate(1px, 1px) rotate(0.3deg);
  }
}

@keyframes ms-paint-slow-rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-0.5deg);
  }
  75% {
    transform: rotate(0.5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes ms-paint-float-gentle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-wiggle {
  animation: wiggle 2s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

.animate-pulse-scale {
  animation: pulse-scale 2s ease-in-out infinite;
}

.animate-shake {
  animation: shake 0.5s infinite;
}

.animate-ms-paint-gentle {
  animation: ms-paint-gentle 4s ease-in-out infinite;
}

.animate-ms-paint-slow-rotate {
  animation: ms-paint-slow-rotate 6s ease-in-out infinite;
}

.animate-ms-paint-float-gentle {
  animation: ms-paint-float-gentle 3s ease-in-out infinite;
}

/* Navigation */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  background-color: transparent;
}

.nav-menu.scrolled {
  background-color: var(--background);
  border-bottom: 2px solid var(--foreground);
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.5);
}

.nav-menu.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
  color: var(--foreground);
}

.nav-logo:hover {
  animation: shake 0.5s infinite;
}

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--foreground);
  transition: all 0.3s;
}

.nav-link:hover {
  animation: shake 0.5s infinite;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.nav-buy-btn {
  background-color: var(--foreground);
  color: var(--background);
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--foreground);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
}

.nav-buy-btn:hover {
  background-color: var(--background);
  color: var(--foreground);
  animation: shake 0.5s infinite;
}

.nav-links-mobile {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 0.75rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .nav-links-mobile {
    display: none;
  }
}

.nav-link-mobile {
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--foreground);
  transition: all 0.3s;
}

.nav-link-mobile:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem 5rem;
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border: 4px solid var(--foreground);
  opacity: 0.7;
}

.hero-shape-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  animation: ms-paint-slow-rotate 8s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: 5rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
  animation: spin-slow 20s linear infinite;
}

.hero-shape-3 {
  top: 33%;
  right: 2.5rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--foreground);
  transform: rotate(45deg);
  animation: ms-paint-float-gentle 4s ease-in-out infinite;
  opacity: 0.7;
}

.hero-shape-4 {
  top: 50%;
  left: 25%;
  width: 3rem;
  height: 3rem;
  border: 4px solid var(--foreground);
  border-radius: 50%;
  animation: pulse-scale 2s ease-in-out infinite;
}

.hero-shape-5 {
  bottom: 33%;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: var(--muted-foreground);
  opacity: 0.7;
  transform: rotate(-12deg);
  animation: ms-paint-gentle 5s ease-in-out infinite;
}

.hero-content {
  max-width: 80rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-image-container {
  transition: all 1s;
  opacity: 1;
  transform: scale(1);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--background);
  border: 8px solid var(--foreground);
  transform: rotate(-3deg);
  transition: all 0.3s;
  box-shadow: 16px 16px 0 0 rgba(0, 0, 0, 1);
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 20px 20px 0 0 rgba(0, 0, 0, 1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform 0.3s;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.hero-image-decor {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-color: var(--foreground);
  opacity: 0;
  transition: opacity 0.3s;
  animation: pulse-scale 2s ease-in-out infinite;
}

.hero-image-wrapper:hover .hero-image-decor {
  opacity: 0.7;
}

.hero-image-decor-1 {
  top: -0.5rem;
  right: -0.5rem;
}

.hero-image-decor-2 {
  bottom: -0.5rem;
  left: -0.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: all 1s;
  opacity: 1;
  transform: translateX(0);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-title:hover {
  animation: shake 0.5s infinite;
}

.hero-subtitle-box {
  border: 4px solid var(--foreground);
  padding: 1.5rem;
  background-color: var(--muted);
  transform: rotate(1deg);
  transition: all 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0) rotate(1deg);
}

.hero-subtitle-box:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.875rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 1s;
  transition-delay: 0.4s;
  opacity: 1;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

/* About Section */
.about-section {
  min-height: 100vh;
  padding: 2rem 1rem;
  border-top: 8px solid var(--foreground);
  position: relative;
  overflow: hidden;
  background-color: var(--muted);
  display: flex;
  align-items: center;
}

.about-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
}

.about-background::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  border: 12px solid var(--foreground);
  transform: rotate(12deg);
  animation: ms-paint-slow-rotate 10s ease-in-out infinite;
  opacity: 0.7;
}

.about-background::after {
  content: '';
  position: absolute;
  top: 33%;
  right: 5rem;
  width: 16rem;
  height: 16rem;
  background-color: var(--foreground);
  transform: rotate(-45deg);
  animation: ms-paint-float-gentle 5s ease-in-out infinite;
  opacity: 0.7;
}

.about-container {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  width: 100%;
}

.book-wrapper {
  position: relative;
  transition: all 0.7s;
  opacity: 1;
  transform: scale(1);
}

.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2rem;
  background-color: var(--foreground);
  border-right: 8px solid var(--foreground);
  display: none;
}

@media (min-width: 768px) {
  .book-spine {
    display: block;
  }
}

.book-spine::before {
  content: '';
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.book-content {
  margin-left: 0;
}

@media (min-width: 768px) {
  .book-content {
    margin-left: 2rem;
  }
}

.book-page {
  background-color: #fffef0;
  border: 6px solid var(--foreground);
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
  min-height: 400px;
  max-height: 80vh;
  padding: 1.25rem;
  transition: all 0.3s;
  background-image: repeating-linear-gradient(transparent, transparent 28px, rgba(0, 0, 0, 0.1) 28px, rgba(0, 0, 0, 0.1) 29px);
  overflow-y: auto;
}

@media (min-width: 768px) {
  .book-page {
    padding: 1.75rem;
    min-height: 450px;
  }
}

.book-page.flipping {
  transform: scale(0.95);
  opacity: 0.5;
}

.book-header {
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--foreground);
  padding-bottom: 0.75rem;
}

.book-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .book-title {
    font-size: 2rem;
  }
}

.book-subtitle {
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .book-subtitle {
    font-size: 1.125rem;
  }
}

.book-body {
  margin-bottom: 1rem;
}

.book-page-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.book-text-large {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .book-text-large {
    font-size: 1.125rem;
  }
}

.book-text {
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .book-text {
    font-size: 1rem;
  }
}

.book-highlight-box {
  border: 3px solid var(--foreground);
  background-color: var(--foreground);
  color: var(--background);
  padding: 0.75rem;
  transform: rotate(1deg);
  margin-top: 1rem;
}

.book-highlight-text {
  font-size: 1.125rem;
  font-weight: 900;
}

@media (min-width: 768px) {
  .book-highlight-text {
    font-size: 1.25rem;
  }
}

.book-page-number {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.875rem;
  font-weight: 900;
}

@media (min-width: 768px) {
  .book-page-number {
    font-size: 1rem;
  }
}

.book-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 0.75rem;
}

.book-nav-btn {
  border: 4px solid var(--foreground);
  background-color: var(--background);
  color: var(--foreground);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 900;
  transition: all 0.3s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .book-nav-btn {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
}

.book-nav-btn:hover:not(:disabled) {
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
  transform: translateY(-4px);
}

.book-nav-btn:active:not(:disabled) {
  box-shadow: none;
  transform: translateY(0);
}

.book-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.book-nav-next {
  background-color: var(--foreground);
  color: var(--background);
}

.book-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.book-dot {
  width: 1rem;
  height: 1rem;
  border: 4px solid var(--foreground);
  transition: all 0.3s;
  cursor: pointer;
  background-color: var(--background);
}

.book-dot:hover {
  transform: scale(1.25);
}

.book-dot.active {
  background-color: var(--foreground);
}

/* Token Section */
.token-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  border-top: 4px solid var(--foreground);
  position: relative;
  overflow: hidden;
}

.token-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, currentColor 35px, currentColor 70px);
}

.token-background::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 6rem;
  height: 6rem;
  border: 4px solid var(--foreground);
  animation: spin-slow 20s linear infinite;
  opacity: 0.7;
}

.token-background::after {
  content: '';
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  border: 4px solid var(--foreground);
  animation: ms-paint-gentle 6s ease-in-out infinite;
  opacity: 0.7;
}

.token-container {
  max-width: 80rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.token-title {
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 3rem;
  transition: all 0.7s;
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 768px) {
  .token-title {
    font-size: 6rem;
  }
}

.token-title:hover {
  animation: shake 0.5s infinite;
}

.token-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .token-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.token-card {
  border: 4px solid var(--foreground);
  padding: 1.5rem;
  background-color: var(--background);
  transition: all 0.7s;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .token-card {
    padding: 2rem;
  }
}

.token-card:nth-child(odd) {
  transform: rotate(1deg);
}

.token-card:nth-child(even) {
  transform: rotate(-1deg);
}

.token-card:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
}

.token-card-label {
  font-size: 0.75rem;
  font-family: monospace;
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .token-card-label {
    font-size: 0.875rem;
  }
}

.token-card-value {
  font-size: 1.25rem;
  font-weight: 900;
  word-break: break-word;
}

@media (min-width: 768px) {
  .token-card-value {
    font-size: 1.875rem;
  }
}

.token-card-value-small {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .token-card-value-small {
    font-size: 1.5rem;
  }
}

.token-contract {
  border: 4px solid var(--foreground);
  background-color: var(--background);
  transition: all 0.7s;
  overflow: hidden;
  opacity: 1;
  transform: scale(1);
}

.token-contract-header {
  border-bottom: 4px solid var(--foreground);
  padding: 1rem;
  background-color: var(--foreground);
  position: relative;
  overflow: hidden;
}

.token-contract-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, white 10px, white 20px);
  animation: slide 20s linear infinite;
}

.token-contract-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--background);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .token-contract-title {
    font-size: 1.5rem;
  }
}

.token-contract-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .token-contract-body {
    flex-direction: row;
    align-items: stretch;
    padding: 2rem;
  }
}

.token-contract-address {
  flex: 1;
  border: 4px solid var(--foreground);
  padding: 1rem;
  background-color: var(--background);
  font-family: monospace;
  font-size: 0.875rem;
  word-break: break-all;
  transition: background-color 0.3s;
}

@media (min-width: 768px) {
  .token-contract-address {
    font-size: 1rem;
  }
}

.token-contract-address:hover {
  background-color: var(--muted);
}

.token-copy-btn {
  border: 4px solid var(--foreground);
  padding: 1rem 2rem;
  font-weight: 900;
  font-size: 1.125rem;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  background-color: var(--background);
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 768px) {
  .token-copy-btn {
    font-size: 1.25rem;
  }
}

.token-copy-btn:hover:not(.copied) {
  transform: translate(-8px, -8px);
  box-shadow: 12px 12px 0 0 rgba(0, 0, 0, 1);
}

.token-copy-btn:active:not(.copied) {
  transform: translate(0, 0);
  box-shadow: none;
}

.token-copy-btn.copied {
  background-color: var(--foreground);
  color: var(--background);
  transform: scale(1.05);
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
  animation: pulse-scale 2s ease-in-out infinite;
}

.token-copy-btn.copied::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--background);
  opacity: 0.2;
  animation: pulse-scale 2s ease-in-out infinite;
}

/* Buy Section */
.buy-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  border-top: 4px solid var(--foreground);
}

.buy-container {
  max-width: 48rem;
  width: 100%;
  margin: 0 auto;
}

.buy-title {
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 3rem;
  transition: all 0.7s;
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 768px) {
  .buy-title {
    font-size: 6rem;
  }
}

.buy-title:hover {
  animation: shake 0.5s infinite;
}

.buy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.buy-step {
  transition: all 0.7s;
  opacity: 1;
  transform: translateX(0);
}

.buy-step-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.7s;
}

.buy-step-number {
  font-size: 3.75rem;
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 2px var(--foreground);
  text-stroke: 2px var(--foreground);
  opacity: 0.5;
  transition: all 0.3s;
  line-height: 1;
}

@media (min-width: 768px) {
  .buy-step-number {
    font-size: 6rem;
  }
}

.buy-step:hover .buy-step-number {
  color: white;
  -webkit-text-stroke: 2px var(--foreground);
  text-stroke: 2px var(--foreground);
  opacity: 0.8;
  animation: shake 0.5s infinite;
}

.buy-step-content:hover .buy-step-number {
  color: white;
  -webkit-text-stroke: 2px var(--foreground);
  text-stroke: 2px var(--foreground);
  opacity: 0.8;
  animation: shake 0.5s infinite;
}

.buy-step-text {
  flex: 1;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .buy-step-text {
    padding-top: 1rem;
  }
}

.buy-step-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .buy-step-title {
    font-size: 2.25rem;
  }
}

.buy-step-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .buy-step-description {
    font-size: 1.25rem;
  }
}

.buy-divider {
  border-top: 4px solid var(--foreground);
  margin: 2rem 0;
}

.buy-disclaimer {
  margin-top: 3rem;
  border: 4px solid var(--foreground);
  padding: 2rem;
  background-color: var(--background);
  transform: rotate(1deg);
  transition: all 0.7s;
  opacity: 1;
  transform: scale(1) rotate(1deg);
}

.buy-disclaimer:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
}

.buy-disclaimer-text {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}

@media (min-width: 768px) {
  .buy-disclaimer-text {
    font-size: 1.5rem;
  }
}

/* FAQ Section */
.faq-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  border-top: 4px solid var(--foreground);
  position: relative;
  overflow: hidden;
}

.faq-background::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  border: 4px solid var(--foreground);
  transform: rotate(12deg);
  animation: ms-paint-slow-rotate 8s ease-in-out infinite;
  opacity: 0.7;
}

.faq-background::after {
  content: '';
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  width: 10rem;
  height: 10rem;
  border: 4px solid var(--foreground);
  transform: rotate(-6deg);
  animation: ms-paint-float-gentle 4.5s ease-in-out infinite;
  opacity: 0.7;
}

.faq-container {
  max-width: 56rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.faq-title {
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 4rem;
  transform: rotate(-1deg);
  transition: all 0.7s;
  opacity: 1;
  transform: translateY(0) rotate(-1deg);
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 5rem;
  }
}

.faq-title:hover {
  animation: shake 0.5s infinite;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border: 4px solid var(--foreground);
  background-color: var(--background);
  transition: all 0.7s;
  opacity: 1;
  transform: translateX(0);
}

.faq-item.open {
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
  transform: rotate(-1deg);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.5rem;
  }
}

.faq-question:hover {
  background-color: var(--foreground);
  color: var(--background);
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  transition: all 0.5s;
  max-height: 0;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 24rem;
  opacity: 1;
}

.faq-answer > div {
  padding: 1.5rem;
  padding-top: 0;
  border-top: 4px solid var(--foreground);
}

.faq-answer p {
  font-size: 1.125rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .faq-answer p {
    font-size: 1.25rem;
  }
}

.faq-footer {
  margin-top: 4rem;
  border: 4px solid var(--foreground);
  padding: 2rem;
  background-color: var(--foreground);
  color: var(--background);
  transform: rotate(2deg);
  transition: all 0.7s;
  opacity: 1;
  transform: scale(1) rotate(2deg);
}

.faq-footer:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 12px 12px 0 0 rgba(0, 0, 0, 1);
}

.faq-footer-text {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
}

@media (min-width: 768px) {
  .faq-footer-text {
    font-size: 1.875rem;
  }
}

/* Community Section */
.community-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  border-top: 4px solid var(--foreground);
  position: relative;
  overflow: hidden;
}

.community-background::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 4rem;
  height: 4rem;
  border: 4px solid var(--foreground);
  animation: ms-paint-gentle 5s ease-in-out infinite;
  opacity: 0.7;
}

.community-background::after {
  content: '';
  position: absolute;
  top: 10rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
  background-color: var(--foreground);
  opacity: 0.7;
  transform: rotate(12deg);
  animation: ms-paint-slow-rotate 7s ease-in-out infinite;
}

.community-container {
  max-width: 48rem;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
}

.community-title {
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 2rem;
  transition: all 0.7s;
  opacity: 1;
  transform: scale(1);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .community-title {
    font-size: 5rem;
  }
}

.community-title:hover {
  animation: shake 0.5s infinite;
}

.community-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  transition: all 0.7s;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .community-subtitle {
    font-size: 1.875rem;
  }
}

.community-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  transition: all 0.7s;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .community-buttons {
    flex-direction: row;
  }
}

.community-btn {
  width: 100%;
  text-decoration: none;
  color: var(--foreground);
  border: 4px solid var(--foreground);
  background-color: var(--background);
  padding: 2rem 3rem;
  font-size: 1.25rem;
  font-weight: 900;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

@media (min-width: 640px) {
  .community-btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  .community-btn {
    font-size: 1.5rem;
  }
}

.community-btn:hover {
  background-color: var(--foreground);
  color: var(--background);
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
  transform: scale(1.1);
}

.community-btn span {
  position: relative;
  z-index: 10;
}

.community-footer-box {
  margin-top: 4rem;
  border: 4px solid var(--foreground);
  padding: 2rem;
  background-color: var(--muted);
  transform: rotate(-2deg);
  transition: all 0.7s;
  opacity: 1;
  transform: scale(1) rotate(-2deg);
  position: relative;
  overflow: hidden;
}

.community-footer-box:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
}

.community-footer-text {
  font-size: 1.125rem;
  font-family: monospace;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .community-footer-text {
    font-size: 1.25rem;
  }
}

.site-footer {
  margin-top: 5rem;
  font-size: 0.875rem;
  font-family: monospace;
  color: var(--muted-foreground);
  transition: all 0.7s;
  opacity: 1;
}

@media (min-width: 768px) {
  .site-footer {
    font-size: 1rem;
  }
}

