body {
  background: #111;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-switch button {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}

.lang-switch button:hover {
  color: #fff;
}

.logo {
  display: flex;
  justify-content: center;
  width: 100%;
}

.logo img {
  width: 320px; 
  height: auto;
  display: block;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.countdown {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box {
  background: #1e1e1e;
  padding: 20px 10px;
  border-radius: 8px;
  border: 1px solid #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  width: 100px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e0e0e0;
  text-align: center;
}

.label {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .logo img { width: 160px; }
  .countdown { gap: 10px; }
  .box { width: 75px; font-size: 1.8rem; padding: 15px 5px; }
  .label { font-size: 12px; }
}