/* Default (mobile): Full-width content */
.main-page-content {
  width: 100%;
  padding: 20px; /* Internal spacing */
}

/* Only center on larger screens */
@media (min-width: 768px) {
  .main-page-content {
    max-width: 1200px; /* Adjust to your design */
    margin: 0 auto; /* Center horizontally */
    padding: 20px 40px; /* More horizontal padding */
  }
}


@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem; /* Fixed small size */
    white-space: normal; /* Allow text break */
  }
}


/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #34282C; /* Matches your navbar */
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #5865F2; /* Discord blue */
  border-radius: 6px;
  border: 2px solid #34282C;
}

::-webkit-scrollbar-thumb:hover {
  background: #4752C4; /* Darker blue on hover */
}

/* For Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #5865F2 #34282C;
}


/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, -48%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px 20px;
  gap: 5px;
}

.main-logo {
  width: min(80%, 300px); /* Responsive but max 300px */
  height: auto;
  animation: float 3s ease-in-out infinite;
}

.hero-text {
  max-width: 600px;
}



.tagline {
  font-size: 1.2rem;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  background: #5865F2; /* Discord blurple */
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
}

/* Subtle floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* Pulsing animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-text h1 {
  animation: pulse 2s ease-in-out infinite;
}


.hero-text h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2rem, 6vw, 3rem); /* Smaller font range */
  color: #FFD700;
  text-shadow: 
    2px 2px 0 #FF6B6B, /* Thinner shadow */
    -1px -1px 0 #5865F2;
  letter-spacing: 1px;
  margin: 0; /* Remove default margins */
  line-height: 1; /* Tighter line spacing */
  white-space: nowrap; /* Force single line */
}

/* Gradient text alternative */
.hero-text h1.gradient {
  background: linear-gradient(45deg, #FF9A00, #FF006E, #00C2FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.description {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 20px auto 35px;
  font-weight: 500;
  background: linear-gradient(145deg, #3B3131, #34282C);
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Modern gradient border effect */
.description::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.03));
  
  /* Add both prefixed and standard versions for better compatibility */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
    
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  
  pointer-events: none;
  z-index: -1;
}


/* Subtle animated particles background */
.description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(88, 101, 242, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
  z-index: -1;
  opacity: 0.6;
  animation: particleMove 20s infinite alternate;
}

/* Hover effects */
.description:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, #3B3131, #2E2428);
}

/* Subtle animation for the particles */
@keyframes particleMove {
  0% {
    background-position: 10% 20%, 80% 70%;
  }
  100% {
    background-position: 15% 25%, 85% 75%;
  }
}

/* Highlight for important text */
.description strong {
  color: #9A8F97;
  font-weight: 600;
  background: linear-gradient(90deg, #9A8F97, #C4B8BC);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}



/* Text formatting */
.description {
  word-break: keep-all;
  hyphens: none;
  white-space: pre-line;
}

.description span.no-wrap {
  white-space: nowrap;
  position: relative;
}

.description span.no-wrap::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}