body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    background: url('../images/background.png') no-repeat center center fixed;
        background-size: auto;
    background-size: cover;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

nav a {
  font-family: 'Raleway', sans-serif;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  margin: 0 8px;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 600;
  font-size: 0.95em;
}

nav a:hover {
  background: #6a0dad;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-icon.tiktok {
  background: #000;
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.twitch {
  background: #9146FF;
}

.social-icon.discord {
  background: #7289DA;
}

.social-icon i {
  margin-right: 8px;
  font-size: 1.3em;
}

.donate-button.paypal {
  background: #0070BA;
  color: #fff;
}

.donate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.donate-button i {
  margin-right: 10px;
  font-size: 1.4em;
}

btn {
    cursor: pointer;
}