/* GLOBAL */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #000; color: white; font-family: "Poppins", sans-serif; }

/* HEADER */
.header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 999;
  border-bottom: 1px solid #222;
}
.top-logo { height: 46px; }

/* MAIN CONTENT */
.main-content {
  text-align: center;
  margin-top: 120px;
  padding: 15px;
}

.pocetak, .ldb {
  font-size: 48px;
  font-weight: 700;
}
.ldb { color: #FFD700; }

.giving-away { margin-top: 15px; font-size: 20px; }
.bolded { font-weight: 700; color: #FFD700; }

/* CODE TEXT */
.code {
  margin-top: 20px;
  margin-bottom: 2px !important; /* TIGHT SPACING */
  font-size: 22px;
  font-weight: 600;
}
.color { color: #FFD700; }

/* COUNTDOWN */
.countdown {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.time-box {
  background: #111;
  border: 1px solid #333;
  padding: 6px 10px;
  border-radius: 10px;
}

.time-value {
  font-size: 34px !important;
  font-weight: 700;
}

.time-label {
  font-size: 12px !important;
  opacity: .8;
}

/* BUTTON */
.show-winners {
  display: inline-block;
  margin-top: 12px !important;
  padding: 12px 22px;
  background: #FFD700;
  color: #000;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
}

/* LEADERBOARD */
.leaderboard-entry {
  background: #111;
  border: 1px solid #333;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 900px;
}

.leaderboard-header,
.leaderboard-row {
  display: grid;
  grid-template-columns: 70px 2fr 2fr 2fr;
  padding: 10px 0;
}

.header-cell { color: #FFD700; font-weight: 700; }

.leaderboard-row {
  border-bottom: 1px solid #222;
}

.name-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

/* Icons */
.coin-icon, .diamond-icon {
  width: 22px;
  height: 22px;
  margin-left: 4px;
}

/* FOOTER */
.rozilynn-footer {
  text-align: center;
  padding: 30px;
  margin-top: 60px;
  opacity: .8;
}
.rozilynn-footer span { color: #FFD700; }

/* MOBILE */
@media(max-width:600px){
  .top-logo { height: 40px; }
  .main-content { margin-top: 150px; }

  .pocetak, .ldb { font-size: 34px; }

  .time-value { font-size: 28px !important; }
  .time-label { font-size: 11px !important; }

  .leaderboard-header,
  .leaderboard-row {
    grid-template-columns: 45px 1.5fr 1fr 1fr;
  }

  .avatar-img {
    width: 34px;
    height: 34px;
  }
}

/* ---- GLOWING PRIZE ---- */
.prize-glow {
    color: #ffd700; /* gold */
    font-weight: bold;
    text-shadow: 
        0 0 6px #ffd700,
        0 0 10px #ffaa00,
        0 0 14px #ffdd44;
}

/* Make header bold */
.header-cell {
    font-weight: bold !important;
}

/* Make leaderboard text bold */
.leaderboard-row div {
    font-weight: bold;
}
