/* =============================================
   BOBO THE BEAR - Main Stylesheet
   Theme: Red/Dark
   ============================================= */

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Pangolin', cursive, sans-serif;
  background-color: #1a0a0a;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  cursor: url('../images/mouse/cursor.png') 0 0, auto;
}

/* Custom cursor for clickable elements */
a, button, .social-btn, .buy-button, .copy-btn, .video-progress-container,
.video-close-btn, .video-play-pause, .hero-contract {
  cursor: url('../images/mouse/cursorhand.png') 0 0, pointer !important;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =============================================
   Background Noise Overlay
   ============================================= */
.background-noise {
  position: fixed;
  inset: 0;
  z-index: 900;
  opacity: 0.08;
  pointer-events: none;
  background-image: url('../images/noise/background-noise.gif');
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* =============================================
   Sticky Header
   ============================================= */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(26, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.sticky-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-header-left {
  display: flex;
  gap: 10px;
}

.sticky-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #ff3333;
  border: 2px solid #000;
  border-radius: 8px;
  box-shadow: 0 2px 0 #000;
  transition: all 0.2s ease;
}

.sticky-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 #000;
}

.sticky-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.sticky-header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.sticky-logo {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 0 #000;
}

.sticky-header-right {
  display: flex;
  align-items: center;
}

.sticky-buy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ff3333;
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow: 0 3px 0 #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.sticky-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #000;
}

.sticky-buy-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

/* =============================================
   Floating BOBO Heads
   ============================================= */
.bobo-heads {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
}

.floating-head {
  position: absolute;
  width: 80px;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

.head-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  transform: rotate(-15deg);
}

.head-2 {
  top: 20%;
  right: 5%;
  animation-delay: 1.5s;
  transform: rotate(20deg);
}

.head-3 {
  bottom: 30%;
  left: 8%;
  animation-delay: 3s;
  transform: rotate(10deg);
}

.head-4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 4.5s;
  transform: rotate(-25deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-20px) rotate(var(--rotation, 0deg));
  }
}

/* =============================================
   Navigation
   ============================================= */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 30px;
  background: linear-gradient(180deg, rgba(26, 10, 10, 0.95) 0%, rgba(26, 10, 10, 0) 100%);
  transition: all 0.3s ease;
}

.nav-bar.scrolled {
  background: rgba(26, 10, 10, 0.98);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-music-btn {
  width: 45px;
  height: 45px;
  background: #2a0f0f;
  border: 2px solid #ff3333;
  border-radius: 8px;
  color: #ff3333;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-music-btn:hover {
  background: #ff3333;
  color: #fff;
  transform: scale(1.1);
}

.nav-logo {
  font-size: 28px;
  font-weight: 700;
  color: #ff3333;
  text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
  letter-spacing: 2px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(255, 51, 51, 0.8), 0 0 60px rgba(255, 51, 51, 0.4);
  }
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #2a0f0f;
  border: 2px solid #ff3333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff3333;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ff3333;
  color: #fff;
  transform: scale(1.15) rotate(10deg);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   Hero Section
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #1a0a0a 0%, #2d0f0f 50%, #1a0a0a 100%);
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.3;
}

.hero-main-image {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

.bobo-main {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(255, 51, 51, 0.3));
}

.hero-logo-container {
  position: absolute;
  z-index: 100;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-fist-bg {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: auto;
  max-width: 600px;
  height: 80vh;
  z-index: 10;
  opacity: 1;
}

.hero-bobo-character {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 90%;
  width: auto;
  z-index: 15;
}

/* Hero Social Links - Left Corner */
.hero-social-links {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  z-index: 50;
}

.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #ff3333;
  border: 3px solid #000;
  border-radius: 12px;
  box-shadow: 0 4px 0 #000;
  transition: all 0.2s ease;
}

.hero-social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 0 #000;
}

.hero-social-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Hero Floating ETH Icon */
.hero-eth {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.hero-eth-2 {
  top: 25%;
  left: 5%;
  width: 250px;
  transform: rotate(-25deg);
}

.hero-eth-3 {
  top: calc(60% + 100px);
  left: calc(28% - 100px);
  width: 120px;
  transform: rotate(25deg);
}

/* Hero Play Button */
.hero-play-btn {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #ff3333;
  border: 3px solid #000;
  border-radius: 50%;
  box-shadow: 0 4px 0 #000;
  transition: all 0.2s ease;
  z-index: 100;
}

.hero-play-btn:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 8px 0 #000;
}

.play-icon {
  font-size: 28px;
  color: #fff;
  margin-left: 4px;
}

/* Hero Contract Address */
.hero-contract {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  z-index: 100;
  transition: all 0.2s ease;
}

.hero-contract:hover {
  transform: scale(1.02);
}

.hero-copied-text {
  position: absolute;
  top: -12px;
  right: -10px;
  display: none;
  background: #33cc33;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  border: 2px solid #000;
  transform: rotate(12deg);
  box-shadow: 0 2px 0 #000;
}

.hero-contract.copied .hero-copied-text {
  display: block;
}

.hero-contract-address {
  font-size: 14px;
  color: #fff;
  font-family: monospace;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 70%;
  max-width: 500px;
  background: #1a0a0a;
  border: 5px solid #ff3333;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 51, 51, 0.5);
}

.video-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background: #ff3333;
  border: 2px solid #000;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.2s ease;
}

.video-close-btn:hover {
  transform: scale(1.1);
  background: #ff5555;
}

.modal-video {
  width: 100%;
  display: block;
}

.video-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #2a0f0f;
  border-top: 3px solid #ff3333;
}

.video-play-pause {
  width: 45px;
  height: 45px;
  background: #ff3333;
  border: 2px solid #000;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.video-play-pause:hover {
  transform: scale(1.1);
}

.video-play-pause .play-icon-ctrl {
  display: none;
  margin-left: 3px;
}

.video-play-pause.paused .pause-icon {
  display: none;
}

.video-play-pause.paused .play-icon-ctrl {
  display: inline;
}

.video-progress-container {
  flex: 1;
  height: 8px;
  background: #1a0a0a;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
}

.video-progress {
  height: 100%;
  width: 0%;
  background: #ff3333;
  border-radius: 4px;
  transition: width 0.1s linear;
}

.video-time {
  color: #fff;
  font-size: 14px;
  min-width: 50px;
  text-align: right;
}

.hero-logo-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 4px 0 #000,
    0 8px 0 rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 51, 51, 0.5);
  letter-spacing: 5px;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.float-element {
  position: absolute;
  width: 120px;
  animation: element-float 5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.float-element:hover {
  transform: scale(1.3) !important;
}

/* ETH Symbol Positions */
.eth-1 {
  top: 40%;
  left: 5%;
  width: 150px;
  transform: rotate(-15deg);
  animation-delay: 0s;
}

.eth-2 {
  top: 15%;
  right: 8%;
  width: 160px;
  transform: rotate(15deg);
  animation-delay: 1s;
}

.eth-3 {
  bottom: 5%;
  right: 3%;
  width: 130px;
  transform: rotate(-10deg);
  animation-delay: 2s;
}

@keyframes element-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
  }
  75% {
    transform: translateY(10px) rotate(-5deg);
  }
}

/* Buy Button */
.buy-button-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  transition: opacity 0.3s ease;
}

.buy-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #1a0a0a;
  padding: 15px 40px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 700;
  border: 3px solid #000;
  box-shadow: 0 6px 0 #000;
  transition: all 0.2s ease;
}

.buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 #000;
  background: #ff3333;
  color: #fff;
}

.buy-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #000;
}

.buy-btn-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

/* =============================================
   Marquee Section
   ============================================= */
.marquee-section {
  background: #fff;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 20px;
  animation: marquee 30s linear infinite;
}

.marquee-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.marquee-img:hover {
  transform: scale(1.2) rotate(5deg);
  z-index: 10;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   Community Section
   ============================================= */
.community-section {
  background: linear-gradient(180deg, #1a0a0a 0%, #2d1515 100%);
  padding: 100px 20px;
}

.community-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  border: 4px solid #ff3333;
  box-shadow: 0 20px 60px rgba(255, 51, 51, 0.2);
}

.community-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 36px;
  color: #ff3333;
  text-shadow: 0 3px 0 #000;
  margin-bottom: 10px;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 35px;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 700;
  border: 3px solid #000;
  box-shadow: 0 4px 0 #000;
  transition: all 0.2s ease;
  gap: 15px;
}

.btn-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid #000;
  box-shadow: 0 2px 0 #000;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
}

.social-btn:hover {
  transform: translateX(15px);
  box-shadow: 0 8px 0 #000;
}

.social-btn.telegram {
  background: #ff3333;
  color: #fff;
}

.social-btn.twitter {
  background: #ff3333;
  color: #fff;
}

.social-btn.dex {
  background: #ff3333;
  color: #fff;
}

.social-btn.uniswap {
  background: #ff3333;
  color: #fff;
}

/* =============================================
   How to Buy Section
   ============================================= */
.how-to-buy-section {
  background: linear-gradient(180deg, #4a4a52 0%, #5a5a63 100%);
  padding: 100px 20px 200px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title-large {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 72px;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 0 #000;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.steps-grid.vertical {
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 30px;
  text-align: left;
  border: 3px solid #000;
  box-shadow: 0 8px 0 #000;
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 0 #000;
}

.step-number {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #ff3333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border: 3px solid #000;
}

.step-content {
  color: #1a0a0a;
}

.step-icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 10px;
  background: #f5f5f5;
}

.step-text {
  min-width: 150px;
}

.step-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #ff3333;
}

.step-description {
  flex: 1;
  color: #1a0a0a;
}

.step-description p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.step-description p:last-child {
  margin-bottom: 0;
}

.step-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.step-content p:last-child {
  margin-bottom: 0;
}

.step-link {
  color: #ff3333;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.step-link:hover {
  color: #ff5555;
}

.decoration-hand {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

/* =============================================
   Contract Section
   ============================================= */
.contract-section {
  background: url('../images/shadow.png') center center / contain no-repeat, #1a0a0a;
  padding: 100px 20px;
  text-align: center;
}

.contract-container {
  max-width: 800px;
  margin: 0 auto;
}

.contract-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #2a0f0f;
  border: 3px solid #ff3333;
  border-radius: 15px;
  padding: 20px 30px;
  margin: 30px 0;
  flex-wrap: wrap;
  position: relative;
}

.contract-box.clickable {
  cursor: pointer;
  transition: all 0.2s ease;
}

.contract-box.clickable:hover {
  transform: scale(1.02);
  background: #3a1515;
}

.contract-copied-label {
  position: absolute;
  top: -12px;
  right: -10px;
  display: none;
  background: #33cc33;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  border: 2px solid #000;
  transform: rotate(12deg);
  box-shadow: 0 3px 0 #000;
}

.contract-box.copied .contract-copied-label {
  display: block;
}

.contract-address {
  font-size: 14px;
  word-break: break-all;
  color: #fff;
  font-family: monospace;
}

.copy-btn {
  background: #ff3333;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 700;
  border: 2px solid #000;
  transition: all 0.2s ease;
  position: relative;
}

.copy-btn:hover {
  background: #ff5555;
  transform: scale(1.05);
}

.copy-btn .copied-text {
  display: none;
}

.copy-btn.copied .copy-text {
  display: none;
}

.copy-btn.copied .copied-text {
  display: inline;
}

.token-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.info-badge {
  background: #2a0f0f;
  border: 2px solid #ff3333;
  padding: 10px 25px;
  border-radius: 50px;
  color: #fff;
}

.token-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.token-link {
  color: #ff3333;
  font-size: 18px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.token-link:hover {
  border-bottom-color: #ff3333;
}

/* =============================================
   Lore Section
   ============================================= */
.lore-section {
  background: linear-gradient(180deg, #2d1515 0%, #1a0a0a 100%);
  padding: 100px 20px;
  border-top: 3px solid #ff3333;
}

.lore-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lore-box {
  background: url('../images/bobostrip.jpg') center center / cover no-repeat, #2a0f0f;
  border: 3px solid #ff3333;
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
  position: relative;
}

.lore-box p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.lore-tagline {
  font-size: 24px;
  color: #ff3333;
  font-style: italic;
  margin-top: 30px;
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
  background: #0a0505;
  padding: 60px 20px 30px;
  border-top: 3px solid #ff3333;
  position: relative;
  overflow: hidden;
}

/* Footer corner ETH images */
.footer-corner {
  position: absolute;
  width: 80px;
  height: auto;
  opacity: 0.6;
  pointer-events: none;
}

.footer-corner-tl {
  top: 30px;
  left: 15%;
  transform: rotate(-15deg);
}

.footer-corner-tr {
  top: 30px;
  right: 15%;
  transform: rotate(15deg);
}

.footer-corner-bl {
  bottom: 30px;
  left: 15%;
  transform: rotate(15deg);
}

.footer-corner-br {
  bottom: 30px;
  right: 15%;
  transform: rotate(-15deg);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 36px;
  font-weight: 900;
  color: #ff3333;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #888;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff3333;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-social {
  color: #ff3333;
  padding: 10px 20px;
  border: 2px solid #ff3333;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: #ff3333;
  color: #fff;
}

.copyright {
  color: #555;
  font-size: 14px;
}

/* =============================================
   Privacy Policy Page
   ============================================= */
.policy-section {
  background: #1a0a0a;
  min-height: 100vh;
  padding: 60px 20px 100px;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  color: #ff3333;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
  transition: all 0.2s ease;
}

.back-link:hover {
  color: #ff5555;
  transform: translateX(-5px);
}

.policy-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 48px;
  color: #ff3333;
  text-shadow: 0 3px 0 #000;
  margin-bottom: 10px;
}

.policy-updated {
  color: #888;
  font-size: 14px;
  margin-bottom: 40px;
}

.policy-content {
  background: #2a0f0f;
  border: 3px solid #ff3333;
  border-radius: 20px;
  padding: 40px;
}

.policy-content h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 24px;
  color: #ff3333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.policy-content ul li {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #ff3333;
  border-radius: 50%;
}

/* =============================================
   Responsive Design
   ============================================= */
@media screen and (max-width: 991px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .community-image img {
    margin: 0 auto;
  }

  .section-title-large {
    font-size: 56px;
  }

  .floating-head {
    width: 60px;
  }
}

@media screen and (max-width: 767px) {
  .nav-bar {
    padding: 10px 15px;
  }

  .nav-logo {
    font-size: 22px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .hero-logo-text {
    font-size: 60px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-title-large {
    font-size: 42px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .buy-button {
    padding: 12px 30px;
    font-size: 18px;
  }

  .floating-head {
    width: 50px;
  }

  .float-element {
    width: 80px;
  }
}

@media screen and (max-width: 479px) {
  .nav-music-btn {
    width: 38px;
    height: 38px;
  }

  .nav-logo {
    font-size: 18px;
  }

  .hero-logo-text {
    font-size: 45px;
  }

  .section-title {
    font-size: 28px;
  }

  .contract-address {
    font-size: 11px;
  }

  .token-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
