/* -------------------------------
   🎨 PSL Auction - auction.css
   ------------------------------- */

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  color: white;
}

section {
  padding: 40px 20px;
  text-align: center;
}

h1, h2 {
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 12px 0;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #005f5f, #0a0a0a);
  padding: 60px 20px;
  color: white;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn-primary,
.btn-outline {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #1abc9c;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #16a085;
}

.btn-outline {
  border: 2px solid #1abc9c;
  color: #1abc9c;
  background: transparent;
}

.btn-outline:hover {
  background-color: #1abc9c;
  color: white;
}

/* Countdown Section */
.countdown #countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.countdown #countdown div {
  background: #111;
  padding: 15px;
  border-radius: 10px;
  width: 90px;
}

#countdown span {
  font-size: 2rem;
  display: block;
}

#countdown label {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #ccc;
}

.date-info {
  margin-top: 10px;
  font-size: 1rem;
  color: #aaa;
}

/* Rules Section */
.rules ul {
  text-align: left;
  max-width: 600px;
  margin: auto;
}

.rules li::before {
  content: "✅ ";
}

/* Toggle Buttons */
.toggle-btn,
.home-toggle-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #1abc9c;
  border: none;
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  z-index: 999;
  margin-left: 10px;
}

.home-toggle-btn {
  right: auto;
  left: 20px;
}

/* Footer */
#global-footer {
  margin-top: 40px;
}

/* AOS Animation Fix */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

/* -----------------------------
   🔁 Responsive Breakpoints
   ----------------------------- */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .btn-primary, .btn-outline {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .countdown #countdown div {
    width: 70px;
    padding: 10px;
  }

  #countdown span {
    font-size: 1.5rem;
  }

  .rules ul {
    padding: 0 15px;
  }

  .toggle-btn,
  .home-toggle-btn {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 20px;
  }

  .hero {
    padding: 40px 15px;
  }

  h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 1rem;
    width: 90%;
    max-width: 300px;
    padding: 12px 16px;
    box-sizing: border-box;
    text-align: center;
  }

  .countdown #countdown {
    gap: 10px;
    padding: 10px;
    justify-content: center;
    text-align: center;
  }

  .countdown #countdown div {
    width: 65px;
    padding: 8px;
    font-size: 0.9rem;
  }

  #countdown span {
    font-size: 1.2rem;
  }

  #countdown label {
    font-size: 0.7rem;
  }

  .date-info {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .toggle-btn,
  .home-toggle-btn {
    top: 10px;
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .rules ul {
    font-size: 1rem;
  }
}

/* Auction Rules */
/* .rules {
  background: rgba(0, 128, 128, 0.1);
  border: 1px solid #1abc9c;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 700px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rules ul li {
  padding: 8px 0;
  font-size: 1.05rem;
  text-align: left;
}

.rules ul ul {
  margin-top: 8px;
  padding-left: 20px;
  font-size: 0.95rem;
} */

/* Rules Container */
/* .rules-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.rules {
  background: #111;
  border: 2px solid teal;
  border-radius: 10px;
  padding: 30px 20px;
  flex: 1 1 45%;
  min-width: 280px;
  box-sizing: border-box;
  text-align: left;
}

.rules h2 {
  margin-bottom: 20px;
}

.rules ul {
  padding-left: 20px;
}

.rules li {
  margin-bottom: 10px;
  line-height: 1.5;
} */


/* Tabs Wrapper */
.rules-tabs {
  max-width: 1000px;
  margin: auto;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(26, 188, 156, 0.4);
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  justify-content: center;
  background: #0a0a0a;
  border-bottom: 2px solid #1abc9c;
}

.tab-buttons button {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  color: white;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.tab-buttons button.active {
  background-color: #1abc9c;
  color: #000;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 30px 20px;
  text-align: left;
}

.tab-content.active {
  display: block;
}

/* List Styling */
.tab-content ul {
  list-style: none;
  padding: 0;
}

.tab-content li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .tab-buttons {
    flex-direction: column;
  }

  .tab-buttons button {
    font-size: 0.95rem;
    padding: 10px;
  }

  .tab-content {
    padding: 20px 15px;
  }
}

/* Tabs */
.rules-tabs {
  background-color: #0f0f0f;
  border: 2px solid #1abc9c;
  padding: 30px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 40px auto;
}

.rules-tabs .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.rules-tabs .tab {
  background: #1abc9c;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.rules-tabs .tab.active {
  background: #16a085;
}

.rules-tabs ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.rules-tabs li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.rules-tabs li ul {
  padding-left: 20px;
  margin-top: 5px;
}

.rules-tabs li ul li {
  font-size: 1rem;
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .rules-tabs {
    padding: 20px;
  }

  .rules-tabs .tab {
    font-size: 0.95rem;
    padding: 8px 16px;
  }

  .rules-tabs li {
    font-size: 1rem;
  }
}

/* Animation for the paw icon */
/* 🐾 Bounce Animation */
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .closing-message {
    background: rgba(26, 188, 156, 0.1);
    border: 1px solid #1abc9c;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .closing-message .icon {
    display: inline-block;
    animation: bounce 1.5s infinite;
    margin-right: 8px;
  }