@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #090909;
  --bg-card: #151515;
  --accent: #FF5A1F;
  --text-main: #ffffff;
  --text-dim: #a0a0a0;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.app-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  background-color: #090909;
  background-image: 
    radial-gradient(circle at 50% -20%, rgba(255, 90, 31, 0.2) 0%, rgba(9, 9, 9, 0) 50%),
    url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'%3E%3Cpath d='M0 400V0h400'/%3E%3C/g%3E%3Cg font-family='sans-serif' text-anchor='middle'%3E%3Ctext x='100' y='100' fill='rgba(255,90,31,0.5)' font-size='26'%3E✦%3C/text%3E%3Ctext x='350' y='250' fill='rgba(255,255,255,0.2)' font-family='monospace' font-size='24'%3E+%3C/text%3E%3Ctext x='70' y='320' fill='rgba(255,255,255,0.2)' font-size='18'%3E↗%3C/text%3E%3Ctext x='250' y='50' fill='rgba(255,90,31,0.2)' font-size='18'%3E↙%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
}

.font-display {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.orange-text {
  color: var(--accent);
}

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

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

/* Background glows */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent);
  filter: blur(250px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.glow-1 { top: -200px; left: -100px; opacity: 0.2; }
.glow-2 { top: 30%; right: -250px; opacity: 0.15; }
.glow-3 { bottom: 0; left: 30%; background: #FF3300; filter: blur(300px); opacity: 0.1; }

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  z-index: 1000;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 60px;
  border-bottom: 1px solid rgba(255, 90, 31, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 40px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-links a {
  color: var(--text-dim);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn-nav {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 30px;
  border-radius: 20px;
  font-family: var(--font-display);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-nav:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 90, 31, 0.5);
}

/* Hero */
.hero {
  display: flex;
  padding: 140px 60px 80px 60px;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left {
  flex: 1;
  z-index: 2;
  position: relative;
}

.hero-left h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtext {
  color: var(--text-dim);
  max-width: 400px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.auction-timer .timer-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.timer-flex {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.time-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
}

.time-unit {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.colon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 5px;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image-wrapper {
  width: 400px;
  height: 550px;
  border-radius: 200px; /* Oval shape */
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 0 30px rgba(255, 90, 31, 0.2);
  margin-bottom: 30px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Floating Elements */
.floating-mini-nfts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mini-nft {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(255, 90, 31, 0.3);
  top: -20px;
  right: 50px;
}
.nft-offset {
  top: auto;
  bottom: 50px;
  left: 300px;
  right: auto;
  width: 60px;
  height: 60px;
}

/* Diagonal Marquee */
.marquee-wrapper {
  position: relative;
  height: 150px;
  margin: 60px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee {
  position: absolute;
  width: 120%;
  left: -10%;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 90, 31, 0.3);
  border-bottom: 1px solid rgba(255, 90, 31, 0.3);
  overflow: hidden;
  white-space: nowrap;
}

.diagonal-1 {
  transform: rotate(-3deg);
  z-index: 1;
}

.diagonal-2 {
  transform: rotate(3deg);
  background: var(--bg);
  z-index: 2;
}

.marquee-content {
  display: inline-block;
  padding: 15px 0;
  animation: scroll-left 20s linear infinite;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.track-2 {
  animation: scroll-right 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-right: 30px;
}

.diamond {
  color: var(--accent);
  font-size: 0.8rem;
}

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

/* Sections */
.section {
  padding: 80px 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.section-top h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtext {
  color: var(--text-dim);
  max-width: 400px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.filters {
  display: flex;
  gap: 15px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px;
  border-radius: 30px;
}

.filter-btn {
  background: transparent;
  color: var(--text-dim);
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.hot-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hover-glow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 90, 31, 0.15);
  border-color: rgba(255, 90, 31, 0.3);
}

.card-owner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.card-owner img {
  width: 24px; height: 24px; border-radius: 50%; object-fit: cover;
}

.card-img-placeholder {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.card-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.card-info p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Top Collections Grid */
.top-collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 20px;
}

.collection-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s;
  cursor: pointer;
}

.col-num {
  font-size: 1.5rem;
  font-weight: 700;
  width: 40px;
}

.col-img img {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
}

.col-text h4 {
  font-family: var(--font-display);
  font-size: 1rem; margin-bottom: 3px;
}
.col-text p {
  color: var(--text-dim); font-size: 0.85rem;
}

/* Bottom CTA */
.bottom-cta-container {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.bottom-cta {
  background: var(--accent);
  width: 100%;
  max-width: 1200px;
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 60px;
}

.cta-image {
  flex: 1;
}

.cta-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cta-content {
  flex: 1.2;
  position: relative;
  z-index: 10;
  text-align: left;
}

.cta-content ul {
  list-style: none;
  margin-bottom: 40px;
}

.cta-content ul li {
  margin-bottom: 15px;
  color: #111;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bottom-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  color: black;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 15px 45px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn-white:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  padding: 40px 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-family: var(--font-display);
}

.footer-left {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-left span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.footer-left a {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-socials a {
  display: inline-block;
  margin-left: 15px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: var(--text-dim);
  font-size: 0.8rem;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.terms a {
  margin-left: 20px;
  transition: 0.3s;
}
.terms a:hover {
  color: var(--accent);
}

.four-cols {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 120px 40px 60px 40px; }
  .section { padding: 60px 40px; }
  .bottom-cta-container { padding: 60px 20px; }
  .hero-right { align-items: center; margin-top: 50px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .four-cols { grid-template-columns: repeat(2, 1fr); }
  .top-collections-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .bottom-cta { flex-direction: column; text-align: center; padding: 50px 30px; gap: 40px; }
  .cta-content { text-align: center; }
  .cta-content ul { text-align: left; display: inline-block; margin: 0 auto 30px auto; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 20px 40px 20px; }
  .section { padding: 50px 20px; }
  .bottom-cta-container { padding: 50px 15px; }
  .navbar { padding: 15px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .four-cols { grid-template-columns: 1fr; }
  
  .hero-left h1 { font-size: 2.2rem; }
  .hero-subtext { font-size: 1rem; margin: 0 auto 30px auto; }
  .timer-flex { justify-content: center; }
  .time-num { font-size: 1.8rem; }
  .colon { font-size: 1.5rem; }
  
  .hero-image-wrapper { width: 100%; max-width: 300px; height: auto; aspect-ratio: 4/5; border-radius: 80px; margin-bottom: 30px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px; width: 100%; }
  .stat-num { font-size: 1.4rem; }
  
  .bottom-cta { padding: 30px 20px; border-radius: 20px; gap: 30px; }
  .bottom-cta h2 { font-size: 1.8rem; }
  .btn-white { padding: 12px 30px; font-size: 0.9rem; }
  
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .footer-left { flex-direction: column; gap: 15px; }
  .footer-socials { margin-top: 10px; }
  .copyright { flex-direction: column; gap: 10px; text-align: center; }
}
