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

:root {
  --primary: #405cff;
  --primary-light: rgba(64, 92, 255, 0.2);
  --primary-transparent: rgba(64, 92, 255, 0.66);
  --white: #ffffff;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-90: rgba(255, 255, 255, 0.9);
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --black-50: rgba(0, 0, 0, 0.5);
  --black-70: rgba(0, 0, 0, 0.7);
  --black-90: rgba(0, 0, 0, 0.9);
  --red-500: #ef4444;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

body {
  color: var(--white-90);
  font-family: "Poppins", sans-serif;
  margin: 0;
  user-select: none;
  background-image: url(https://i.imgur.com/ALjhrFv.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #000; /* Fallback color */
  min-height: 100vh;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

a {
  color: var(--white);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.min-h-screen {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

/* Line at the top */
.line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 102, 255, 0.8); 
  box-shadow: 0 0 20px rgba(0, 102, 255, 1); 
  z-index: 50;
}

/* Navbar styles */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.navbar.scrolled {
  background-color: var(--black-70);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logoul {
  display: flex;
  align-items: center;
  margin-left: 70px;
}

.site-name {
  color: var(--white);
  font-weight: bold;
  font-size: 1.25rem;
  margin-left: 0.5rem;
  display: none;
}

@media (min-width: 640px) {
  .site-name {
    display: block;
  }
}

.desktop-menu {
  display: none;
}

@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link-modern {
  padding: 0.5rem 1rem;
  color: var(--gray-300);
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-link-modern:hover {
  color: var(--white);
}

.nav-link-modern::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.nav-link-modern:hover::after {
  width: 100%;
}

.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--white);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.mobile-menu-button:hover {
  background-color: var(--white-10);
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background-color: var(--black-90);
  backdrop-filter: blur(8px);
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem;
  color: var(--white);
  border-radius: 0.5rem;
  margin: 0.25rem 0;
}

.mobile-nav-link:hover {
  background-color: var(--white-10);
}

/* Content styles */
.content-wrapper {
  padding: 5rem 0;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-section {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hero-content {
  width: 100%;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    width: 50%;
    margin-bottom: 0;
    text-align: left;
  }
}

.hero-image {
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-image {
    width: 50%;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.title-line {
  display: block;
  margin: -20px 0;
}


.gradient-text {
  background: linear-gradient(to right, var(--primary), #60a5fa, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--gray-300);
  max-width: 36rem;
  margin: 0 auto 1.5rem auto;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .button-group {
    justify-content: flex-start;
  }
}

.connect-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  background: linear-gradient(to right, var(--primary), #4f74ff, var(--primary));
  background-size: 200% 200%;
  background-position: 0% 0%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 250px;
}

@media (min-width: 640px) {
  .connect-button {
    width: auto;
  }
}

.connect-button:hover {
  background-position: 100% 100%;
}

.connect-button i {
  transition: transform 0.3s ease;
}

.connect-button:hover i {
  transform: translateX(4px);
}

.learn-more-button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--white-10);
  backdrop-filter: blur(4px);
  border: 1px solid var(--white-10);
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  font-weight: 600;
  max-width: 250px;
}

.con {
  font-weight: 600;
}


@media (min-width: 640px) {
  .learn-more-button {
    width: auto;
  }
}

.learn-more-button:hover {
  background-color: var(--white-20);
}

/* Footer styles */
.footer {
  position: relative;
  z-index: 10;
  background-color: var(--black-50);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--white-10);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.copyright {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.made-with-love {
  font-size: 0.875rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
}

.made-with-love i {
  color: var(--red-500);
  margin: 0 0.25rem;
  font-size: 1rem;
}

/* Icon styles */
.fa-heart {
  color: var(--red-500);
}

.fa-arrow-right {
  font-size: 0.875rem;
}

.fa-bars,
.fa-xmark {
  font-size: 1.5rem;
}

.fa-discord,
.fa-youtube,
.fa-facebook-f,
.fa-instagram {
  font-size: 1.125rem;
}

