body {
  margin: 0;
  background: #0d0d0d;
  color: white;
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

.logo img {
  width: 240px;
  height: auto;
  margin-bottom: 1rem;
}

.headline {
  font-size: 1.2rem;
  text-align: center;
  max-width: 500px;
  margin-bottom: 2rem;
}

.links {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #333;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: background 0.3s;
}

.link-button:hover {
  background: #333;
}

.social-icons {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-size: 1.5rem;
}

.social-icons a {
  color: white;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1db954;
}

footer {
  margin-top: 0.5rem;
  text-align: center;
}

.lang-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #1a1a1a;
  color: white;
  border: 1px solid #333;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.svg-white {
  filter: invert(1);
}

.link-button img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  border-radius: 8px;
  flex-shrink: 0;
}

a:not(.link-button):not(.social-icons a) {
  color: #FFEAC6;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:not(.link-button):not(.social-icons a):visited {
  color: #F5A655;
}

a:not(.link-button):not(.social-icons a):hover,
a:not(.link-button):not(.social-icons a):focus {
  color: #B72610;
  text-decoration: underline;
}

a:not(.link-button):not(.social-icons a):active {
  color: #B72610;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden; /* Prevent background scroll when open */
}

.modal-content {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  color: white;
  position: relative;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  background: #2a2a2a;
  color: white;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.modal-content button {
  background: #B72610;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-button {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

.hidden {
  display: none;
}
