
body { font-family: Arial, sans-serif; margin:0; padding:0; background:#f7f7f7; }
header { background:#0a4d68; color:white; padding:15px; }
nav a { color:white; margin-right:15px; text-decoration:none; }
section { background:white; margin:15px; padding:20px; border-radius:8px; }
.hero { text-align:center; padding:50px; }
.countdown { text-align:center; background:#0a4d68; color:white; }
#countdown-timer { display:flex; justify-content:center; flex-wrap:wrap; gap:15px; font-size:20px; }
#countdown-timer span { background:white; color:#0a4d68; padding:10px; border-radius:5px; min-width:80px; }
form input, form textarea, form button {
    display:block;
    width:100%;
    max-width:500px;
    margin:10px 0;
    padding:10px;
}
button {
    background:#0a4d68;
    color:white;
    border:none;
    cursor:pointer;
}
iframe { border:0; width:100%; }


.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
  color: #0a4d68;
  font-weight: bold;
}

.link-card:hover {
  border-color: #0a4d68;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.link-thumb {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  background: #f1f1f1;
  padding: 4px;
}

.tiktok-feed {
  text-align: center;
}


.link-thumb {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px;
  min-height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: #f3f3f3;
  padding: 6px;
}

.sale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.sale-box {
  border: 3px solid #0a4d68;
  border-radius: 10px;
  padding: 20px;
  background: #ffffff;
}

.sale-box h2 {
  margin-top: 0;
  color: #0a4d68;
}
