:root {
    --bg-color-light: #ffffff;
    --bg-color-dark: #333333;
    --text-color-light: #333333;
    --text-color-dark: #ffffff;
}

body {
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

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

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

button {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.light-theme {
    background-color: var(--bg-color-light);
    color: var(--text-color-light);
}

.dark-theme {
    background-color: var(--bg-color-dark);
    color: var(--text-color-dark);
}

.social-media {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-media a {
    color: inherit;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #007bff;
}

.text {
    font-size: 1.2rem;
    margin: 2rem 0;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 1.4rem;
}

.links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.links a:hover {
    color: #007bff;
}


.columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.column {
    flex: 1;
    max-width: 45%;
    margin: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

h6 {
    font-size: .4rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}


p {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: justify;
}


@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .text {
        font-size: 1.1rem;
    }

    .links {
        font-size: 1rem;
    }

    .column {
        max-width: 100%;
    }

    p {
        font-size: 1rem;
    }
}


  #payment-wrapper {
    margin: 20px auto;
    position: relative;
    max-width: 300px;
    text-align: center;
  }
  
  #pay-me-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
  }
  
  #pay-me-button:hover {
    background-color: #555;
  }
  
  #payment-dropdown {
    position: absolute;
    width: 100%;
    background-color: #222;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    margin-top: 5px;
    padding: 15px;
    display: none;
  }
  
  /* PayPal specific styling */
  #payment-dropdown #paypal-container-UUXM7FYV9R2Z2 {
    margin-bottom: 10px;
  }

  /* --- Confetti Styles --- */
.confetti {
  position: fixed;
  top: -20px; /* Start off-screen */
  width: 10px;
  height: 10px;
  background-color: #f00; /* Will be overridden by JS */
  opacity: 0.9;
  z-index: 10000;
  pointer-events: none;
  animation: fall linear forwards;
}

@keyframes fall {
  to {
    transform: translateY(105vh) rotate(360deg);
    opacity: 0;
  }
}

#disco-spotlight.flash {
  /* Make it expand dramatically */
  transform: translate(-50%, -50%) scale(2.5); 
  
  /* Make it more solid and brighter */
  opacity: 0.9; 
  
  /* Define how fast the flash happens */
  transition: all 0.1s ease-out;
}

/* --- Crypto Payment Styles --- */
.crypto-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
  max-width: 350px;
}

.crypto-option {
  position: relative;
  cursor: pointer;
}

.crypto-icon {
  width: 50px;
  height: 50px;
  background-color: #333;
  color: white;
  border: 1px solid #555;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
}

.crypto-option:hover .crypto-icon,
.crypto-option.active .crypto-icon {
  background-color: #444;
  border-color: #777;
}

.crypto-details {
  display: none; /* Hidden by default */
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  z-index: 110;
  text-align: center;
}

.crypto-option.active .crypto-details {
  display: block; /* Show on active */
}

.crypto-details p {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.crypto-details img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 6px;
  margin: 0 auto 10px;
  display: block;
  background: white; /* In case QR has transparency */
  padding: 10px;
  box-sizing: border-box;
}

.crypto-address {
  display: flex;
  align-items: center;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 8px;
  font-family: monospace;
  font-size: 12px;
}

.address-text {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.copy-btn {
  background: #333;
  border: 1px solid #555;
  color: #ddd;
  margin-left: 8px;
  padding: 5px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #444;
}

.copy-btn.copied {
  background: #00D632; /* Cash App Green! */
  color: black;
}