/* Variables */
:root {
  --primary-color: #00A04A;
  --primary-dark: #00803D;
  --white: #ffffff;
  --black: #000000;
  --text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  --transition: all 0.3s ease;
  --border-radius: 25px;
}

/* Base Styles */
body, html {
  height: 100%;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--white);
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../bg.png') no-repeat center center;
  background-size: cover;
  z-index: -2;
  filter: blur(6px) brightness(0.5);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}

.content {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Simple Support Styles */
.simple-support {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem auto;
  max-width: 500px;
}

.contact-method {
  margin-bottom: 2rem;
}

.contact-method h3 {
  margin-bottom: 0.5rem;
}

.email-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 1rem 0;
}

.copy-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.instagram-link {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

.instagram-link:hover {
  color: #E1306C;
}

/* Footer Links */
.footer-links {
  margin-top: 2rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  margin: 0 0.5rem;
}