/* ============================================
   HASTA HAUS — Global Styles
   ============================================ */

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Base */
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Typography */
  h1 { font-size: 28px; font-weight: 500; letter-spacing: -0.01em; }
  h2 { font-size: 20px; font-weight: 500; }
  h3 { font-size: 16px; font-weight: 500; }
  
  /* Layout */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* ============================================
     NAVIGATION
     ============================================ */
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 0.5px solid #2a2a2a;
    margin-bottom: 48px;
  }
  
  .nav-logo {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f0f0f0;
    text-decoration: none;
  }
  
  .nav-logo span {
    color: #666;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .nav-link {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    cursor: pointer;
  }
  
  .nav-link:hover {
    color: #f0f0f0;
  }
  
  /* ============================================
     BUTTONS
     ============================================ */
  
  .btn {
    display: inline-block;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: opacity 0.15s;
  }
  
  .btn:hover { opacity: 0.85; }
  
  .btn-primary {
    background: #f0f0f0;
    color: #0a0a0a;
  }
  
  .btn-outline {
    background: transparent;
    color: #f0f0f0;
    border: 0.5px solid #444;
  }
  
  .btn-outline:hover {
    border-color: #888;
  }
  
  /* ============================================
     LIVE BADGE
     ============================================ */
  
  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e24b4a;
    border: 0.5px solid #e24b4a;
    border-radius: 6px;
    padding: 4px 10px;
  }
  
  .live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e24b4a;
    animation: pulse 1.4s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  
  /* ============================================
     AUCTION CARDS
     ============================================ */
  
  .auction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
  }
  
  .auction-card {
    background: #111;
    border: 0.5px solid #222;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.15s;
    text-decoration: none;
    display: block;
    color: #f0f0f0;
  }
  
  .auction-card:hover {
    border-color: #444;
  }
  
  .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
  }
  
  .card-producer {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
  }
  
  .card-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  
  .card-genre {
    font-size: 12px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .card-divider {
    height: 0.5px;
    background: #1e1e1e;
    margin-bottom: 16px;
  }
  
  .card-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .stat-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 4px;
  }
  
  .stat-value {
    font-size: 16px;
    font-weight: 500;
  }
  
  .stat-timer {
    font-size: 14px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    text-align: right;
  }
  
  /* ============================================
     HERO
     ============================================ */
  
  .hero {
    margin-bottom: 40px;
  }
  
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
  }
  
  .hero-title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  
  .hero-sub {
    font-size: 15px;
    color: #666;
  }
  
  /* ============================================
     SEARCH
     ============================================ */
  
  .search-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
  }
  
  .search-input {
    flex: 1;
    padding: 11px 16px;
    font-size: 14px;
    background: #111;
    border: 0.5px solid #2a2a2a;
    border-radius: 6px;
    color: #f0f0f0;
    outline: none;
  }
  
  .search-input::placeholder {
    color: #444;
  }
  
  .search-input:focus {
    border-color: #555;
  }
  
  /* ============================================
     SECTION LABEL
     ============================================ */
  
  .section-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 16px;
  }
  
  /* ============================================
     FOOTER STRIP
     ============================================ */
  
  .footer-strip {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 0.5px solid #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-text {
    font-size: 12px;
    color: #444;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }