/* DeepSeek SEO Bot - Custom Glassmorphic Premium Stylesheet */

:root {
  --bg-dark: #07080d;
  --bg-card: rgba(18, 20, 32, 0.55);
  --bg-sidebar: rgba(10, 11, 20, 0.85);
  --border-glass: rgba(255, 255, 255, 0.07);
  
  --primary: #00e5ff;
  --primary-rgb: 0, 229, 255;
  --secondary: #bd00ff;
  --secondary-rgb: 189, 0, 255;
  --accent: #7000ff;
  
  --color-green: #00ff87;
  --color-orange: #ffaa00;
  --color-red: #ff3b30;
  
  --text-main: #f1f3f9;
  --text-muted: #8e9aa8;
  --text-dark: #4b5563;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Base resets & layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Glowing background blobs */
.blob {
  position: fixed;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  transition: var(--transition);
}

.blob-purple {
  background: var(--secondary);
  top: -100px;
  right: -100px;
  animation: float-slow 20s infinite alternate;
}

.blob-blue {
  background: var(--primary);
  bottom: -100px;
  left: -100px;
  animation: float-slow 25s infinite alternate-reverse;
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-20px, -50px) scale(0.9); }
}

/* Main Container Grid */
.app-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  width: 100vw;
}

/* Sidebar Layout */
.sidebar {
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-glass);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 10;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
}

.logo-area h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-area h2 span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-area h2 small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid transparent;
}

.nav-item svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  padding-left: 1.4rem;
}

.nav-item.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--secondary-rgb), 0.05) 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-item.active svg {
  color: var(--primary);
  filter: drop-shadow(0 0 5px rgba(var(--primary-rgb), 0.5));
}

.sidebar-footer {
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
}

.status-indicator-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow: 0 0 10px var(--color-green);
}

.pulse-dot.running {
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 1.5s infinite;
}

.pulse-dot.paused {
  background-color: var(--color-orange);
  box-shadow: 0 0 10px var(--color-orange);
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(var(--primary-rgb), 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); }
}

.status-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

/* Main Content Area */
.main-content {
  padding: 2.5rem;
  height: 100vh;
  overflow-y: auto;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 1.5rem;
}

.header-title h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.3rem;
}

.header-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.queue-controls {
  display: flex;
  gap: 0.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  font-family: var(--font-family);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #07080d;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}

.btn-glow {
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-danger {
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.2);
  color: var(--color-red);
}

.btn-danger:hover {
  background: rgba(255, 59, 48, 0.2);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
}

.btn-small:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* Glassmorphic Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.8rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(var(--primary-rgb), 0.15);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.8rem;
}

.card-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Tabs framework */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: rgba(18, 20, 32, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(18, 20, 32, 0.55);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.icon-blue { background: rgba(0, 229, 255, 0.1); color: var(--primary); }
.icon-purple { background: rgba(189, 0, 255, 0.1); color: var(--secondary); }
.icon-green { background: rgba(0, 255, 135, 0.1); color: var(--color-green); }
.icon-yellow { background: rgba(255, 170, 0, 0.1); color: var(--color-orange); }

.stat-info h3 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Progress bar section */
.progress-section {
  padding: 1.2rem;
  margin-bottom: 2rem;
}

.progress-details {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.progress-bar-bg {
  background: rgba(255, 255, 255, 0.05);
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-glass);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
  width: 0%;
  transition: width 0.5s ease;
}

/* Dashboard Split Grid */
.dashboard-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

/* Table styling */
.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th, .data-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.data-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table tbody tr {
  transition: var(--transition);
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-green { background: rgba(0, 255, 135, 0.15); color: var(--color-green); }
.badge-orange { background: rgba(255, 170, 0, 0.15); color: var(--color-orange); }
.badge-red { background: rgba(255, 59, 48, 0.15); color: var(--color-red); }
.badge-blue { background: rgba(0, 229, 255, 0.15); color: var(--primary); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-pending::before { background-color: var(--text-muted); }
.status-pending { color: var(--text-muted); }

.status-processing::before { background-color: var(--primary); animation: pulse-light 1s infinite; }
.status-processing { color: var(--primary); }

.status-completed::before { background-color: var(--color-green); }
.status-completed { color: var(--color-green); }

.status-failed::before { background-color: var(--color-red); }
.status-failed { color: var(--color-red); }

@keyframes pulse-light {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Console logs panel */
.console-box {
  background: #040508;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.2rem;
  height: 380px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.log-line {
  word-break: break-all;
}

.log-line.system { color: #5383ec; }
.log-line.info { color: #a1b0cb; }
.log-line.success { color: var(--color-green); }
.log-line.error { color: var(--color-red); }
.log-line.warning { color: var(--color-orange); }

/* Forms & settings styles */
.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-group textarea {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.5;
  resize: vertical;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.15);
  background: rgba(0, 0, 0, 0.5);
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.settings-row {
  display: flex;
  gap: 1rem;
}

.col-span-2 {
  grid-column: span 2;
}

.links-inputs-row {
  display: flex;
  gap: 2rem;
}

/* Bulk creator specific */
.max-width-800 {
  max-width: 800px;
  margin: 0 auto;
}

.creator-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Articles grid styles */
.search-box input {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.85rem;
  width: 250px;
  outline: none;
}

.search-box input:focus {
  border-color: var(--primary);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.article-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: var(--transition);
  cursor: pointer;
}

.article-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
}

.article-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.article-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-meta {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.article-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 5, 8, 0.75);
  backdrop-filter: blur(8px);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 90%;
  max-width: 1200px;
  height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-modal {
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.close-modal:hover {
  color: #fff;
}

.modal-body-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  flex-grow: 1;
  overflow: hidden;
  height: calc(100% - 73px);
}

.modal-content-area {
  padding: 2rem;
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.meta-info-strip {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.meta-description-preview {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--primary);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.content-preview {
  line-height: 1.8;
  color: #e2e8f0;
}

.content-preview h1, 
.content-preview h2, 
.content-preview h3 {
  color: #fff;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

.content-preview p {
  margin-bottom: 1.2rem;
}

.content-preview a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.content-preview ul, 
.content-preview ol {
  margin-left: 2rem;
  margin-bottom: 1.2rem;
}

.content-preview li {
  margin-bottom: 0.4rem;
}

/* Right SEO Panel */
.modal-seo-panel {
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(18, 20, 32, 0.15);
}

/* Circular score */
.seo-score-circular {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 1.5rem;
}

.score-circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 2.8;
}

.circle-fill {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  transition: stroke-dasharray 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Colors for circle score */
.rating-green .circle-fill { stroke: var(--color-green); filter: drop-shadow(0 0 4px var(--color-green)); }
.rating-orange .circle-fill { stroke: var(--color-orange); }
.rating-red .circle-fill { stroke: var(--color-red); }

.score-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#score-num {
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.score-display small {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.seo-light-badge {
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rating-green .seo-light-badge { background: rgba(0, 255, 135, 0.15); color: var(--color-green); border: 1px solid rgba(0, 255, 135, 0.2); }
.rating-orange .seo-light-badge { background: rgba(255, 170, 0, 0.15); color: var(--color-orange); border: 1px solid rgba(255, 170, 0, 0.2); }
.rating-red .seo-light-badge { background: rgba(255, 59, 48, 0.15); color: var(--color-red); border: 1px solid rgba(255, 59, 48, 0.2); }

.seo-checklist {
  width: 100%;
}

.seo-checklist h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.seo-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.seo-check-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.seo-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.seo-check-item.passed .seo-check-icon {
  background: rgba(0, 255, 135, 0.15);
  color: var(--color-green);
}
.seo-check-item.passed .seo-check-icon::before {
  content: '✓';
}

.seo-check-item.failed .seo-check-icon {
  background: rgba(255, 59, 48, 0.15);
  color: var(--color-red);
}
.seo-check-item.failed .seo-check-icon::before {
  content: '✗';
}

.seo-check-name {
  color: var(--text-main);
  font-weight: 500;
}

.seo-check-value {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Utility classes */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--color-green); }
.text-red { color: var(--color-red); }
.text-orange { color: var(--color-orange); }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.width-full { width: 100%; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .app-container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    display: none; /* In a production system, we'd add a toggle burger, but keeping desktop simple and premium */
  }
  
  .dashboard-split {
    grid-template-columns: 1fr;
  }

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

  .col-span-2 {
    grid-column: span 1;
  }

  .links-inputs-row {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Premium Table of Contents (TOC) Custom Styling */
.panthera-toc {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
  max-width: 500px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.panthera-toc:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.panthera-toc .toc-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.panthera-toc ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.panthera-toc li {
  margin: 0 !important;
  font-size: 0.88rem;
}

.panthera-toc li.toc-h2 {
  padding-left: 0.2rem;
}

.panthera-toc li.toc-h3 {
  padding-left: 1.2rem;
  position: relative;
}

.panthera-toc li.toc-h3::before {
  content: "↳" !important;
  position: absolute;
  left: 4px;
  color: var(--text-muted);
  font-weight: bold;
}

.panthera-toc a {
  color: var(--text-muted) !important;
  text-decoration: none !important;
  transition: var(--transition);
}

.panthera-toc a:hover {
  color: var(--primary) !important;
  text-decoration: none !important;
  padding-left: 3px;
}

/* Premium Featured Image Banner Styling */
.featured-image-banner-wrapper {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-image-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-image-banner-wrapper:hover .featured-image-banner {
  transform: scale(1.04);
}
