<<<<<<< HEAD
:root {
  --bg: #07111f;
  --bg-soft: #0c1b31;
  --panel: rgba(168, 85, 247, 0.08);
  --panel-strong: rgba(168, 85, 247, 0.14);
  --line: rgba(168, 85, 247, 0.16);
  --text: #edf4ff;
  --muted: #9eb0ca;
  --accent: #c084fc;
  --accent-strong: #a855f7;
  --accent-darker: #7e22ce;
  --success: #77d6a0;
  --danger: #ff7c7c;
  --warning: #fbbf24;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow: 0 20px 60px rgba(2, 10, 25, 0.38);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.15), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(192, 132, 252, 0.10), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #09172a 45%, #081321 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 95%);
}

/* ── Header ────────────────────────────────────── */
.dashboard-header {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 200ms ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #06111f;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.24);
}

.brand-copy {
  display: none;
}

.brand-copy strong {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .brand-copy {
    display: grid;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.user-greeting {
  color: var(--muted);
  font-size: 0.95rem;
}

.user-greeting strong {
  color: var(--text);
  font-weight: 600;
}

.btn-sign-out {
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.btn-sign-out:hover {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-strong);
}

/* ── Dashboard Content ────────────────────────────────────── */
.dashboard-content {
  flex: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.dashboard-section {
  margin-bottom: 4rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h1 {
  margin: 0 0 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* ── Hero Section ────────────────────────────────────── */
.hero-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(168, 85, 247, 0.24);
  border-radius: 24px;
  padding: 3rem 2rem !important;
}

.hero-section .section-header {
  margin-bottom: 2rem;
}

.hero-section h1 {
  font-size: 2.5rem;
}

.hero-section .section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.75rem auto 0;
}

.btn-start-deobfuscating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  color: #06111f;
  border: none;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.28);
}

.btn-start-deobfuscating:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(168, 85, 247, 0.36);
}

.btn-icon {
  font-size: 1.5rem;
}

.btn-arrow {
  font-size: 1.5rem;
  transition: transform 200ms ease;
}

.btn-start-deobfuscating:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── Dashboard Grid ────────────────────────────────────── */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dashboard-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.04));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 200ms ease;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%);
  pointer-events: none;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.06));
}

.card-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-value {
  margin: 0.5rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.btn-secondary {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Features Grid ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.04));
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 200ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.06));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.feature-card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.feature-link:hover {
  color: var(--accent-strong);
}

/* ── Security Grid ────────────────────────────────────── */
.security-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.04));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 200ms ease;
}

.security-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%);
  pointer-events: none;
}

.security-item:hover {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.06));
}

.security-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.security-content {
  flex: 1;
}

.security-content h3 {
  margin: 0 0 0.3rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.security-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.security-item .btn-secondary {
  margin: 0;
  flex-shrink: 0;
}

/* ── Status Badge ────────────────────────────────────── */
.status-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
}

.status-active {
  background: rgba(119, 214, 160, 0.12);
  color: #a8f5d4;
}

/* ── Footer ────────────────────────────────────── */
.dashboard-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .dashboard-content {
    padding: 2rem 1.5rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .security-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .security-item .btn-secondary {
    width: 100%;
  }

  .section-header h1 {
    font-size: 1.5rem;
  }
}

/* ── Discord CTA ────────────────────────────────────── */
.discord-cta-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(88, 101, 242, 0.12), rgba(88, 101, 242, 0.06));
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
}

.discord-cta-card:hover {
  border-color: #5865F2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.2), 0 0 40px rgba(88, 101, 242, 0.1);
  transform: translateY(-2px);
}

.discord-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%);
  pointer-events: none;
}

.discord-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.discord-cta-icon {
  color: #5865F2;
  flex-shrink: 0;
  animation: pulseDiscordIcon 3s ease-in-out infinite;
}

@keyframes pulseDiscordIcon {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.discord-cta-text {
  flex: 1;
  min-width: 200px;
}

.discord-cta-text h3 {
  margin: 0 0 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.discord-cta-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-discord-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  background: #5865F2;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms ease;
  flex-shrink: 0;
  animation: pulseDiscordBtn 3s ease-in-out infinite;
}

.btn-discord-cta:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(88, 101, 242, 0.4);
}

@keyframes pulseDiscordBtn {
  0%, 100% { box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3); }
  50% { box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3), 0 0 30px rgba(88, 101, 242, 0.25); }
}

@media (max-width: 768px) {
  .discord-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .btn-discord-cta {
    width: 100%;
    justify-content: center;
  }
}
=======
:root {
  --bg: #07111f;
  --bg-soft: #0c1b31;
  --panel: rgba(168, 85, 247, 0.08);
  --panel-strong: rgba(168, 85, 247, 0.14);
  --line: rgba(168, 85, 247, 0.16);
  --text: #edf4ff;
  --muted: #9eb0ca;
  --accent: #c084fc;
  --accent-strong: #a855f7;
  --accent-darker: #7e22ce;
  --success: #77d6a0;
  --danger: #ff7c7c;
  --warning: #fbbf24;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow: 0 20px 60px rgba(2, 10, 25, 0.38);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.15), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(192, 132, 252, 0.10), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #09172a 45%, #081321 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 95%);
}

/* ── Header ────────────────────────────────────── */
.dashboard-header {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 200ms ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #06111f;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.24);
}

.brand-copy {
  display: none;
}

.brand-copy strong {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .brand-copy {
    display: grid;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.user-greeting {
  color: var(--muted);
  font-size: 0.95rem;
}

.user-greeting strong {
  color: var(--text);
  font-weight: 600;
}

.btn-sign-out {
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.btn-sign-out:hover {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-strong);
}

/* ── Dashboard Content ────────────────────────────────────── */
.dashboard-content {
  flex: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.dashboard-section {
  margin-bottom: 4rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h1 {
  margin: 0 0 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* ── Hero Section ────────────────────────────────────── */
.hero-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(168, 85, 247, 0.24);
  border-radius: 24px;
  padding: 3rem 2rem !important;
}

.hero-section .section-header {
  margin-bottom: 2rem;
}

.hero-section h1 {
  font-size: 2.5rem;
}

.hero-section .section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.75rem auto 0;
}

.btn-start-deobfuscating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  color: #06111f;
  border: none;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.28);
}

.btn-start-deobfuscating:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(168, 85, 247, 0.36);
}

.btn-icon {
  font-size: 1.5rem;
}

.btn-arrow {
  font-size: 1.5rem;
  transition: transform 200ms ease;
}

.btn-start-deobfuscating:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── Dashboard Grid ────────────────────────────────────── */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dashboard-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.04));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 200ms ease;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%);
  pointer-events: none;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.06));
}

.card-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-value {
  margin: 0.5rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.btn-secondary {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Features Grid ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.04));
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 200ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.06));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.feature-card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.feature-link:hover {
  color: var(--accent-strong);
}

/* ── Security Grid ────────────────────────────────────── */
.security-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.04));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 200ms ease;
}

.security-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%);
  pointer-events: none;
}

.security-item:hover {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.06));
}

.security-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.security-content {
  flex: 1;
}

.security-content h3 {
  margin: 0 0 0.3rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.security-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.security-item .btn-secondary {
  margin: 0;
  flex-shrink: 0;
}

/* ── Status Badge ────────────────────────────────────── */
.status-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
}

.status-active {
  background: rgba(119, 214, 160, 0.12);
  color: #a8f5d4;
}

/* ── Footer ────────────────────────────────────── */
.dashboard-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .dashboard-content {
    padding: 2rem 1.5rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .security-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .security-item .btn-secondary {
    width: 100%;
  }

  .section-header h1 {
    font-size: 1.5rem;
  }
}

/* ── Discord CTA ────────────────────────────────────── */
.discord-cta-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(88, 101, 242, 0.12), rgba(88, 101, 242, 0.06));
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
}

.discord-cta-card:hover {
  border-color: #5865F2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.2), 0 0 40px rgba(88, 101, 242, 0.1);
  transform: translateY(-2px);
}

.discord-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%);
  pointer-events: none;
}

.discord-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.discord-cta-icon {
  color: #5865F2;
  flex-shrink: 0;
  animation: pulseDiscordIcon 3s ease-in-out infinite;
}

@keyframes pulseDiscordIcon {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.discord-cta-text {
  flex: 1;
  min-width: 200px;
}

.discord-cta-text h3 {
  margin: 0 0 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.discord-cta-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-discord-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  background: #5865F2;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms ease;
  flex-shrink: 0;
  animation: pulseDiscordBtn 3s ease-in-out infinite;
}

.btn-discord-cta:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(88, 101, 242, 0.4);
}

@keyframes pulseDiscordBtn {
  0%, 100% { box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3); }
  50% { box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3), 0 0 30px rgba(88, 101, 242, 0.25); }
}

@media (max-width: 768px) {
  .discord-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .btn-discord-cta {
    width: 100%;
    justify-content: center;
  }
}
>>>>>>> fe63987ffb4cf6ba9ae00474ebd30944e190e48f
