/* POTA HOOD V4 - AGGRESSIVE REDESIGN */
/* More contrast, more energy, more WOW */

:root {
  --lime: #CCFF00;
  --lime-bright: #E0FF33;
  --lime-dark: #9FCC00;
  --purple: #7C3AED;
  --purple-dark: #5B21B6;
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --black-card: #141414;
  --white: #FFFFFF;
  --gray: #888888;
  
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(204, 255, 0, 0.6);
  letter-spacing: -1px;
}

/* Nav Logo Marquee */
.nav-logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 40px;
}

.logo-marquee-content {
  display: flex;
  gap: 80px;
  animation: logo-marquee-scroll 25s linear infinite;
  white-space: nowrap;
}

.logo-marquee-content span {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.nav-logo::after {
  content: ' 🥔';
  font-size: 24px;
}

/* Nav Marquee */
.nav-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  margin-left: 40px;
}

.marquee-content {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 20s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.3;
}

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

.nav-cta {
  background: var(--lime);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.4);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(204, 255, 0, 0.8);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

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

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(204, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--lime), transparent);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--purple), transparent);
  bottom: -150px;
  left: -100px;
  animation-delay: 2s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--lime), transparent);
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black-card);
  border: 2px solid var(--lime);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px var(--lime);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(50px, 9vw, 90px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: -3px;
}

.title-main {
  display: block;
  color: var(--white);
}

.title-highlight {
  display: block;
  color: var(--lime);
  text-shadow: 0 0 50px rgba(204, 255, 0, 0.8);
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 50px rgba(204, 255, 0, 0.6); }
  50% { text-shadow: 0 0 80px rgba(204, 255, 0, 1); }
}

.hero-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.btn-mint {
  background: var(--lime);
  color: var(--black);
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 40px rgba(204, 255, 0, 0.5);
}

.btn-mint:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 60px rgba(204, 255, 0, 0.8);
}

.btn-mint:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-arrow {
  font-size: 24px;
  transition: transform 0.3s;
}

.btn-opensea {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-opensea:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-5px);
}

.btn-large {
  padding: 24px 56px;
  font-size: 20px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 25px 35px;
  background: var(--black-card);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(204, 255, 0, 0.5);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(204, 255, 0, 0.2);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.nft-showcase {
  position: relative;
  width: 100%;
  height: 500px;
}

.nft-card-float {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background: var(--black-card);
  border: 3px solid var(--lime);
  box-shadow: 0 10px 40px rgba(204, 255, 0, 0.3);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
}

.nft-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nft-card-float:hover {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 20px 60px rgba(204, 255, 0, 0.6);
  border-color: var(--lime-bright);
}

.card-1 {
  top: 20px;
  left: 40px;
  animation: cardFloat1 6s ease-in-out infinite;
  z-index: 3;
}

.card-2 {
  top: 80px;
  right: 60px;
  animation: cardFloat2 6s ease-in-out infinite 1s;
  width: 180px;
  height: 180px;
  z-index: 2;
}

.card-3 {
  bottom: 100px;
  left: 120px;
  animation: cardFloat3 6s ease-in-out infinite 2s;
  width: 190px;
  height: 190px;
  z-index: 4;
}

.card-4 {
  top: 200px;
  right: 150px;
  animation: cardFloat1 6s ease-in-out infinite 2.5s;
  width: 170px;
  height: 170px;
  z-index: 1;
}

.card-5 {
  bottom: 40px;
  right: 30px;
  animation: cardFloat2 6s ease-in-out infinite 3s;
  width: 185px;
  height: 185px;
  z-index: 2;
}

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

@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes cardFloat3 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-25px) rotate(3deg); }
}

.nft-inner {
  text-align: center;
}

.nft-id {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3);
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--black-light);
  border-top: 1px solid rgba(204, 255, 0, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-box {
  background: var(--black-card);
  border: 2px solid rgba(204, 255, 0, 0.2);
  border-radius: 30px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--lime), var(--lime-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  border-color: var(--lime);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(204, 255, 0, 0.3);
}

/* Feature Box Potato */
.feature-potato {
  font-size: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 20px rgba(204, 255, 0, 0.4));
  animation: potato-bounce 3s ease-in-out infinite;
}

@keyframes potato-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  color: rgba(204, 255, 0, 0.1);
  line-height: 1;
  margin-bottom: -20px;
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-box p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 40px rgba(204, 255, 0, 0.5);
  margin-bottom: 15px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
}

/* Collection */
.collection {
  padding: 100px 0;
  background: var(--black);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.preview-box {
  aspect-ratio: 1;
  background: var(--black-card);
  border: 3px solid var(--lime);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 10px 40px rgba(204, 255, 0, 0.3);
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-box:hover {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 20px 60px rgba(204, 255, 0, 0.6);
  border-color: var(--lime-bright);
}

.preview-inner {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3);
}

.collection-cta {
  text-align: center;
}

/* Game Stats Bar */
.game-stats-bar {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.stat-box {
  background: var(--black-card);
  border: 2px solid rgba(204, 255, 0, 0.2);
  border-radius: 15px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
  min-width: 180px;
}

.stat-box:hover {
  border-color: var(--lime);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(204, 255, 0, 0.2);
}

.stat-icon {
  font-size: 40px;
  filter: grayscale(0.3);
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-box .stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 15px rgba(204, 255, 0, 0.4);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-box .stat-label {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .game-stats-bar {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-box {
    min-width: auto;
  }
}

/* Potato Game Section */
.potato-game-section {
  padding: 100px 0;
  background: var(--black-light);
}

.game-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border: 3px solid var(--lime);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(204, 255, 0, 0.3);
}

/* Floating Decorations */
.game-deco-left,
.game-deco-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 40px 0;
  z-index: 1;
  pointer-events: none;
}

.game-deco-left {
  left: -90px;
}

.game-deco-right {
  right: -90px;
}

.deco-potato,
.deco-cactus {
  font-size: 48px;
  opacity: 0.6;
  filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.3));
}

.deco-1 {
  animation: float1 4s ease-in-out infinite;
}

.deco-2 {
  animation: float2 5s ease-in-out infinite;
  animation-delay: 1s;
}

.deco-3 {
  animation: float1 6s ease-in-out infinite;
  animation-delay: 2s;
}

.deco-4 {
  animation: float2 4.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.deco-5 {
  animation: float1 5.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.deco-6 {
  animation: float2 5s ease-in-out infinite;
  animation-delay: 2.5s;
}

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

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(-10deg); }
}

@media (max-width: 1400px) {
  .game-deco-left {
    left: -80px;
  }
  
  .game-deco-right {
    right: -80px;
  }
  
  .deco-potato,
  .deco-cactus {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .game-deco-left,
  .game-deco-right {
    display: none;
  }
}

#gameCanvas {
  display: block;
  width: 100%;
  height: auto;
  background: var(--black);
  border-radius: 17px;
  position: relative;
  z-index: 2;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.game-start {
  text-align: center;
}

.game-start h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(204, 255, 0, 0.6);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.game-start p {
  font-size: 18px;
  color: var(--gray);
}

.game-score {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  z-index: 5;
}

.score-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.score-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.score-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 20px rgba(204, 255, 0, 0.5);
}

/* Final CTA */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.3), transparent);
  filter: blur(100px);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 60px rgba(204, 255, 0, 0.8);
  margin-bottom: 20px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.cta-content p {
  font-size: 22px;
  color: var(--gray);
  margin-bottom: 40px;
}

/* Footer */
.footer {
  background: var(--black-card);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(204, 255, 0, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 40px;
  gap: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(204, 255, 0, 0.5);
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

/* Footer Links Large */
.footer-link-large {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--lime) !important;
  transition: all 0.3s;
}

.footer-link-large:hover {
  color: var(--lime-bright) !important;
  text-shadow: 0 0 20px rgba(204, 255, 0, 0.6);
  transform: translateY(-2px);
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--lime);
  text-shadow: 0 0 20px rgba(204, 255, 0, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(204, 255, 0, 0.1);
}

.footer-bottom p {
  color: var(--gray);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
  
  .hero-visual {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 20px 25px;
  }
  
  .nav-logo {
    font-size: 22px;
  }
  
  .nav-cta {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .hero {
    padding: 100px 25px 60px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-mint,
  .btn-opensea {
    width: 100%;
    justify-content: center;
  }
  
  .features-grid,
  .collection-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}
