/* BURNT ENDS - Dark Premium Theme */

:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-input: #1f1f1f;

  --accent-primary: #c9a227;
  --accent-gold: #d4a574;
  --accent-green: #25D366;

  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-muted: #555555;

  --border-color: #333333;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Courier New', monospace;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.4;
  overflow-x: hidden;
}

/* Page System */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ==================== LANDING PAGE - SCROLLABLE ==================== */
.landing-scroll {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg-primary);
  padding-bottom: 100px; /* Space for fixed CTA */
}

/* Fixed Header */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--spacing-lg);
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--text-primary);
  text-transform: uppercase;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255, 107, 0, 0.2);
  border: 1px solid var(--accent-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-primary);
}

.live-badge.hidden {
  display: none;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

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

/* Hero Section */
.landing-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.landing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.landing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.landing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  padding: var(--spacing-lg);
  z-index: 10;
  text-align: center;
}

.landing-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.landing-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* Content Sections - Full Width with Fade */
.content-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.1) 30%,
    rgba(10, 10, 10, 0.4) 60%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.section-text {
  position: relative;
  z-index: 10;
  padding: var(--spacing-xl) var(--spacing-lg);
  padding-bottom: var(--spacing-2xl);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Footer */
.landing-footer {
  padding: var(--spacing-2xl) var(--spacing-lg);
  padding-bottom: var(--spacing-3xl);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.social-icon:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Fixed CTA Button */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md) var(--spacing-lg);
  padding-bottom: calc(var(--spacing-md) + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.9) 80%, transparent 100%);
  z-index: 99;
  text-align: center;
}

.btn-enter-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
  padding: var(--spacing-md) var(--spacing-2xl);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  width: 100%;
  max-width: 320px;
}

.btn-enter-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-enter-outline:active {
  transform: scale(0.98);
}

/* ==================== BIDDING PAGE ==================== */
#bidding-page {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

/* Full-width chicken background */
.bidding-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 300px;
  overflow: hidden;
}

.bidding-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bidding-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bidding-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.1) 30%,
    rgba(10, 10, 10, 0.5) 70%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 2;
}

.bidding-hero-content {
  position: absolute;
  top: var(--spacing-xl);
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding: 0 var(--spacing-lg);
}

.bidding-container {
  position: relative;
  z-index: 10;
  padding: var(--spacing-lg);
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  margin-top: -60px;
}

/* Edge Navigation Arrows */
.edge-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 100px;
  background: rgba(26, 26, 26, 0.8);
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edge-nav-left {
  left: 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding-left: var(--spacing-xs);
}

.edge-nav-right {
  right: 0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  padding-right: var(--spacing-xs);
}

.edge-nav:hover {
  background: rgba(201, 162, 39, 0.3);
}

.edge-nav:active {
  background: rgba(201, 162, 39, 0.5);
}

/* Hover tooltip for navigation */
.edge-nav::after {
  content: attr(data-tooltip);
  position: absolute;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.edge-nav-left::after {
  left: 100%;
  margin-left: var(--spacing-xs);
}

.edge-nav-right::after {
  right: 100%;
  margin-right: var(--spacing-xs);
}

.edge-nav:hover::after {
  opacity: 1;
}

.edge-nav-icon {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.edge-nav:hover .edge-nav-icon {
  opacity: 1;
}

.timer-section {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.timer-context {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
}

.timer-display {
  font-family: var(--font-family);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 1px;
}

.bid-display {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.current-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.last-bidder {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: var(--spacing-xs);
}

/* Bird Info Card */
.bird-info-card {
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  border: 1px solid var(--border-color);
}

.bird-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--spacing-sm);
}

.bird-info-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.bird-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.bird-info-label {
  color: var(--text-muted);
}

.bird-info-value {
  color: var(--text-primary);
  font-weight: 500;
}

.bird-status-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  color: var(--accent-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: var(--spacing-xs);
}

.bird-status-badge.sold {
  background: rgba(255, 68, 68, 0.2);
  color: #ff4444;
}

/* Swipe Indicator */
.swipe-indicator {
  text-align: center;
  margin: var(--spacing-lg) 0;
}

.swipe-text {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
}

/* Bird Indicators */
.bird-indicators {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

.indicator {
  width: 10px;
  height: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}

.indicator:hover {
  background: var(--bg-input);
}

.indicator.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.indicator.sold {
  background: var(--text-muted);
  border-color: var(--text-muted);
}

.bid-controls {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  width: 100%;
  margin-bottom: var(--spacing-md);
}

.btn-adjust {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-adjust:hover {
  background: var(--bg-input);
  border-color: var(--accent-primary);
}

.btn-adjust:active {
  transform: scale(0.95);
}

.bid-input-wrapper {
  flex: 1;
  position: relative;
}

.bid-label {
  position: absolute;
  top: -8px;
  left: 12px;
  background: var(--bg-primary);
  padding: 0 var(--spacing-xs);
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  text-decoration-color: var(--accent-primary);
}

.bid-input {
  width: 100%;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-mono);
}

.btn-place-bid {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #cc5500 100%);
  color: var(--text-primary);
  border: none;
  padding: var(--spacing-md);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: var(--spacing-lg);
}

.btn-place-bid:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-place-bid:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.buy-now-section {
  text-align: center;
  width: 100%;
}

.skip-text {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

.btn-buy-now {
  width: 100%;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: var(--spacing-md);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-buy-now:hover:not(:disabled) {
  background: var(--bg-input);
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.btn-buy-now:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-sm);
}

.btn-back:hover {
  color: var(--text-secondary);
}

/* ==================== CHECKOUT PAGE ==================== */
.checkout-container {
  min-height: 100vh;
  padding: var(--spacing-lg);
  max-width: 400px;
  margin: 0 auto;
}

.checkout-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.checkout-bird {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.checkout-bird img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.final-price {
  display: flex;
  flex-direction: column;
}

.final-price .price-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.final-price .price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.form-group label .hint {
  font-weight: 400;
  color: var(--text-muted);
}

.form-group input {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.pickup-slots {
  display: flex;
  gap: var(--spacing-sm);
}

.slot-btn {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.slot-btn:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.slot-btn.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

.payment-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  width: 100%;
  background: var(--accent-green);
  color: var(--text-primary);
  border: none;
  padding: var(--spacing-md);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.whatsapp-icon {
  font-size: 1.2rem;
}

/* ==================== REGISTRATION MODAL ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--spacing-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 380px;
  padding: var(--spacing-lg);
}

.register-modal h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  text-align: center;
}

.register-modal p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.register-modal .form-group {
  margin-bottom: var(--spacing-md);
}

.register-modal .btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #cc5500 100%);
  color: var(--text-primary);
  border: none;
  padding: var(--spacing-md);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-top: var(--spacing-md);
  transition: all 0.2s;
}

.register-modal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.register-modal .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* OTP Input Styles */
.phone-input-group {
  display: flex;
  gap: var(--spacing-sm);
}

.phone-input-group input {
  flex: 1;
}

.btn-otp {
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--accent-primary);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-otp:hover:not(:disabled) {
  background: #d4af37;
}

.btn-otp:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.otp-group {
  margin-top: var(--spacing-md);
}

.otp-input-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.otp-input-group input {
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-family: var(--font-mono);
}

.btn-resend {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-resend:hover:not(:disabled) {
  background: var(--accent-primary);
  color: var(--text-primary);
}

.btn-resend:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.otp-hint {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: var(--spacing-xs);
}

/* ==================== TOAST ==================== */
.toast-container {
  position: fixed;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  width: calc(100% - 32px);
  max-width: 350px;
}

.toast {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: toastSlide 0.3s ease;
  border-left: 3px solid var(--accent-primary);
}

.toast.success {
  border-left-color: var(--accent-green);
}

.toast.error {
  border-left-color: #ff4444;
}

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

/* ==================== UTILITIES ==================== */
.btn {
  touch-action: manipulation;
}

.btn:active {
  transform: scale(0.98);
}

/* Cooldown state */
.btn-place-bid.cooldown {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.cooldown-timer {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* Safe area */
@supports (padding: env(safe-area-inset-bottom)) {
  .bidding-container,
  .checkout-container {
    padding-bottom: calc(var(--spacing-2xl) + env(safe-area-inset-bottom));
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .landing-title {
    font-size: 3.5rem;
  }

  .edge-nav {
    width: 60px;
    height: 120px;
  }

  .chicken-showcase {
    max-width: 320px;
  }
}
