:root {
  --bg-color: #000000;
  --accent-color: #50C878;
  --text-color: #ffffff;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.tally-btn {
  background-color: var(--accent-color);
  color: var(--bg-color);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(80, 200, 120, 0.2);
}

.tally-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
}

.tally-btn:active {
  transform: scale(0.95);
  box-shadow: 0 2px 10px rgba(80, 200, 120, 0.2);
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 2px solid #333;
  background-color: #111;
  color: white;
  font-size: 1.2rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(80, 200, 120, 0.2);
}

/* Modal and Status Overlay */
.overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}

.overlay.visible {
  visibility: visible;
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: #111;
  border: 2px solid var(--accent-color);
  color: white;
}

.overlay-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  margin-bottom: 1rem;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.lang-toggle, .admin-btn {
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}
