/* =========================
   OCS8 RED-GOLD LUXURY THEME
   ========================= */

:root {
  --red: #b40000;
  --gold: #ffcc33;
  --deep-red: #7a0000;
  --text-light: #fff6d1;
}

/* ===== GLOBAL BACKGROUND ===== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, var(--deep-red) 0%, #d11111 30%, var(--gold) 100%);
  background-attachment: fixed;
  background-size: cover;
}

/* ===== HEADER SECTION ===== */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 16px 25px;
  background: transparent;
  color: #fff;
  position: relative;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 12px rgba(255, 204, 0, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(255, 204, 0, 0.8));
}

.hero-text h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 5px 0 8px;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 180, 0, 0.8);
}

.hero-text p {
  margin: 0;
  color: #fff8dd;
  font-size: 1rem;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 6px;
  background: linear-gradient(90deg, #ff0000, #ffcc33, #ff0000);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.7);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== CARD CONTAINER ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== INDIVIDUAL CARD ===== */
.card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
  backdrop-filter: blur(12px);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.6);
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}

.card h2 {
  color: var(--gold);
  margin-top: 5px;
}

/* ===== FEATURE LIST WITH CHECK ICONS ===== */
.features img {
  width: 22px; /* balanced size for mobile + desktop */
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 2px;
  object-fit: contain;

  /* 💎 OCS8 gold accent */
  background: linear-gradient(45deg, var(--gold), #ff8800);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
  filter: drop-shadow(0 0 4px rgba(255, 180, 0, 0.5));

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.features li:hover img {
  transform: scale(1.15);
  box-shadow: 0 0 16px rgba(255, 220, 50, 0.9);
  filter: drop-shadow(0 0 10px rgba(255, 220, 50, 0.9));
}

.features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}
.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 26px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.btn.orange {
  background: linear-gradient(90deg, #ffb100, #ff6a00);
  box-shadow: 0 0 12px rgba(255, 180, 0, 0.6);
}
.btn.blue {
  background: linear-gradient(90deg, #0038ff, #00a2ff);
  box-shadow: 0 0 12px rgba(0, 162, 255, 0.6);
}
.btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* ===== WINNER SHOWCASE ===== */
.winners {
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.25);
  padding: 50px 20px;
  margin: 60px 0;
  border-radius: 12px;
  max-width: 1000px;
  margin-inline: auto;
  backdrop-filter: blur(10px);
}

.winners h2 {
  color: var(--gold);
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
}

.winner-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.winner-gallery img {
  width: 300px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.winner-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.8);
}

/* ===== FOOTER ===== */
footer {
  margin-top: 40px;
  padding: 20px 0;
  color: var(--text-light);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .logo { width: 120px; }
  .hero-text h1 { font-size: 1.5rem; }
  .cards { padding: 20px; gap: 20px; }
  .winner-gallery img { width: 90%; max-width: 320px; }
}



