/* public/css/styles.css */
body {
    visibility: hidden;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-position: center center; /* new */
    background-size: cover; /* new */
    background-attachment: fixed;
    background-repeat: no-repeat;
    transition: background-image 2s ease;
    margin: 0;
    position: relative;
}

#head-container {
    position: absolute;
    top: 0;
    min-height: 40px;
    display: flex;
    width: 100%;
    background-color: #fff;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: space-between; /* Space out items */
    align-items: center; /* Center items vertically */
  }

  /* Centered container for main header items */
  .head-items {
    display: flex;
    gap: 20px; /* Space between center items */
    padding: 0px 10px;
  }

  /* Styling for individual items in the head container */
  .head-item {
    color: #fff; 
    font-size: 16px;
  }

  .lang-links {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 10px;
  }

  /* Individual language link styling */
  .lang-link {
    color: #fff; 
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
}

form {
    background-color: #e0e0e0;
    background: rgba(0,0,0,0.5); /* new */
    color: #fff; /* new */
    margin: 20px;
    padding: 10px;
    width: 61.8%;
    border-radius: 10px; /* Rounded corners */
    text-align: center;
}

.terms-form {
    width: 98%;
    background-color: #f2f2f2;
    color: #000;
    margin: 20px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.title {
  font-family: Leckerli One;
}

.terms-container {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #000;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}

/* --- Footer Links --- */
.footer-link {
    color: #fff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

table {
  background-color: #e0e0e0;
  background: rgba(0,0,0,0.5); /* new */
  color: #fff; /* new */
  margin: 20px;
  padding: 10px;
  border-radius: 10px; /* Rounded corners */
  text-align: center;
}

input {
    display: block;
    margin: 10px auto;
    padding: 8px;
}

note {
    margin: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px; /* Rounded corners */
    width: 61.8%;
    text-align: center;
}

#foot-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 40px;
  background-color: #e0e0e0;
  background: rgba(0,0,0,0.5); /* new */
  color: #fff; /* new */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-links {
  display: flex;
  gap: 10px;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the content */
  padding: 10px 10px;
  text-decoration: none;
  color: #ffffff;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  transition: opacity 0.3s ease;
  width: 160px;  /* Fixed width */
  box-sizing: border-box; /* Include padding in width */
  opacity: 1.0;
}

.social-link:hover {
  opacity: 0.8;
}

.social-link svg {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  filter: brightness(0) invert(1);
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.social-link span {
  width: 100%;
  text-align: center; /* Center text */
}

.x {
  background-color: #000000;
}

.youtube {
  background-color: #FF0000;
}

.apple {
  background-color: #555555;
}

.discord {
  background-color: #5865F2;
}

.reddit {
  background-color: #FF4500;
}
