* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #f8fafc; 
    min-height: 100vh;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.title {
    font-family: 'Monsterrat', sans-serif;
    font-size: 2.5rem;
}

.text-secondary {
    color: #94a3b8;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(15, 23, 42, 0.8);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    height: 4rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-weight: 700;
    color: #f8fafc;
    text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: #f8fafc;
}

.nav-link.active {
  color: #85cdca;
  font-weight: 600;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: clamp(480px, 100vh, 860px);
    padding: 3rem 2rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background-color: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.main-logo {
    width: 600px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.9rem;
    background-color: #42edf2;
    color: #09090b;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    max-width: 1100px;
    max-height: 550px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-media, .feature-text {
    flex: 1;
}

.feature-media {
    border-radius: 24px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

@media (max-width: 800px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }
}

.feature-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.feature-text p {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 1.75rem;
}

.discord-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: #5865F2;
  border-radius: 24px;
  padding: 3rem;
  max-width: 1100px;
  margin: 3rem auto;
}

.discord-text {
  flex: 1;
  max-width: 60ch;
}

.discord-banner .cta-button {
  background-color: rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.discord-banner .cta-button:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.discord-text h2 { margin: 0.75rem 0 0.5rem; }
.discord-text p  { font-size: 1.05rem; color: rgba(255, 255, 255, 0.85); }
/* 
.media-magic  { background: linear-gradient(135deg, #287e78, #11a89c); }
.media-builds { background: linear-gradient(135deg, #aa5f1d, #964507); }
.media-community { background: linear-gradient(135deg, #4c1d95, #6d28d9); } */

.site-footer {
  margin-top: 5rem;
  padding: 4rem 2rem 2rem;
  background-color: #0b1120;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  color: #94a3b8;
  max-width: 30ch;
  line-height: 1.6;
}

.footer-col h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #85cdca;
}

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: #64748b;
  font-size: 0.8rem;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}