@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

body {
  min-height: 100vh;
  margin: 0;
  background: #000000;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.fancy-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fancy-bg span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(40px);
  animation: float 12s infinite alternate;
}

.fancy-bg .circle1 {
  width: 500px; height: 400px;
  background: #A020F0;
  left: -100px; top: -100px;
  animation-delay: 0s;
}
.fancy-bg .circle2 {
  width: 300px; height: 300px;
  background: #A020F0;
  right: -80px; top: 60px;
  animation-delay: 2s;
}
.fancy-bg .circle3 {
  width: 350px; height: 350px;
  background: #A020F0;
  left: 50%; bottom: -120px;
  transform: translateX(-50%);
  animation-delay: 4s;
}

@keyframes float {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.1) translateY(-30px); }
}

.container {
  position: relative;
  z-index: 1;
  background: #000000;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgb(106, 27, 154);
  padding: 48px 36px 36px 36px;
  max-width: 420px;
  text-align: center;
  margin: 32px;
  backdrop-filter: blur(1px);
  border: 2px solid #A020F0;
}

h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  color: #A020F0;
  margin-bottom: 0.3em;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px #6A1B9A;
  animation: fadeInDown 1s cubic-bezier(.77,0,.18,1.01);
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #A020F0;
  margin: 0.5em 0;
}

h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #A020F0;
  margin: 0.5em 0;
}

small {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #A020F0;
  margin: 0.5em 0;
}

li {
  font-family: 'Monsterrat', Arial, sans-serif;
  color: #A020F0;
  margin: 0.5em 0;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px);}
  to { opacity: 1; transform: translateY(0);}
}

p {
  font-size: 1.25rem;
  color: #A020F0;
  margin-top: 0;
  margin-bottom: 1.5em;
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1.01);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

.fancy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 2.2em;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #A020F0;
  background: #000000;
  border: 2px solid #A020F0;
  border-radius: 32px;
  box-shadow: 0 4px 16px #6A1B9A;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.3s;
  margin-top: 1em;
  text-decoration: none;
  margin-right: 0.5em;
  margin-left: 0.5em;
}
.fancy-btn i {
  font-size: 1.3em;
}
.fancy-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px #6A1B9A;
  background: #A020F0;
  color: #000000;
}

@media (max-width: 600px) {
  .container {
    padding: 28px 8px 24px 8px;
    max-width: 98vw;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .fancy-btn {
    padding: 0.7em 1.5em;
    font-size: 0.9rem;
    margin: 0.3em;
  }
  
  .social-links {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: left;
    gap: 0.0em;
}

.solid-separator {
  border: none;
  height: 3px;
  background-color: #A020F0; /* Change to your preferred hex color */
  margin: 20px auto; /* Adds spacing above and below */
  width: 100%;
 }

.social-grid {
  display: flex;
  flex-direction: column;  /* Forces them to stack vertically, one under the other */
  align-items: center;     /* Centers the column inside your box */
  gap: 1px;                /* Puts exactly a 1px gap under each link */
  margin-bottom: 1.5em;    /* Spacing before your separator line */
}

.social-grid a {
  font-size: 1.25rem;      /* Matches your paragraph text size */
  text-decoration: none;   /* Removes standard underlines for a cleaner look */
  padding: 2px 0;          /* Tiny bit of internal breathing room */
}

a:link {
    color: #A020F0 !important;
}

a:visited {
    color: #301934 !important;
}

a {
    color: aqua;
}

