/* ===== Global Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #000811;
  color: #fff;
  line-height: 1.6;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Header ===== */
.flacto-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(0, 8, 17, 0.7);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: #00ffff;
}
.main-menu a {
  color: #e0e7ff;
  margin: 0 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.main-menu a:hover {
  color: #00ffff;
}
.register-btn {
  padding: 0.9rem 2.5rem;
  background: #00ffff;
  color: #000;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s;
}
.register-btn:hover {
  transform: translateY(-3px);
}

/* ===== Hero Section ===== */
.hero-flacto {
  padding: 160px 0 120px;
  background: linear-gradient(135deg, #001122 0%, #000811 70%);
  position: relative;
  overflow: hidden;
}
.hero-flacto::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(0,255,255,0.25) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.hero-text p {
  font-size: 1.3rem;
  opacity: 0.85;
  margin-bottom: 3rem;
  max-width: 600px;
}
.hero-btns {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}
.btn-primary-cyan {
  padding: 1.2rem 3rem;
  background: #00ffff;
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}
.btn-outline-cyan {
  padding: 1.2rem 3rem;
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}
.creator-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #00ffff;
}
.creator-badge span {
  font-size: 1.1rem;
  opacity: 0.8;
}
.creator-badge p {
  margin-top: 0.5rem;
  color: #00ffff;
}

/* Floating Products */
.floating-products {
  position: relative;
  height: 700px;
}
.product-card {
  position: absolute;
  width: 320px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,255,255,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.product-card img {
  width: 100%;
  height: auto;
}
.product-card span {
  display: block;
  padding: 1.2rem;
  text-align: center;
  background: rgba(0,255,255,0.1);
  font-weight: 600;
}
.price {
  color: #00ffff;
  font-size: 1.1rem;
}
/* Exact Flacto Positions */
.p1 { top: 5%; right: 15%; transform: rotate(-18deg); }
.p2 { top: 25%; right: 0%; transform: rotate(12deg); }
.p3 { top: 55%; right: 20%; transform: rotate(-8deg); }

/* ===== Featured Release ===== */
.featured-release {
  padding: 10rem 0;
  background: #001122;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.featured-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
  border: 1px solid rgba(0,255,255,0.2);
}
.featured-image img {
  width: 100%;
  height: auto;
}
.featured-info .date {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.featured-info h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
}
.featured-info > p {
  font-size: 1.4rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}
.countdown {
  display: flex;
  gap: 3rem;
  margin: 4rem 0;
}
.countdown > div {
  text-align: center;
}
.countdown span {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: #00ffff;
}
.countdown div + div {
  font-size: 1.2rem;
  opacity: 0.7;
}
.owner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0;
}
.owner img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #00ffff;
}
.owner span {
  font-size: 1.3rem;
  color: #00ffff;
}
.btn-view {
  padding: 1.4rem 4rem;
  background: #00ffff;
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0,255,255,0.4);
}

/* ===== Top Products Grid ===== */
.top-products {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #001122, #000811);
}
.top-products h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 5rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.product-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  text-align: center;
  padding: 1.5rem;
}
.product-item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 1rem;
}
.product-item p {
  font-size: 1.4rem;
  margin: 1rem 0;
}
.product-item span {
  display: block;
  opacity: 0.8;
}
.bid {
  color: #00ffff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 1024px) {
  .hero-grid, .featured-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .floating-products {
    display: none; /* Hide floating on tablet/mobile for clean UX */
  }
  .hero-btns, .countdown, .owner {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .main-menu {
    display: none; /* Add hamburger later if needed */
  }
  .hero-text h1 {
    font-size: 3.5rem;
  }
}