/* GeneratorFont.online Modern Developer & Aesthetic UI */
:root {
  --gf-bg: #0b0f19;
  --gf-surface: #111827;
  --gf-surface-elevated: #1f2937;
  --gf-border: #374151;
  --gf-border-focus: #6366f1;
  --gf-primary: #6366f1;
  --gf-primary-hover: #4f46e5;
  --gf-primary-light: rgba(99, 102, 241, 0.15);
  --gf-success: #10b981;
  --gf-text-main: #f9fafb;
  --gf-text-muted: #9ca3af;
  --gf-text-sub: #6b7280;
  --gf-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gf-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--gf-bg);
  color: var(--gf-text-main);
  font-family: var(--gf-font-sans);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--gf-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--gf-primary-hover);
}

/* Header & Nav */
.gf-header {
  background-color: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gf-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.gf-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.gf-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.gf-brand-badge {
  font-size: 0.75rem;
  background: var(--gf-primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 9999px;
  font-weight: 600;
}

.gf-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gf-nav-links a {
  color: var(--gf-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.gf-nav-links a:hover,
.gf-nav-links a.active {
  color: #fff;
  background-color: var(--gf-surface-elevated);
}

/* Layout */
.gf-main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 20px;
}

/* Hero Section */
.gf-hero {
  text-align: center;
  margin-bottom: 32px;
}

.gf-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 40%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gf-hero p {
  color: var(--gf-text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Ad Placement Containers */
.gf-ad-container {
  margin: 24px auto;
  text-align: center;
  max-width: 728px;
  min-height: 90px;
  background: rgba(31, 41, 55, 0.4);
  border: 1px dashed var(--gf-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gf-ad-label {
  font-size: 0.7rem;
  color: var(--gf-text-sub);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Interactive Input Box */
.gf-input-card {
  background-color: var(--gf-surface);
  border: 1px solid var(--gf-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
}

.gf-textarea {
  width: 100%;
  background-color: var(--gf-bg);
  border: 2px solid var(--gf-border);
  border-radius: 12px;
  padding: 16px;
  font-size: 1.25rem;
  color: #fff;
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gf-textarea:focus {
  outline: none;
  border-color: var(--gf-primary);
  box-shadow: 0 0 0 4px var(--gf-primary-light);
}

.gf-input-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 12px;
}

.gf-char-count {
  font-size: 0.85rem;
  color: var(--gf-text-sub);
}

.gf-btn {
  background-color: var(--gf-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.gf-btn:hover {
  background-color: var(--gf-primary-hover);
  transform: translateY(-1px);
}

.gf-btn-secondary {
  background-color: var(--gf-surface-elevated);
  color: var(--gf-text-main);
  border: 1px solid var(--gf-border);
}

.gf-btn-secondary:hover {
  background-color: var(--gf-border);
}

/* Category Filter Chips */
.gf-chips-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scrollbar-width: thin;
}

.gf-chip {
  background-color: var(--gf-surface);
  border: 1px solid var(--gf-border);
  color: var(--gf-text-muted);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.gf-chip:hover,
.gf-chip.active {
  background-color: var(--gf-primary);
  color: #fff;
  border-color: var(--gf-primary);
}

/* Output Cards Grid */
.gf-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.gf-card {
  background-color: var(--gf-surface);
  border: 1px solid var(--gf-border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
  position: relative;
}

.gf-card:hover {
  border-color: var(--gf-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.4);
}

.gf-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.gf-card-title {
  font-size: 0.8rem;
  color: var(--gf-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.gf-card-content {
  font-size: 1.35rem;
  color: var(--gf-text-main);
  word-break: break-word;
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.gf-copy-btn {
  background-color: var(--gf-surface-elevated);
  color: var(--gf-text-main);
  border: 1px solid var(--gf-border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  transition: all 0.2s ease;
}

.gf-copy-btn:hover {
  background-color: var(--gf-primary);
  color: #fff;
  border-color: var(--gf-primary);
}

/* Symbol & Kaomoji List Styles */
.gf-symbol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 8px;
}

.gf-symbol-item {
  background-color: var(--gf-surface);
  border: 1px solid var(--gf-border);
  border-radius: 10px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.gf-symbol-item:hover {
  background-color: var(--gf-primary);
  color: #fff;
  border-color: var(--gf-primary);
  transform: scale(1.1);
}

.gf-kaomoji-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.gf-kaomoji-item {
  background-color: var(--gf-surface);
  border: 1px solid var(--gf-border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.15s ease;
  word-break: break-word;
}

.gf-kaomoji-item:hover {
  background-color: var(--gf-primary);
  color: #fff;
  border-color: var(--gf-primary);
  transform: translateY(-2px);
}

.gf-divider-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gf-divider-item {
  background-color: var(--gf-surface);
  border: 1px solid var(--gf-border);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: pre-wrap;
  word-break: break-word;
  position: relative;
}

.gf-divider-item:hover {
  border-color: var(--gf-primary);
  background-color: var(--gf-surface-elevated);
}

/* Toast Notification */
#gf-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--gf-success);
  color: #fff;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

#gf-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Informative & SEO Content Sections */
.gf-seo-article {
  background-color: var(--gf-surface);
  border: 1px solid var(--gf-border);
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
}

.gf-seo-article h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #fff;
}

.gf-seo-article h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #e5e7eb;
}

.gf-seo-article p {
  color: var(--gf-text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.gf-seo-article ul {
  list-style-type: disc;
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--gf-text-muted);
}

.gf-seo-article li {
  margin-bottom: 6px;
}

/* Footer */
.gf-footer {
  background-color: var(--gf-surface);
  border-top: 1px solid var(--gf-border);
  padding: 40px 20px;
  margin-top: auto;
}

.gf-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gf-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gf-footer-links a {
  color: var(--gf-text-muted);
  font-size: 0.85rem;
}

.gf-footer-links a:hover {
  color: #fff;
}

.gf-copyright {
  color: var(--gf-text-sub);
  font-size: 0.85rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gf-header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .gf-hero h1 {
    font-size: 1.75rem;
  }
  .gf-results-grid {
    grid-template-columns: 1fr;
  }
  .gf-footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* FAQ & Informative Tables */
.gf-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.gf-faq-item {
  background-color: var(--gf-bg);
  border: 1px solid var(--gf-border);
  border-radius: 12px;
  padding: 18px 24px;
  transition: all 0.2s ease;
}

.gf-faq-item:hover {
  border-color: var(--gf-primary);
}

.gf-faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gf-faq-answer {
  color: var(--gf-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.gf-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 12px;
  border: 1px solid var(--gf-border);
}

.gf-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.gf-table th {
  background-color: var(--gf-surface-elevated);
  padding: 14px 18px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid var(--gf-border);
}

.gf-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gf-border);
  color: var(--gf-text-muted);
}

.gf-table tr:last-child td {
  border-bottom: none;
}

.gf-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.gf-badge-green {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.gf-step-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.gf-step-card {
  background-color: var(--gf-bg);
  border: 1px solid var(--gf-border);
  border-radius: 12px;
  padding: 20px;
}

.gf-step-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gf-primary);
  margin-bottom: 6px;
}





/* ==========================================================================
   BULLETPROOF RESPONSIVE HEADER & EASY-NAV MOBILE DRAWER
   ========================================================================== */
.gf-header {
  background-color: rgba(11, 15, 25, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gf-border, #1e293b);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.gf-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  box-sizing: border-box;
}

.gf-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.gf-brand-badge {
  font-size: 0.7rem;
  background: var(--gf-primary, #00cdca);
  color: #000;
  padding: 2px 7px;
  border-radius: 9999px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* Desktop Nav Links */
.gf-desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.gf-desktop-nav a {
  color: var(--gf-text-muted, #94a3b8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gf-desktop-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.gf-nav-cta {
  background: rgba(56, 189, 248, 0.12) !important;
  color: #38bdf8 !important;
  font-weight: 700 !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.gf-nav-cta:hover {
  background: #38bdf8 !important;
  color: #000 !important;
}

/* Mobile Hamburger Pill Button (Hidden on Desktop) */

.gf-burger-btn {
  display: none;
  position: relative;
  background: #131b2e;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 8px 14px 8px 36px !important;
  cursor: pointer;
  align-items: center;
  color: #f1f5f9;
  transition: all 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

.gf-burger-btn svg {
  stroke: #38bdf8;
  display: block;
  flex-shrink: 0;
}

.gf-burger-bar {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 2px;
  background: #38bdf8;
  border-radius: 2px;
  transition: all 0.2s ease;
  display: block !important;
}

.gf-burger-bar:nth-of-type(1) {
  top: 9px;
}
.gf-burger-bar:nth-of-type(2) {
  top: 15px;
}
.gf-burger-bar:nth-of-type(3) {
  top: 21px;
}

.gf-burger-btn:hover,
.gf-burger-btn:active {
  background: #1e293b;
  border-color: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.gf-burger-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.02em;
}

.gf-drawer-close {
  background: #131b2e;
  border: 1px solid #1e293b;
  color: #94a3b8;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.gf-drawer-close svg {
  stroke: #94a3b8;
  display: block;
}

.gf-drawer-close:hover {
  border-color: #38bdf8;
  background: #1e293b;
}

.gf-drawer-close:hover svg {
  stroke: #38bdf8;
}


/* Backdrop Overlay */
.gf-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.gf-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Slide-Over Drawer */
.gf-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: #0b0f19;
  border-left: 1px solid #1e293b;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
}

.gf-mobile-drawer.active {
  transform: translateX(0);
}

.gf-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #1e293b;
  background: #090d16;
}

.gf-drawer-title {
  display: flex;
  flex-direction: column;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.gf-drawer-close {
  background: #131b2e;
  border: 1px solid #1e293b;
  color: #94a3b8;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.gf-drawer-close:hover {
  color: #fff;
  border-color: #38bdf8;
}

.gf-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.gf-drawer-all-btn {
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.gf-drawer-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gf-drawer-group-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  padding-left: 0.25rem;
}

.gf-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gf-drawer-links a {
  background: #131b2e;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #f1f5f9;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.gf-drawer-links a:hover,
.gf-drawer-links a:active {
  background: #1e293b;
  border-color: #38bdf8;
  color: #38bdf8;
  transform: translateX(3px);
}

/* Mobile Breakpoint (< 992px) */
@media (max-width: 992px) {
  .gf-desktop-nav {
    display: none !important;
  }
  .gf-burger-btn {
    display: flex !important;
  }
  .gf-header-container {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }
}

