* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #0d1117;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.timer {
  font-size: 1.5rem;
  font-weight: bold;
  color: #58a6ff;
  margin-bottom: 3rem;
}

.contact-banner {
  background: #161b22;
  padding: 2rem 1rem;
  color: #c9d1d9;
  text-align: center;
}

.contact-banner h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #58a6ff;
}

.contact-details {
  font-size: 1rem;
  line-height: 1.6;
}

.map-container {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 10px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

footer {
  padding: 1rem;
  font-size: 0.9rem;
  color: #8b949e;
}