
:root {
  --background: #1a1814;
  --foreground: #f5f2ee;
  --card: #262220;
  --card-foreground: #f5f2ee;
  --popover: #262220;
  --popover-foreground: #f5f2ee;
  --primary: #f97316;
  --primary-foreground: #fcfcfd;
  --secondary: #f9d5aa;
  --secondary-foreground: #1e1d1d;
  --muted: #332d29;
  --muted-foreground: #b3aca7;
  --accent: #332d29;
  --accent-foreground: #f5f2ee;
  --destructive: #e54d4d;
  --destructive-foreground: #fcfcfd;
  --border: #332d29;
  --input: #332d29;
  --ring: #f97316;
  --radius: 1rem;
  
  --maerona: #f97316;
  --maerona-light: #f9a566;
  --maerona-dark: #c45a10;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

.app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  border-radius: 9999px;
  padding: 0.5rem;
}

.navigation {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.main-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 1rem 2rem 1rem;
  position: relative;
  text-align: center;
}

.tagline {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.logo-title {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s;
  margin-bottom: 2rem;
}

.logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--maerona-light), var(--maerona), var(--maerona-dark));
  filter: blur(24px);
  transition: all 0.5s;
  opacity: 0;
  transform: scale(0.9);
}

.logo-title:hover .logo-glow {
  opacity: 0.3;
  transform: scale(1.5);
}

.logo-text {
  position: relative;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  background: linear-gradient(to right, var(--maerona-dark), var(--maerona), var(--maerona-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.5s;
  text-shadow: 0 0 20px rgba(249, 115, 22, 0.4), 
              0 0 40px rgba(249, 115, 22, 0.2);
}

.logo-title:hover .logo-text {
  letter-spacing: 0.01em;
}

.logo-colon {
  color: var(--maerona-dark);
  transition: all 0.5s;
}

.logo-title:hover .logo-colon {
  margin-left: 0.25rem;
}

.logo-line-container {
  position: relative;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.logo-line {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--maerona-dark), transparent);
  transition: all 0.5s ease-out;
  width: 0;
}

.logo-title:hover .logo-line {
  width: 100%;
}

.logo-hover-text {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: rgba(196, 90, 16, 0.8);
  white-space: nowrap;
  transition: all 0.5s;
  opacity: 0;
}

.logo-title:hover .logo-hover-text {
  opacity: 1;
}

.hero-description {
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(245, 242, 238, 0.8);
  margin-bottom: 3rem;
}

.text-link {
  color: var(--maerona-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.text-link:hover {
  border-bottom-color: var(--maerona-light);
}

.nav-link:hover,
.nav-link.active {
  color: var(--foreground);
  background-color: rgba(249, 115, 22, 0.2);
}

.server-info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.server-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.server-version {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-top: -0.5rem;
}

.server-ip-wrapper {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.server-ip-wrapper:hover {
  transform: scale(1.05);
  border-color: rgba(249, 115, 22, 0.5);
}

.server-ip-wrapper span {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--maerona-light);
}

.copy-icon {
  margin-left: 1rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.server-ip-wrapper:hover .copy-icon {
  color: var(--maerona-light);
}

.copy-success-message {
  margin-top: 0.5rem;
  color: var(--maerona);
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  height: 1em;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 1rem;
  width: 100%;
  max-width: 1200px;
}

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--muted);
  color: var(--maerona);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.glass-effect {
  backdrop-filter: blur(12px);
  background-color: rgba(38, 34, 32, 0.3);
  border: 1px solid rgba(245, 242, 238, 0.1);
  box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.5);
}

.footer {
  width: 100%;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(245, 242, 238, 0.6);
  position: relative;
  z-index: 10;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.aprexa {
  display: inline-block;
  color: white;
  text-decoration: none;
}

.download-plaque {
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  color: var(--foreground);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-plaque:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px -15px rgba(249, 115, 22, 0.3);
}

.download-icon {
  color: var(--maerona);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.download-icon svg {
  width: 48px;
  height: 48px;
}

.download-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-title {
  font-size: 1.75rem;
  font-weight: 600;
}

.download-size {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.virus-check-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.virus-check-link:hover {
  color: var(--maerona-light);
  border-bottom-color: var(--maerona-light);
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 7rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .logo-text {
    font-size: 9rem;
  }
  
  .features {
    padding: 0 2rem;
  }
}