/* ============ blehh.xyz — Discord Blue Theme ============ */

:root {
  --bg: #0A0B10;
  --fg: #E9ECF3;
  --muted: #99AAB5;
  --accent1: #5865F2;   /* Discord blurple */
  --accent2: #7289DA;   /* lighter gradient partner */
  --surface: rgba(255,255,255,0.03);
  --radius: 18px;
  --blur: 18px;
  --shadow: 0 0 60px rgba(88,101,242,0.20);
}

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

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(1000px 500px at 40% 10%, rgba(88,101,242,0.20), transparent 70%),
    radial-gradient(800px 600px at 80% 40%, rgba(114,137,218,0.12), transparent 70%),
    var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ✦ NAV */
.nav {
  width: 100%;
  max-width: 1100px;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent1), var(--accent2));
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  color: #000;
}

.brand {
  font-weight: 700;
  font-size: 17px;
}

.nav-right a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 22px;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-right a:hover {
  color: var(--accent1);
}

/* ✦ HERO */
.hero {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 80px 24px 100px;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.highlight {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: var(--muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* ✦ PREVIEW SHELL */
.preview-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.glass-frame {
  width: min(900px, 90vw);
  height: 600px;
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(var(--blur));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.live-preview {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
  background: #000;
}

.note {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.8;
}

/* ✦ FOOTER */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  width: 100%;
  text-align: center;
  padding: 30px 0 40px;
  color: var(--muted);
  font-size: 13px;
}

/* ✦ Responsive */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 40px; }
  .glass-frame { height: 500px; }
}

.logo-img {
  height: 36px;              /* Adjust as needed */
  width: auto;
  border-radius: 8px;        /* Optional rounded look */
  margin-right: 10px;        /* Space between logo and text */
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.2)); /* Subtle glow */
  vertical-align: middle;
}

