body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: white;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-title {
  margin: 0;
  text-align: center;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 1px;
  margin-top: 8vh;
  margin-bottom: 24px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 16px;
}

.button-container {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}


.btn {
  display: inline-block;  
  padding: 16px 32px;
  background-color: #2a2a2a;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.2s ease;
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}


@media (min-width: 768px) {
  .btn { white-space: nowrap; }
}

.button-container.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}



.btn:hover {
  background-color: #3a3a3a;
  transform: translateY(-1px);
}

footer {
  margin-top: auto;
  background-color: #1e1e1e;
  position: sticky;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 14px;
  flex-wrap: wrap;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-switch button {
  background: #444;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.lang-switch button:hover {
  background: #666;
}


.button-container.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;   
  gap: 15px;    
}





.site-title,
.button-container .btn {
  font-family: 'Press Start 2P', cursive;
  letter-spacing: 1px;
}



@media (max-width: 360px) {
  .btn {
    width: 100%;
    text-align: center;
  }
}
