:root {
  --bg: #f7fbff;
  --bg-2: #eef6ff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-2: rgba(244, 250, 255, 0.96);
  --border: rgba(37, 99, 235, 0.14);
  --text: #132238;
  --muted: #5f7390;
  --primary: #2563eb;
  --secondary: #7c3aed;
  --accent: #ff7a18;
  --shadow: 0 18px 45px rgba(37, 99, 235, 0.10);
  --radius: 22px;
  --radius-sm: 16px;
  --transition: 0.3s ease;
  --container: 1300px;
}

body.dark-mode {
  --bg: #020617;
  --bg-2: #0b1220;

  --panel: rgba(15, 23, 42, 0.85);
  --panel-2: rgba(15, 23, 42, 0.95);

  --border: rgba(96, 165, 250, 0.15);

  --text: #e5e7eb;
  --muted: #94a3b8;

  --primary: #3b82f6;
  /* brighter blue for dark */
  --secondary: #8b5cf6;
  /* softer purple */
  --accent: #fb923c;
  /* slightly softer orange */

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.6);

  /* keep same */
  --radius: 22px;
  --radius-sm: 16px;
  --transition: 0.3s ease;
  --container: 1300px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 26%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 122, 24, 0.10), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  padding-top: 0 !important;
}

body.dark-mode {
  color: #e5e7eb;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.20), transparent 26%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.20), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 122, 24, 0.15), transparent 30%),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

body.dark-mode {
  --text: #e5e7eb;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-right: 10px;
  color: inherit;
}

/* Optional smoother UI */
body.dark-mode .site-header {
  background: #1e293b;
}

html,
body {
  width: 100%;
  /* overflow-x: hidden; */
  max-width: 100%;
  scroll-behavior: smooth;
}

* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure viewport fits perfectly */
@viewport {
  width: device-width;
}

/* Mobile viewport meta equivalent */
@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
    position: relative;
  }

  body {
    position: relative;
    width: 100vw;
    margin: 0;
    padding: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 28px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.site-header.scrolled {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 18%, white);
  box-shadow: var(--shadow);
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  position: relative;
}

.logo-text {
  position: relative;
  background: linear-gradient(90deg,
      #22d3ee 0%,
      #a78bfa 25%,
      #22d3ee 50%,
      #ec4899 75%,
      #22d3ee 100%);
  background-size: 300% 100%;
  /* Extra wide for continuous flow */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: continuousColorFlow 3s linear infinite;
  font-weight: 900;
}

@keyframes continuousColorFlow {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -200% 0;
    /* Seamless loop */
  }
}

/* Logo Mark */
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  color: #0a1425;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.25);
  transition: all 0.3s ease;
}

.logo:hover .logo-mark {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.4);
}



.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width var(--transition);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  padding: 12px;
  gap: 4px;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.nav-toggle i {
  font-size: 1.3rem;
  color: var(--primary);
  transition: all var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
  transform: scale(1.05);
}

.nav-icon {
  font-size: 1.3rem;
  color: #e7f7ff;
  transition: all 0.3s ease;
}


.hero {
  padding: 84px 0 36px;
}

.hero-content {
  text-align: center;
  max-width: 820px;
}



.hero h1 {
  margin: 0 0 14px;
  font-size: 55px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;

}

.emoji {

  vertical-align: middle;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.title-text {
  text-align: center;
  background: linear-gradient(90deg,
      #1e293b 0%,
      var(--primary) 42%,
      var(--secondary) 75%,
      var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 26px rgba(124, 58, 237, 0.06);
}

body.dark-mode .title-text {
  background: linear-gradient(90deg,
      #e2e8f0 0%,
      /* lighter start instead of dark gray */
      var(--primary) 35%,
      var(--secondary) 65%,
      var(--accent) 100%);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 8px 24px rgba(59, 130, 246, 0.25),
    0 4px 18px rgba(139, 92, 246, 0.25);
}

.hero-text {
  margin: 0 auto;
  max-width: 800px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.preview-section,
.bio-section {
  padding: 24px 0 64px;
}

.bio-section p {
  text-align: center;
}

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(90deg, #1d4ed8 0%, #7c3aed 55%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 12px;
  text-align: center;
}



.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel-card,
.toast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 247, 255, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.14);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.10);
}


.panel-card {
  border-radius: var(--radius);
  padding: 20px;
}

.panel-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #000000;
}

textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  border: 1px solid rgba(0, 234, 255, 0.12);
  border-radius: 18px;
  outline: none;
  padding: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  line-height: 1.7;
}

textarea:focus {
  border-color: rgba(0, 234, 255, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 234, 255, 0.08);
}

.panel-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-clear {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
}


.preview-box {
  min-height: 180px;
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(0, 234, 255, 0.06), transparent 45%, rgba(139, 92, 246, 0.08)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #eafcff;
  line-height: 1.9;
  white-space: pre-wrap;
  word-break: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.preview-rendered {
  width: 100%;
  font-size: 1.15rem;
  line-height: 1.9;
  letter-spacing: 0.4px;
  color: black;
}

.preview-placeholder {
  color: #8ea0c9;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 18px;
}

.card-actions {
  display: flex;
  justify-content: flex-end;
}

.bio-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 28px 88px 28px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 22, 42, 0.96), rgba(10, 16, 34, 0.96));
  border: 1px solid rgba(0, 234, 255, 0.18);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 234, 255, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent 45%);
  pointer-events: none;
}

.bio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 234, 255, 0.34);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(0, 234, 255, 0.08);
}

#loadMoreBtn {
  position: relative;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 99, 235, 0.18);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 24px rgba(37, 99, 235, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

#loadMoreBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 0.6s ease;
}

#loadMoreBtn:hover::before {
  left: 100%;
}

#loadMoreBtn:hover {
  background: linear-gradient(135deg, #1d4ed8, #9333ea);
  border-color: rgba(124, 58, 237, 0.24);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 35px rgba(124, 58, 237, 0.20),
    0 0 24px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

#loadMoreBtn:active {
  transform: translateY(-1px) scale(0.98);
}

#loadMoreBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.10);
}

.seo-section {
  padding: 80px 0 60px;
  background: #eff5ff;
  border-top: 1px solid bisque;
}

.section-heading p {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: left;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #475569;
  font-weight: 400;
  letter-spacing: 0;
}



.section-heading code {
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.18);
  white-space: nowrap;
}


/* How to Use Section */
.how-to-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}

.how-to-section p {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.14);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.14), 0 0 20px rgba(139, 92, 246, 0.08);
  border-color: rgba(124, 58, 237, 0.24);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #8b5cf6);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.step-card p {
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Why Use */

.generator-features {
  padding: 80px 0;
  background: #f8fbff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.generator-features h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(90deg, #1d4ed8 0%, #7c3aed 55%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 12px;
  text-align: center;
}

.generator-features p {
  text-align: center;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 22px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #2563eb, #8b5cf6);
  color: #ffffff;
}

.feature-icon i {
  line-height: 1;
}


.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.feature-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}


/* FAQ Section */
.faq-section {
  padding: 80px 0 60px;
  border-top: 1px solid beige;
}

.faq-section p {
  text-align: center;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(59, 130, 246, 0.12);
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.10);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.65);
  transition: background 0.3s ease;
}


.faq-question:hover {
  background: rgba(59, 130, 246, 0.06);
}

.faq-question h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.faq-toggle {
  font-size: 1.2rem;
  color: #2563eb;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 24px 28px;
}

.faq-answer p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
  text-align: left;
}

.faq-answer code {
  background: rgba(59, 130, 246, 0.10);
  color: #2563eb;
  padding: 2px 6px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}




.site-footer {
  margin-top: 60px;
  padding: 50px 20px 20px;
  text-align: center;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.96),
      rgba(244, 248, 255, 0.98));

  border-top: 1px solid var(--border);
  transition: var(--transition);
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: var(--container);
  margin: auto;
}

/* Text */
.site-footer p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

/* Headings */
.footer-col h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--text);
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

/* Social */
.footer-social a {
  font-size: 18px;
  margin-right: 10px;
  color: var(--muted);
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--primary);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

body.dark-mode .site-footer {
  background: linear-gradient(180deg,
      rgba(2, 6, 23, 0.95),
      rgba(15, 23, 42, 0.98));
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  color: var(--text);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }
}

.bio-list {
  display: grid;
  gap: 18px;
}



.bio-text-wrap {
  width: 100%;
  text-align: center;
}

.bio-text {
  margin: 0;
  color: #edf7ff;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.5px;
  word-break: break-word;
  white-space: pre-wrap;
}

.copy-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 234, 255, 0.26);
  border-radius: 14px;
  background: rgba(0, 234, 255, 0.06);
  color: #50f0ff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.28s ease;
  backdrop-filter: blur(8px);
}

.copy-btn:hover {
  background: linear-gradient(135deg, rgba(0, 234, 255, 0.2), rgba(139, 92, 246, 0.16));
  border-color: rgba(0, 234, 255, 0.44);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 234, 255, 0.14);
}

.copy-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.copy-btn.copied {
  color: #8bffb8;
  border-color: rgba(139, 255, 184, 0.45);
  background: rgba(139, 255, 184, 0.08);
}


.bio-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}






/* Category css */

.category-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px;
  border-radius: 12px;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: #fff;
  color: #6a0dad;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.category-btn i {
  font-size: 14px;
}

.category-btn:hover {
  background: #fff;
  color: #6a0dad;
  transform: translateY(-2px);
}

.category-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 80%;
  margin: 0 auto;
}

.category-section h3 {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  background: linear-gradient(90deg, #1d4ed8 0%, #7c3aed 55%, #f97316 100%);
  background-clip: text;
  color: transparent;
}


/* Game css */

.featured-game {
  width: 100%;
  max-width: 1180px;
  margin: 26px auto 24px;
  padding: 0 20px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(24, 39, 66, 0.95), rgba(52, 93, 140, 0.92));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 10px 30px rgba(25, 45, 78, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.featured-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.28), transparent 70%);
  border-radius: 50%;
}

.featured-card::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(120, 170, 255, 0.20), transparent 70%);
  border-radius: 50%;
}

.featured-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #dff4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-card h2 {
  position: relative;
  z-index: 1;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.featured-card p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.featured-actions {
  position: relative;
  z-index: 1;
}

.play-btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00d4ff, #4ea1ff);
  color: #08233b;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.28);
  transition: 0.25s ease;
}

.play-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 26px rgba(0, 212, 255, 0.35);
}

.mini-text {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .featured-game {
    padding: 0 10px;
  }

  .featured-card {
    padding: 26px 16px;
    border-radius: 18px;
  }

  .featured-card h2 {
    font-size: 26px;
  }

  .featured-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .play-btn {
    width: 100%;
    max-width: 220px;
  }
}