﻿/* === MAIN CSS — imports all stylesheets === */
@import url('reset.css');
@import url('variables.css');
@import url('header.css');
@import url('hero.css');
@import url('pricing.css');
@import url('cta.css');
@import url('prizes.css');
@import url('cage-videos.css');
@import url('footer.css');
@import url('sidebar.css');
@import url('modal.css');
@import url('progress.css');
@import url('pix.css');
@import url('responsive.css');

/* === TOP COMPRADORES === */
.top-buyers-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #e00000, #ff3b3b);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin: 16px auto 0;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 4px 14px rgba(217, 137, 30,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  user-select: none;
}
.top-buyers-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 137, 30,0.45);
}
.top-buyers-bar svg { flex-shrink: 0; }

/* Modal overlay */
.top-buyers-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 16px;
}
.top-buyers-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  border: 1px solid #2a0000;
}
.top-buyers-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  line-height: 1;
}
.top-buyers-modal__close:hover { color: #fff; }
.top-buyers-modal__header {
  background: linear-gradient(135deg, #cc0000, #D9891E);
  color: #fff;
  text-align: center;
  padding: 28px 24px 20px;
}
.top-buyers-modal__title {
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 4px;
  color: #fff;
}
.top-buyers-modal__sub {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
  color: #fff;
}
.top-buyers-modal__prize {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  display: inline-block;
  color: #fff;
}
.top-buyers-modal__list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}
.top-buyer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
}
.top-buyer-item--gold { background: #fff8e1; border: 1px solid #ffd54f; }
.top-buyer-item--silver { background: #f5f5f5; border: 1px solid #bdbdbd; }
.top-buyer-item--bronze { background: #fbe9e7; border: 1px solid #ffab91; }
.top-buyer-item__rank { font-size: 22px; width: 28px; text-align: center; flex-shrink: 0; }
.top-buyer-item__info { display: flex; flex-direction: column; flex: 1; }
.top-buyer-item__name { font-weight: 700; font-size: 14px; color: #1a1a1a; }
.top-buyer-item__city { font-size: 11px; color: #999; }
.top-buyer-item__qty { font-weight: 800; font-size: 13px; color: #cc0000; white-space: nowrap; }

/* === GLOBAL STYLES === */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-page);
}

.main-content {
  position: relative;
  overflow-x: hidden;
}
