<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --color-black-0: #0C080F;
  --color-black-100: #151515;
  --color-white-100: #FFF;
  --color-gray-100: #666666;
  --color-gray-200: #DEDEDE;
  --color-tourquese-100: #3EF5C5;
  --color-rose-100: #F53EAC;
  --color-orange-100: #FFBE3F;
  --color-yellow-100: #f2d01d;
  --color-red-100: #f23545;
  --color-green-100: #0a9981;
  --main-shadow: -30px -10px 145px 0px rgba(201, 241, 250, 0.23), 20px -20px 145px -30px rgba(111, 172, 255, 0.20), -50px 50px 110px -30px rgba(255, 153, 113, 0.33), 70px 70px 80px 0px rgba(132, 0, 255, 0.10);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--color-black-0);
  color: var(--color-white-100);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  padding: 1rem 0 2rem;
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(88.55deg, #C9E7D2 -3.71%, #FCA29B 19.73%, #A039F4 103.42%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

main {
  padding: 1rem 0;
}

.message-card {
  background-color: var(--color-black-100);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--main-shadow);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(88.55deg, #C9E7D2 -3.71%, #FCA29B 19.73%, #A039F4 103.42%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
  color: var(--color-tourquese-100);
}

h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--color-gray-200);
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-gray-200);
}

p {
  margin-bottom: 1rem;
}

.alert {
  display: flex;
  align-items: center;
  background-color: rgba(242, 53, 69, 0.1);
  border: 1px solid var(--color-red-100);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.alert svg {
  color: var(--color-red-100);
  margin-right: 0.8rem;
  flex-shrink: 0;
}

.alert p {
  margin-bottom: 0;
  font-weight: 500;
}

.info-section, .withdrawal-section, .contact-section {
  margin-bottom: 2rem;
}

.code-block {
  background-color: rgba(12, 8, 15, 0.6);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  overflow: auto;
}

pre {
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

code {
  font-family: monospace;
  color: var(--color-gray-200);
}

ol, ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

.contact-button {
  display: inline-block;
  background-color: var(--color-tourquese-100);
  color: var(--color-black-100);
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.contact-button:hover {
  background-color: var(--color-green-100);
  transform: translateY(-2px);
}

footer {
  text-align: center;
  padding: 2rem 0 1rem;
  color: var(--color-gray-100);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .message-card {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .logo-text {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .code-block {
    padding: 1rem;
  }
} </pre></body></html>