body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #000 url('../img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

header {
  text-align: center;
  padding: 20px;
  background: linear-gradient(to right, #000000, #0f3b87);
}

.logo {
  width: 100px;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.5rem;
  color: gold;
  margin: 10px 0;
}

.tagline {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 20px;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 10px gold;
}

.countdown {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#countdown-timer {
  color: red;
  font-weight: bold;
  font-size: 2rem;
}

.results {
  text-align: center;
  margin-top: 20px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 1.8rem;
  border-bottom: 1px solid #888;
  padding-bottom: 5px;
}

.result-row .label {
  color: gold;
}

.result-row .number {
  color: cyan;
  font-weight: bold;
  font-size: 2rem;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  from { opacity: 1; }
  to { opacity: 0.3; }
}

.history-link {
  text-align: center;
  margin-top: 30px;
}

.history-link a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
}

.social-share {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.social-share button {
  background-color: gold;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s;
}

.social-share button:hover {
  transform: scale(1.1);
}

footer {
  text-align: center;
  background: #111;
  color: #999;
  padding: 15px;
  font-size: 0.9rem;
}

footer a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
}
