/* Import custom font */
@font-face {
  font-family: 'Dystopian';
  src: url('./attached_assets/Sddystopiandemo-GO7xa.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  background: url('./attached_assets/47a2074a58ecefbf4474274026f20a56_1756378153019.gif') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Dystopian', Arial, sans-serif;
  margin: 0;
  padding: 2rem 1rem 4rem;
  display: flex;
  justify-content: center;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(20, 0, 40, 0.6);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff00cc, #7b2ff7, #ff66cc);
  border-radius: 10px;
  border: 2px solid rgba(20, 0, 40, 0.3);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff66cc, #ff00cc, #7b2ff7);
  box-shadow: 0 0 8px rgba(255, 0, 204, 0.5);
  transform: scale(1.1);
}

::-webkit-scrollbar-corner {
  background: rgba(20, 0, 40, 0.6);
}

/* Firefox Scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #7b2ff7 rgba(20, 0, 40, 0.6);
}

/* Safari fallback for scrollbar (uses webkit scrollbar) */
@supports not (scrollbar-width: thin) {
  body {
    overflow-y: scroll;
  }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: -1;
}

.instruction-text {
  font-size: 0.9rem;
  color: #b19cd9;
  margin: 1rem 0 1.5rem 0;
  font-style: italic;
  opacity: 0.8;
}

/* Credits Footer */
.credits-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 0.8rem;
  z-index: 1000;
  border-top: 1px solid rgba(123, 47, 247, 0.3);
}

.credits-footer p {
  color: #b19cd9;
  font-size: 0.75rem;
  margin: 0;
  font-family: Arial, sans-serif;
  font-weight: 500;
}

/* Container */
.container {
  background: rgba(20, 0, 40, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  max-width: 400px;
  width: 100%;
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 1rem 0.5rem 4rem;
  }
  
  .container {
    max-width: 95%;
    padding: 1.5rem 1rem 2.5rem;
    border-radius: 12px;
  }
  
  .avatar {
    width: 120px;
    height: 120px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .link-btn {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  
  .partners-info, .coming-soon-info, .contact-ideas {
    padding: 1rem;
  }
  
  .partners-info p, .coming-soon-info p, .contact-ideas p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 98%;
    padding: 1rem 0.8rem 2rem;
  }
  
  .avatar {
    width: 100px;
    height: 100px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .tagline {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .instruction-text {
    font-size: 0.85rem;
  }
  
  .link-btn {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
  
  .partners-section h2, .coming-soon-section h2 {
    font-size: 1.3rem;
  }
  
  .contact-ideas h3 {
    font-size: 1rem;
  }
  
  .credits-footer p {
    font-size: 0.65rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 450px;
  }
}

@media (min-width: 1025px) {
  .container {
    max-width: 480px;
  }
}

/* Profile image */
.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.25rem; /* Reduced gap */
}

/* Name */
h1 {
  font-size: 2.5rem;
  font-family: 'Dystopian', Arial, sans-serif;
  background: linear-gradient(270deg, #ff00cc, #6600ff, #ff66cc, #9900ff);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: galaxyShift 30s ease infinite; /* Slower animation */
  margin: 0.25rem 0 0.75rem; /* Tightened spacing */
}

/* Gradient animation */
@keyframes galaxyShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tagline {
  font-size: 1.1rem;              /* Slightly bigger */
  color: #e0b3ff;                 /* Soft lavender-pink for readability */
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
}


.link-btn {
  display: block;
  background-color: #7b2ff7; /* Solid purple base */
  color: #f5f5f5;
  text-decoration: none;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  transition: background 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.link-btn:hover {
  background: linear-gradient(90deg, #ff00cc, #7b2ff7, #ff66cc);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 0, 204, 0.6);
}


.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 0.5rem;
  filter: brightness(0) invert(1); /* Makes icons white on dark backgrounds */
}

.follower-count {
  display: block;
  font-size: 0.8rem;
  color: #b19cd9;
  margin-top: 0.2rem;
}

/* Partners Section */
.partners-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(123, 47, 247, 0.3);
}

.partners-section h2 {
  font-size: 1.5rem;
  color: #ff66cc;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Dystopian', Arial, sans-serif;
}

.partners-info {
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.2), rgba(255, 102, 204, 0.1));
  border: 1px solid rgba(255, 102, 204, 0.3);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.partners-info p {
  color: #e0b3ff;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.partners-info strong {
  color: #ff66cc;
  font-weight: bold;
}

.email-link {
  color: #ff66cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #ff00cc;
  text-decoration: underline;
}

/* Contact Ideas Section */
.contact-ideas {
  background: linear-gradient(135deg, rgba(102, 0, 255, 0.15), rgba(255, 102, 204, 0.1));
  border: 1px solid rgba(102, 0, 255, 0.3);
  border-radius: 12px;
  padding: 1.2rem;
  margin-top: 1rem;
  text-align: left;
}

.contact-ideas h3 {
  color: #ff66cc;
  font-size: 1.1rem;
  font-family: 'Dystopian', Arial, sans-serif;
  margin: 0 0 0.8rem 0;
  text-align: center;
}

.contact-ideas p {
  color: #e0b3ff;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.click-reminder {
  color: #ff66cc !important;
  font-size: 0.8rem !important;
  text-align: center;
  margin: 0.8rem 0 0.5rem 0 !important;
  opacity: 0.9;
}

.contact-options {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 102, 204, 0.2);
}

.contact-options p {
  margin: 0.3rem 0;
}

.discord-username-link {
  color: #7289da;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.discord-username-link:hover {
  color: #5865f2;
  text-decoration: underline;
}

.exclusive-roles-btn {
  position: relative;
}

.coming-soon-section .exclusive-roles-btn {
  background-color: #4a4a4a !important;
  opacity: 0.7;
}

.coming-soon-section .exclusive-roles-btn:hover {
  background: linear-gradient(90deg, #666, #4a4a4a, #666) !important;
  transform: scale(1.02);
  box-shadow: 0 0 8px rgba(255, 102, 204, 0.4);
}

.partners-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.partner-btn {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.3), rgba(255, 102, 204, 0.2));
  color: #f5f5f5;
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 102, 204, 0.2);
}

.partner-btn:hover {
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.5), rgba(255, 102, 204, 0.3));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 204, 0.3);
  border-color: rgba(255, 102, 204, 0.5);
}

.partner-info {
  display: flex;
  flex-direction: column;
  margin-left: 0.5rem;
  text-align: left;
}

.partner-name {
  font-size: 0.9rem;
  font-weight: bold;
  color: #ff66cc;
  margin-bottom: 0.1rem;
}

.partner-desc {
  font-size: 0.7rem;
  color: #b19cd9;
  opacity: 0.8;
}

/* Coming Soon Section */
.coming-soon-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(123, 47, 247, 0.3);
}

.coming-soon-section h2 {
  font-size: 1.5rem;
  color: #ff66cc;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Dystopian', Arial, sans-serif;
}

.coming-soon-info {
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.2), rgba(255, 102, 204, 0.1));
  border: 1px solid rgba(255, 102, 204, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.coming-soon-info p {
  color: #e0b3ff;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.coming-soon-info strong {
  color: #ff66cc;
  font-weight: bold;
}

.coming-soon-btn {
  position: relative;
  background-color: #4a4a4a !important;
  opacity: 0.7;
  cursor: not-allowed;
  transition: all 0.3s ease;
}

.coming-soon-btn:hover {
  background: linear-gradient(90deg, #666, #4a4a4a, #666) !important;
  transform: scale(1.02);
  box-shadow: 0 0 8px rgba(255, 102, 204, 0.4);
}

.hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  color: #ff66cc;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.coming-soon-btn:hover .hover-text {
  opacity: 1;
}

.coming-soon-btn:hover .icon,
.coming-soon-btn:hover .coming-soon-badge {
  opacity: 0.3;
}

.coming-soon-badge {
  position: absolute;
  top: -5px;
  right: 10px;
  background: linear-gradient(45deg, #ff00cc, #ff66cc);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: bold;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}


