body {
  font-family: Arial, sans-serif;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  background-color: #0d1117;
  min-height: 100vh;
}

#mainTitle {
  text-align: center;
  margin: 50px 0;
  color: white;
}

#mainTitle h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.linkContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; 
}

.linkContainer a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  width: auto;
  color: white;
}




.linkContainer a[href*="discord"] {
  background-color: #7289da;
}
.linkContainer a[href*="discord"]:hover {
  opacity: 0.85;
  transform: scale(1.10);
  transition: all 0.3s ease;
}
.linkContainer a[href*="steamcommunity"] {
  background: linear-gradient(135deg, #1b2736 0%, #243357 50%, #193472 100%);
  
}
.linkContainer a[href*="steamcommunity"]:hover {
  opacity: 0.85;
  transform: scale(1.10);
  transition: all 0.3s ease;
}
.hoverButton {
  display: inline-block;
  margin: 5px 0;
  padding: 10px 20px;
  background: linear-gradient(135deg, #1b2736 0%, #243357 50%, #193472 100%);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hoverButton span {
  transition: opacity 0.3s ease;
}

.hoverButton::after {
  content: "1571990998";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  color: white;
}

.hoverButton:hover span {
  opacity: 0;
}

.hoverButton:hover::after {
  opacity: 1;
}
.hoverButton:hover {
  opacity: 0.85;
  transform: scale(1.10);
  transition: all 0.3s ease;
}
.hoverButton.copied::after {
  content: "COPIED";
  opacity: 1 !important;
}

.hoverButton.copied span {
  opacity: 0 !important;
}
#inputSection {
  background: #0d1117;
  
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

#inputSection input {
    background: #5e5e5e;
}
#inputSection input::placeholder {
    color: #a0a0a0;   
}
#inputSection textarea {
    background: #5e5e5e;
}
#inputSection textarea::placeholder {
    color: #a0a0a0;   
}
#inputSection button {
    background: #5e5e5e;
    color: #a0a0a0;
}
#commentWrapper {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
}

#commentSection {
  display: flex;
  flex-direction: column-reverse;
}

.comment {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  color:    white;
}

.comment .author {
  font-weight: bold;
}

.comment .date {
  font-size: 0.8em;
  color: gray;
}

textarea {
  width: 100%;
  height: 60px;
  resize: none;
}
