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

:root {
  --background: hsl(220, 27%, 6%);
  --foreground: hsl(210, 40%, 98%);
  --card: hsl(220, 23%, 11%);
  --card-foreground: hsl(210, 40%, 98%);
  --primary: hsl(195, 100%, 50%);
  --primary-foreground: hsl(220, 27%, 6%);
  --secondary: hsl(262, 52%, 65%);
  --secondary-foreground: hsl(210, 40%, 98%);
  --muted: hsl(220, 23%, 15%);
  --muted-foreground: hsl(215, 20.2%, 65.1%);
  --accent: hsl(195, 100%, 50%);
  --accent-foreground: hsl(220, 27%, 6%);
  --border: hsl(220, 23%, 15%);
  --radius: 0.75rem;
  
  --neon-blue: hsl(195, 100%, 50%);
  --neon-purple: hsl(262, 52%, 65%);
  --neon-pink: hsl(330, 100%, 70%);
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--background);
  color: var(--foreground);
  background: radial-gradient(ellipse at top, rgba(0,245,255,0.1) 0%, transparent 50%), 
              linear-gradient(135deg, #0a0b0f 0%, #1a1b23 100%);
  min-height: 100vh;
  line-height: 1.6;
}

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

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--neon-blue), var(--neon-purple));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--neon-purple), var(--neon-pink));
}

/* Utility Classes */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-glow {
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5),
              0 0 40px rgba(0, 245, 255, 0.3),
              0 0 60px rgba(0, 245, 255, 0.1);
}

.gradient-text {
  background: linear-gradient(135deg, #00f5ff 0%, #8b5cf6 50%, #f97316 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.floating:nth-child(2) {
  animation-delay: -2s;
}

.floating:nth-child(3) {
  animation-delay: -4s;
}

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

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Styles */
#navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
}

.nav-container {
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoImage{
  width: 90px;
}

.logo-icon span {
  color: var(--background);
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  font-size: 1rem;
}

.logo-text {
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--neon-blue);
}

.wallet-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wallet-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(0, 245, 255, 0.3);
  background: rgba(0, 245, 255, 0.05);
  color: var(--neon-blue);
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.wallet-btn:hover {
  border-color: var(--neon-blue);
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  width: 1.5rem;
  height: 2px;
  background: var(--neon-blue);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--neon-blue);
}

.mobile-wallet {
  width: 100%;
  margin-top: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding: 5rem 1rem 0;
}

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

.bg-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.bg-1 {
  top: 25%;
  left: 25%;
  width: 6rem;
  height: 6rem;
  background: rgba(0, 245, 255, 0.2);
}

.bg-2 {
  top: 33%;
  right: 25%;
  width: 8rem;
  height: 8rem;
  background: rgba(139, 92, 246, 0.2);
}

.bg-3 {
  bottom: 25%;
  left: 33%;
  width: 7rem;
  height: 7rem;
  background: rgba(249, 115, 22, 0.2);
}

.geometric-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.shape-1 {
  top: 5rem;
  left: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--neon-blue);
}

.shape-2 {
  top: 8rem;
  right: 5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--neon-purple);
  animation-delay: 1s;
}

.shape-3 {
  bottom: 8rem;
  left: 5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--neon-pink);
  animation-delay: 2s;
}

.shape-4 {
  bottom: 5rem;
  right: 2.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--neon-blue);
  animation-delay: 0.5s;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4rem);
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: var(--background);
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
  max-width: 280px;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.btn-secondary {
  padding: 1rem 2rem;
  border: 1px solid rgba(0, 245, 255, 0.3);
  background: rgba(0, 245, 255, 0.05);
  color: var(--neon-blue);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
  max-width: 280px;
}

.btn-secondary:hover {
  border-color: var(--neon-blue);
  background: rgba(0, 245, 255, 0.1);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  text-align: center;
  border-radius: 0.75rem;
  transition: all 0.5s ease;
}

.feature-card:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2),
              0 0 30px rgba(139, 92, 246, 0.3);
  border-color: rgba(0, 245, 255, 0.3);
  transform: scale(1.05);
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--neon-blue);
  margin: 0 auto 0.5rem;
}

.feature-card:nth-child(2) .feature-icon {
  color: var(--neon-purple);
}

.feature-card:nth-child(3) .feature-icon {
  color: var(--neon-pink);
}

.feature-card p {
  font-size: 0.8rem;
  color: #d1d5db;
}

.crypto-symbols {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.crypto-symbol {
  position: absolute;
  font-size: 1.5rem;
  font-weight: bold;
  opacity: 0.3;
}

.crypto-1 {
  top: 25%;
  left: 10%;
  color: var(--neon-blue);
}

.crypto-2 {
  top: 33%;
  right: 10%;
  color: var(--neon-purple);
  animation-delay: -1s;
}

.crypto-3 {
  bottom: 33%;
  left: 15%;
  color: var(--neon-pink);
  animation-delay: -2s;
}

.crypto-4 {
  bottom: 25%;
  right: 15%;
  color: var(--neon-blue);
  animation-delay: -3s;
}

/* Section Styles */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.section-title {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-description {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #d1d5db;
  max-width: 32rem;
  margin: 0 auto;
}

/* Market Section */
.market-section {
  padding: 4rem 0;
  position: relative;
  scroll-margin-top: 50px;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.crypto-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.crypto-card:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2),
              0 0 30px rgba(139, 92, 246, 0.3);
  border-color: rgba(0, 245, 255, 0.3);
  transform: scale(1.05);
}

.crypto-bg-icon {
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-size: 3rem;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.crypto-card:hover .crypto-bg-icon {
  opacity: 0.2;
}

.crypto-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.crypto-icon-container {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}

.crypto-icon {
  font-size: 1.25rem;
}

.crypto-change {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.crypto-change.positive {
  color: #10b981;
}

.crypto-change.negative {
  color: #ef4444;
}

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

.crypto-info {
  position: relative;
  z-index: 10;
}

.crypto-name {
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.crypto-symbol {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.crypto-price {
  font-size: 1.25rem;
  font-weight: bold;
}

.market-summary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.summary-card {
  padding: 1rem 0;
}

.summary-value {
  font-size: 1.5rem;
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.summary-label {
  color: #d1d5db;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  position: relative;
  scroll-margin-top: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-card-large {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.feature-card-large:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2),
              0 0 30px rgba(139, 92, 246, 0.3);
  border-color: rgba(0, 245, 255, 0.3);
  transform: scale(1.05);
}

.feature-icon-container {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.feature-card-large:hover .feature-icon-container {
  opacity: 0.3;
}

.neon-blue {
  background: linear-gradient(135deg, var(--neon-blue), transparent);
  color: var(--neon-blue);
}

.neon-purple {
  background: linear-gradient(135deg, var(--neon-purple), transparent);
  color: var(--neon-purple);
}

.neon-pink {
  background: linear-gradient(135deg, var(--neon-pink), transparent);
  color: var(--neon-pink);
}

.feature-icon-large {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 0.9rem;
}

.cta-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* NFT Section */
.nft-section {
  padding: 4rem 0;
  scroll-margin-top: 50px;
}

.nft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.nft-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.nft-card:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2),
              0 0 30px rgba(139, 92, 246, 0.3);
  border-color: rgba(0, 245, 255, 0.3);
  transform: scale(1.05);
}

.nft-image-container {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.nft-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nft-card:hover .nft-image {
  transform: scale(1.1);
}

.nft-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 15, 0.8), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.nft-card:hover .nft-overlay {
  opacity: 1;
}

.nft-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nft-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.stat-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.nft-stat:first-child .stat-icon {
  color: var(--neon-blue);
}

.nft-stat:last-child .stat-icon {
  color: var(--neon-pink);
}

.nft-stat span {
  font-size: 0.75rem;
}

.nft-info {
  padding: 0.75rem;
}

.nft-name {
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.nft-creator {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.nft-price-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nft-price-info {
  flex: 1;
}

.price-label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.nft-price {
  font-weight: bold;
}

.nft-action-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(0, 245, 255, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nft-action-btn:hover {
  background: rgba(0, 245, 255, 0.2);
}

.action-icon {
  width: 1rem;
  height: 1rem;
  color: var(--neon-blue);
}

.nft-stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.nft-stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #d1d5db;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* About Section */
.about-section {
  padding: 4rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-subtitle {
  font-size: 1.25rem;
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-paragraph {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
}

.about-stat-number {
  font-size: 1.5rem;
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  color: #d1d5db;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-text {
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Loading State */
.loading-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  animation: pulse 2s infinite;
}

.loading-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #374151;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.loading-text {
  height: 1rem;
  background: #374151;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.loading-price {
  height: 1.25rem;
  background: #374151;
  border-radius: 0.25rem;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
  }
  
  .wallet-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .crypto-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .nft-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links, .wallet-section {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  .hero-section {
    padding-top: 4rem;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  
  .hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 250px;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 24rem;
  }
  
  .feature-card {
    padding: 0.75rem;
  }
  
  .feature-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .feature-card p {
    font-size: 0.75rem;
  }
  
  .crypto-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .crypto-card {
    padding: 1.25rem;
  }
  
  .market-summary {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .summary-value {
    font-size: 1.25rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card-large {
    padding: 1.25rem;
  }
  
  .cta-section {
    padding: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .nft-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .nft-stats-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .crypto-symbols .crypto-symbol {
    font-size: 1.25rem;
  }
  
  .bg-1, .bg-2, .bg-3 {
    width: 4rem;
    height: 4rem;
  }
  
  .section-container {
    padding: 0 0.75rem;
  }
  
  .market-section, .features-section, .nft-section, .about-section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
    .logoImage{
  width: 60px;
}
  .nav-container {
    padding: 0.5rem 0.75rem;
  }
  
  .logo-text {
    font-size: 0.9rem;
  }
  
  .logo-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .logo-icon span {
    font-size: 0.9rem;
  }
  
  .hero-section {
    padding: 3.5rem 0.5rem 0;
  }
  
  .hero-content {
    padding: 0 0.5rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 20rem;
  }
  
  .feature-card {
    padding: 0.5rem;
  }
  
  .feature-card p {
    font-size: 0.7rem;
  }
  
  .section-container {
    padding: 0 0.5rem;
  }
  
  .crypto-card, .feature-card-large, .nft-card {
    padding: 1rem;
  }
  
  .market-summary, .cta-section, .nft-stat-card, .about-stat {
    padding: 1rem;
  }
  
  .crypto-grid {
    gap: 0.75rem;
  }
  
  .features-grid, .nft-grid {
    gap: 0.75rem;
  }
  
  .about-stats {
    gap: 0.75rem;
  }
  
  .nft-stats-section {
    gap: 0.75rem;
  }
  
  .nft-image {
    height: 8rem;
  }
  
  .market-section, .features-section, .nft-section, .about-section {
    padding: 2.5rem 0;
  }
}

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

  .logoImage{
  width: 60px;
}
  
  .btn-primary, .btn-secondary {
    width: auto;
    min-width: 200px;
  }
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .logoImage{
  width: 60px;
}

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
