* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #FFF6E6;
  color: #0B0F12;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Header & Navigation === */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 18, 0.92);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
  border-bottom: 1px solid #222;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  align-items: center;
}

.nav-list a {
  color: #FFF6E6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: #CDAA45;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #CDAA45;
  color: #0B0F12;
}
.btn-primary:hover {
  background: #b89535;
  box-shadow: 0 0 12px rgba(205, 170, 69, 0.5);
}

.btn-outline {
  border: 2px solid #CDAA45;
  color: #CDAA45;
}
.btn-outline:hover {
  background: rgba(205, 170, 69, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFF6E6;
  margin: 3px 0;
  transition: 0.3s;
}

/* === Hero === */
.hero {
  padding: 6rem 0 4rem;
  text-align: center;
  background: linear-gradient(rgba(11, 15, 18, 0.85), rgba(11, 15, 18, 0.9)), url('https://images.unsplash.com/photo-1600857544200-b2f666a9a2ec?w=1600') center/cover no-repeat;
  color: #FFF6E6;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.hero-cta .btn {
  margin: 0 0.75rem;
}

/* === Ticker === */
.ticker {
  background: #0B0F12;
  color: #CDAA45;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* === Features === */
.features {
  padding: 4rem 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card h3 {
  margin: 1rem 0 0.5rem;
  color: #CDAA45;
}

/* === Auctions === */
.auction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.auction-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.auction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.auction-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.auction-info {
  padding: 1.25rem;
}
.auction-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.live-badge, .ending-soon {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.85rem;
  border-radius: 4px;
  color: white;
}
.live-badge {
  background: #CDAA45;
}
.ending-soon {
  background: #d32f2f;
}
.countdown {
  margin: 0.5rem 0;
  font-weight: 600;
  color: #0B0F12;
}

/* === Testimonials === */
.testimonials {
  padding: 4rem 0;
  background: #0B0F12;
  color: #FFF6E6;
}
.testimonials h2 {
  color: #CDAA45;
  text-align: center;
  margin-bottom: 2rem;
}
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial {
  opacity: 0;
  animation: fadeIn 0.6s forwards;
}
.testimonial.active {
  opacity: 1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Pricing === */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.plan-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.plan-recommended {
  border: 2px solid #CDAA45;
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #CDAA45;
  color: #0B0F12;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}
.plan-price {
  font-size: 1.75rem;
  margin: 1rem 0;
  color: #0B0F12;
}
.plan-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}
.plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.plan-features li:last-child {
  border-bottom: none;
}

.comparison-table {
  margin-top: 4rem;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.comparison-table th, .comparison-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #ddd;
}
.comparison-table th {
  background: #f9f9f9;
}

/* === FAQ === */
.faq-item {
  margin: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
.faq-question {
  font-size: 1.125rem;
  cursor: pointer;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 0 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.show {
  max-height: 500px;
  padding: 0 0 1.5rem;
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}
.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0 1.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.map-placeholder img {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
}

/* === Footer === */
.footer {
  background: #0B0F12;
  color: #FFF6E6;
  padding: 4rem 0 2rem;
  margin-top: 0rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 {
  color: #CDAA45;
  margin-bottom: 1rem;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin: 0.5rem 0;
}
.footer a {
  color: #FFF6E6;
  text-decoration: none;
  transition: color 0.2s;
}
.footer a:hover {
  color: #CDAA45;
}
.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
}

/* === Modals === */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.otp-notice {
  font-size: 0.95rem;
  color: #0B0F12;
}
.otp-notice .email {
  font-weight: 600;
  color: #CDAA45;
}
.full-width {
  width: 100%;
}
/* === Payment Page === */
.payment-section {
  padding: 3rem 0;
}
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.payment-summary,
/* === Payment Form Styling === */
.payment-form-container h2,
.payment-form-container h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #0B0F12;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0B0F12;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #CDAA45;
  box-shadow: 0 0 0 2px rgba(205, 170, 69, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  transform: scale(1.2);
}

.link-inline {
  color: #CDAA45;
  text-decoration: underline;
  font-weight: 500;
}
.link-inline:hover {
  color: #b89535;
}

/* Responsive for small screens */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.item-preview {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.item-preview img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.escrow-note {
  font-size: 0.875rem;
  color: #CDAA45;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.detail-row.total {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: none;
  margin-top: 0.5rem;
}
.card-row,
.address-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.secure-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}
.full-width {
  width: 100%;
}
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(11, 15, 18, 0.92);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: rgba(11, 15, 18, 0.92);
}


@media (max-width: 900px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}
/* === Responsive === */
@media (max-width: 900px) {
  .hero-title { font-size: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .nav.active .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0B0F12;
    padding: 1rem;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-cta .btn { display: block; margin: 0.5rem auto; width: 80%; }
}

/* === Auth Page Styling === */
.auth-body {
  background: #0B0F12;
  color: #FFF6E6;
}

.auth-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.auth-container {
  width: 100%;
  max-width: 450px;
}

.auth-card {
  background: #0B0F12;
  border: 1px solid rgba(205, 170, 69, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 0 30px rgba(205, 170, 69, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #CDAA45, #FFF6E6, #CDAA45);
  z-index: -1;
  opacity: 0.1;
  filter: blur(20px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.1; }
  50% { opacity: 0.2; }
  100% { opacity: 0.1; }
}

.auth-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: #CDAA45;
  text-align: center;
}

.auth-subtitle {
  color: #FFF6E6;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1rem;
}

.input-group {
  margin-bottom: 1.25rem;
}
.input-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 246, 230, 0.05);
  border: 1px solid rgba(255, 246, 230, 0.1);
  border-radius: 8px;
  color: #FFF6E6;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.input-group input:focus {
  outline: none;
  border-color: #CDAA45;
  box-shadow: 0 0 0 2px rgba(205, 170, 69, 0.2);
  background: rgba(255, 246, 230, 0.08);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}
.form-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.form-options input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #CDAA45;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.form-options input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #CDAA45;
  font-weight: bold;
  font-size: 0.75rem;
}

.forgot-link,
.link-inline {
  color: #CDAA45;
  text-decoration: underline;
  font-weight: 500;
}
.forgot-link:hover,
.link-inline:hover {
  color: #b89535;
}

.glow-button {
  position: relative;
  padding: 0.75rem 1.5rem;
  border: 2px solid #CDAA45;
  background: transparent;
  color: #CDAA45;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(205, 170, 69, 0);
  display: block;
  width: 100%;
  text-align: center;
}
.glow-button:hover {
  background: rgba(205, 170, 69, 0.1);
  box-shadow: 0 0 20px rgba(205, 170, 69, 0.3);
  transform: translateY(-2px);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.auth-footer a {
  color: #CDAA45;
  text-decoration: underline;
  font-weight: 500;
}
.auth-footer a:hover {
  color: #b89535;
}

/* Responsive */
@media (max-width: 600px) {
  .auth-card {
    padding: 1.5rem;
  }
  .auth-title {
    font-size: 1.75rem;
  }
  .form-options {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}