:root {
      --primary-color: #25d366;
      --secondary-color: #128C7E;
      --accent-color: #ff6b6b;
      --dark-color: #2d3748;
      --light-color: #f8f9fa;
    }
    
    body {
      background: linear-gradient(135deg, #0d6efd, #6c757d);
      min-height: 100vh;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .main-container {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      overflow: hidden;
      max-width: 1200px;
      margin: 20px auto;
    }
    
    .navbar {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }
    
    .page-title {
      color: white;
      font-weight: 700;
      font-size: 1.5rem;
    }
    
    /* Slogan Alanı */
    .slogan-section {
      background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
      color: white;
      padding: 20px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .slogan-text {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
      position: relative;
      z-index: 2;
    }
    
    .slogan-subtext {
      font-size: 1.2rem;
      font-weight: 500;
      opacity: 0.9;
      position: relative;
      z-index: 2;
    }
    
    .auction-icon {
      position: absolute;
      font-size: 8rem;
      opacity: 0.1;
      z-index: 1;
    }
    
    .auction-icon-left {
      left: 5%;
      top: 50%;
      transform: translateY(-50%);
    }
    
    .auction-icon-right {
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
    }
    
    /* Arama Alanı */
    .search-section {
      background: var(--light-color);
      padding: 20px 0;
      border-bottom: 1px solid #dee2e6;
    }
    
    .search-container {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .search-input-group {
      position: relative;
    }
    
    .search-input {
      border-radius: 25px;
      padding: 12px 50px 12px 20px;
      border: 2px solid #e9ecef;
      transition: all 0.3s ease;
    }
    
    .search-input:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
    }
    
    .search-btn {
      position: absolute;
      right: 5px;
      top: 50%;
      transform: translateY(-50%);
      border: none;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .search-btn:hover {
      background: var(--secondary-color);
      transform: translateY(-50%) scale(1.05);
    }
    
    .section-title {
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--primary-color);
    }
    
    .auction-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-bottom: 25px;
      border: none;
      position: relative;
    }
    
    .auction-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .auction-image {
      height: 200px;
      width: 100%;
      object-fit: cover;
      cursor: pointer;
    }
    
    .auction-body {
      padding: 20px;
    }
    
    .auction-title {
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--dark-color);
      margin-bottom: 10px;
    }
    
    .auction-description {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .auction-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .current-bid {
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--accent-color);
    }
    
    .bid-count {
      font-size: 0.85rem;
      color: #888;
    }
    
    /* Sağ üst köşede teklif süresi */
    .auction-timer-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 6px 10px;
      border-radius: 12px;
      font-size: 0.6rem;
      font-weight: 700;
      color: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      z-index: 10;
    }
    
    .timer-expired {
      background: linear-gradient(135deg, #dc3545, #c82333);
    }
    
    .timer-warning {
      background: linear-gradient(135deg, #ffc107, #e0a800);
    }
    
    .timer-normal {
      background: linear-gradient(135deg, #28a745, #20c997);
    }
    
    .timer-info {
      background: linear-gradient(135deg, #17a2b8, #138496);
    }
    
    .timer-primary {
      background: linear-gradient(135deg, #007bff, #0056b3);
    }
    
    /* Alt butonlar yan yana */
    .auction-actions {
      display: flex;
      gap: 8px;
      margin-top: 15px;
    }
    
    .bid-button {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: white;
      border: none;
      border-radius: 6px;
      padding: 8px 12px;
      font-weight: 600;
      flex: 2;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    
    .share-button {
      background: linear-gradient(135deg, #6c757d, #495057);
      color: white;
      border: none;
      border-radius: 6px;
      padding: 8px 12px;
      font-weight: 600;
      flex: 1;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    
    .bid-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    
    .share-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
    }
    
    .bid-button:disabled {
      background: #ccc;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    /* WhatsApp Style Bid Modal */
    .bid-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1050;
      padding: 20px;
    }
    
    .bid-modal-container {
      width: 100%;
      max-width: 500px;
      height: 80vh;
      max-height: 700px;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .bid-modal-header {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: white;
      padding: 15px 20px;
      display: flex;
      align-items: center;
    }
    
    .bid-header-back {
      background: none;
      border: none;
      color: white;
      font-size: 1.2rem;
      margin-right: 15px;
      cursor: pointer;
    }
    
    .bid-user-info {
      display: flex;
      align-items: center;
      flex: 1;
    }
    
    .bid-user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 12px;
      background: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .bid-user-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .bid-user-details {
      flex: 1;
    }
    
    .bid-user-name {
      font-weight: 600;
      font-size: 1.1rem;
    }
    
    .bid-user-status {
      font-size: 0.8rem;
      opacity: 0.9;
    }
    
    .bid-header-actions {
      display: flex;
    }
    
    .bid-action-btn {
      background: none;
      border: none;
      color: white;
      font-size: 1.2rem;
      margin-left: 10px;
      cursor: pointer;
    }
    
    /* Bid Messages Area */
    .bid-messages {
      flex: 1;
      padding: 15px;
      overflow-y: auto;
      background: #e5ddd5;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    }
    
    .message {
      margin-bottom: 15px;
      display: flex;
    }
    
    .message-received {
      justify-content: flex-start;
    }
    
    .message-sent {
      justify-content: flex-end;
    }
    
    .message-bubble {
      max-width: 70%;
      padding: 10px 15px;
      border-radius: 8px;
      position: relative;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    
    .message-received .message-bubble {
      background: white;
      border-top-left-radius: 2px;
    }
    
    .message-sent .message-bubble {
      background: #dcf8c6;
      border-top-right-radius: 2px;
    }
    
    .message-text {
      margin-bottom: 5px;
      word-wrap: break-word;
    }
    
    .message-time {
      font-size: 0.7rem;
      color: #999;
      text-align: right;
    }
    
    .message-received .message-time {
      text-align: left;
    }
    
    .bid-message {
      background: white;
      border-radius: 8px;
      padding: 12px 15px;
      margin-bottom: 15px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    
    .bid-message-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }
    
    .bid-message-title {
      font-weight: 600;
      color: var(--primary-color);
    }
    
    .bid-message-amount {
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--accent-color);
    }
    
    .bid-message-info {
      font-size: 0.85rem;
      color: #666;
    }
    
    /* Bid Input Area */
    .bid-input-container {
      background: #f0f0f0;
      padding: 15px;
      display: flex;
      align-items: center;
    }
    
    .bid-input-wrapper {
      flex: 1;
      display: flex;
      background: white;
      border-radius: 20px;
      padding: 5px 15px;
      margin-right: 10px;
    }
    
    .bid-input {
      flex: 1;
      border: none;
      outline: none;
      padding: 8px 0;
      font-size: 1rem;
    }
    
    .emoji-btn, .attachment-btn {
      background: none;
      border: none;
      color: #666;
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0 5px;
    }
    
    .send-btn {
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    
    .send-btn:hover {
      background: var(--secondary-color);
    }
    
    /* Product Info in Modal */
    .product-info-modal {
      background: white;
      border-radius: 8px;
      padding: 15px;
      margin: 15px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .product-info-header {
      display: flex;
      margin-bottom: 10px;
    }
    
    .product-info-image {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 8px;
      margin-right: 15px;
    }
    
    .product-info-details {
      flex: 1;
    }
    
    .product-info-title {
      font-weight: 700;
      margin-bottom: 5px;
    }
    
    .product-info-price {
      font-weight: 700;
      color: var(--accent-color);
      font-size: 1.2rem;
    }
    
    .product-info-description {
      font-size: 0.9rem;
      color: #666;
      margin-top: 10px;
    }
    
    /* Image Slider */
    .image-slider-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1100;
    }
    
    .slider-container {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }
    
    .slider-image {
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
    }
    
    .slider-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(0,0,0,0.5);
      color: white;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1101;
    }
    
    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1101;
    }
    
    .slider-prev {
      left: 20px;
    }
    
    .slider-next {
      right: 20px;
    }
    
    /* Empty State */
    .empty-state {
      text-align: center;
      padding: 40px 20px;
      color: #888;
    }
    
    .empty-state-icon {
      font-size: 4rem;
      margin-bottom: 20px;
      color: #ddd;
    }
    
    .empty-state-text {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .main-container {
        margin: 10px;
      }
      
      .auction-card {
        margin-bottom: 15px;
      }
      
      .bid-modal-overlay {
        padding: 10px;
      }
      
      .bid-modal-container {
        height: 90vh;
        max-height: none;
      }
      
      .slogan-text {
        font-size: 1.8rem;
      }
      
      .slogan-subtext {
        font-size: 1rem;
      }
      
      .auction-icon {
        font-size: 5rem;
      }
      
      .search-input {
        padding: 10px 45px 10px 15px;
      }
      
      .auction-actions {
        flex-direction: column;
        gap: 5px;
      }
      
      .bid-button, .share-button {
        flex: 1;
      }
    }
	/* Slogan Section with Video Background */
.slogan-section {
  position: relative;
  height: 80vh; /* Daha yüksek */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Video Arka Plan */
.slogan-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

/* Video üzerine koyuluk efekti */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.slogan-text {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.slogan-subtext {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 40px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.3s both;
  opacity: 0.9;
}

/* İstatistikler */
.slogan-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Auction Icons */
.auction-icon {
  position: absolute;
  font-size: 12rem;
  opacity: 0.15;
  z-index: 1;
  color: #ffd700;
  animation: float 6s ease-in-out infinite;
}

.auction-icon-left {
  left: 5%;
  top: 20%;
  animation-delay: 0s;
}

.auction-icon-right {
  right: 5%;
  top: 60%;
  animation-delay: 3s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Buton ekleme */
/* Slogan Section with Background Image */
.slogan-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Fallback gradient */
}

/* Arka Plan Resmi */
.slogan-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/img/muzayede.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Paralax efekti */
  z-index: 0;
  opacity: 0.8;
}

/* Alternatif arka plan resimleri (isteğe bağlı) */
.slogan-background.alternative-1 {
  background-image: url('/img/muzayede-bg-1.jpg');
}

.slogan-background.alternative-2 {
  background-image: url('/img/muzayede-bg-2.jpg');
}

/* Resim üzerine koyuluk efekti */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(106, 17, 203, 0.8) 0%,
    rgba(37, 117, 252, 0.7) 50%,
    rgba(106, 17, 203, 0.8) 100%
  );
  z-index: 1;
}

.slogan-text {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slogan-subtext {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 40px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.3s both;
  opacity: 0.9;
  color: #f8f9fa;
}

/* İstatistikler */
.slogan-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 140px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

/* CTA Butonu */
.slogan-cta {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-button {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  padding: 16px 45px;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.7);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Auction Icons */
.auction-icon {
  position: absolute;
  font-size: 12rem;
  opacity: 0.1;
  z-index: 1;
  color: #ffd700;
  animation: float 6s ease-in-out infinite;
}

.auction-icon-left {
  left: 5%;
  top: 20%;
  animation-delay: 0s;
}

.auction-icon-right {
  right: 5%;
  top: 60%;
  animation-delay: 3s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Parallax efekti için */
@media (min-width: 768px) {
  .slogan-background {
    background-attachment: fixed;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slogan-section {
    height: 70vh;
    min-height: 500px;
  }
  
  .slogan-text {
    font-size: 2.5rem;
  }
  
  .slogan-subtext {
    font-size: 1.2rem;
  }
  
  .slogan-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 1;
    min-width: 110px;
    padding: 15px 10px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .auction-icon {
    font-size: 6rem;
  }
  
  .auction-icon-left,
  .auction-icon-right {
    display: none;
  }
  
  .cta-button {
    padding: 14px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .slogan-section {
    height: 80vh;
    min-height: 500px;
  }
  
  .slogan-text {
    font-size: 2rem;
  }
  
  .slogan-subtext {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .slogan-stats {
    gap: 10px;
  }
  
  .stat-item {
    min-width: 90px;
    padding: 12px 8px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}
