@charset "UTF-8";
/* CSS Document */

/* Center the Silent Auction heading */
.silent-auction-content h2 {
    text-align: center;
    margin-bottom: 15px;
}

/* Center the paragraph text */
.silent-auction-content p {
    text-align: center;
    margin-bottom: 20px;
}
.centered-text p {
    text-align: center;
    margin-bottom: 15px;
}

.silent-auction-heading {
    text-align: center;
    margin-bottom: 20px;
}

/* Your button styles - remove the inline styles! */
.auction-items-button {
    display: block;
    margin: 20px auto;
    background: #007bff;
    color: white;
    padding: 20px 30px;
    border: none;
    border-radius: 4px;
    text-align: center;
    font-size: 30px;
    cursor: pointer;
}

.auction-items-button:hover {
    background: #0056b3;
}

/* If you want consistent spacing */
.silent-auction-content {
    text-align: center;
    margin: 30px 0;
}
.auction-items-button {
    /* Centering */
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    
    /* Button appearance */
    background-color: #007bff !important;
    background: #007bff !important;
    color: white !important;
    color: #ffffff !important;
    
    /* Size & spacing */
    padding: 12px 24px !important;
    width: auto !important;
    max-width: 300px !important;
    
    /* Borders & shape */
    border: none !important;
    border-radius: 4px !important;
    outline: none !important;
    box-shadow: none !important;
    
    /* Text */
    font-size: 30px !important;
    font-weight: normal !important;
    text-decoration: none !important;
    cursor: pointer !important;
    
    /* Positioning */
    position: relative !important;
    float: none !important;
}

.centered-text {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

/* deep seek NUCLEAR COUNTDOWN FIX - This should override everything */
.countdown {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 !important;
  gap: 25px !important;
  flex-wrap: nowrap !important;
}

.clock-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 90px !important;
  text-align: center !important;
}
.count-number {
  font-family: 'Orbitron', monospace !important;
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
  color: #ffffff !important;
  text-shadow: 
    0 0 10px #00ffff,
    0 0 20px #0080ff,
    0 0 30px #0044ff,
    2px 2px 4px rgba(0, 0, 0, 0.7) !important;
  letter-spacing: 3px !important;
  animation: gentle-pulse 3s ease-in-out infinite !important;
}

.count-text {
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  line-height: 1 !important;
  display: block !important;
  font-weight: 600 !important;
  color: #ffff00 !important;
  text-shadow: 
    0 0 8px #ffaa00,
    0 0 15px #ff5500,
    1px 1px 2px rgba(0, 0, 0, 0.8) !important;
  letter-spacing: 1px !important;
}

@keyframes gentle-pulse {
  0%, 100% { 
    text-shadow: 
      0 0 10px #00ffff,
      0 0 20px #0080ff,
      0 0 30px #0044ff,
      2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  50% { 
    text-shadow: 
      0 0 15px #00ffff,
      0 0 25px #0080ff, 
      0 0 35px #0044ff,
      0 0 45px #0000ff,
      2px 2px 4px rgba(0, 0, 0, 0.7);
  }
}

/* Kill any floating nonsense */
.clock-item, .count-number, .count-text {
  float: none !important;
  clear: none !important;
}


/* index page banner button*/

/* Nebula Banner Container */
.nebula-banner-container {
    max-width: 1200px;
    margin: 20px auto;
    margin-bottom: 90px; /* ← Even more padding below */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nebula-banner-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.nebula-video-wrapper {
    position: relative;
    height: 500px; /* Adjust height as needed */
    overflow: hidden;
}

.nebula-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Headline Overlay */
.banner-headline {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.banner-headline h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255,0,0,0.8),
                 0 0 30px rgba(255,0,0,0.6),
                 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0;
}

/* Countdown Clock */
.banner-countdown {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 2;
}

/* Click Prompt */
.click-prompt {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 0 10px #ff0000;
    animation: pulse 2s infinite;
    z-index: 2;
}

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