@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg-base: #080c14;
  --bg-surface: #0d1320;
  --bg-card: #111827;
  --bg-card-hover: #1a2235;
  --bg-glass: rgba(17, 24, 39, 0.7);

  --accent-primary: #00d4ff;
  --accent-secondary: #7c3aed;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;
  --accent-danger: #ef4444;
  --accent-critical: #dc2626;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(0, 212, 255, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);

  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ─── RESET & BASE ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── ANIMATED BACKGROUND ───────────────────────────────────────────── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bg-radial {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 10%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 80% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────── */
.app-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ─── HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  padding: 32px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
}

.logo-text h1 {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.logo-text p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.header-badge {
  margin-left: auto;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-success);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-success);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ─── HERO SECTION ───────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 64px 0 48px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #a855f7 50%, var(--accent-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s linear infinite;
}

@keyframes gradient-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.pill:hover {
  border-color: var(--border-accent);
  color: var(--accent-primary);
}

.pill-icon { font-size: 14px; }

/* ─── SCAN CARD ──────────────────────────────────────────────────────── */
.scan-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.scan-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-base);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 28px;
}

.tab-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  box-shadow: 0 2px 12px rgba(0, 212, 255, 0.3);
}

.tab-btn:not(.active):hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* URL Input */
.url-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.url-input {
  flex: 1;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'JetBrains Mono', monospace;
  outline: none;
  transition: all var(--transition-fast);
}

.url-input::placeholder { color: var(--text-muted); }
.url-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.scan-btn {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.scan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.45);
}

.scan-btn:active { transform: translateY(0); }
.scan-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.scan-options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

/* File Upload */
.file-drop-zone {
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  background: var(--bg-base);
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.03);
}

.file-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.drop-icon { font-size: 48px; margin-bottom: 16px; }
.drop-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.drop-subtitle { font-size: 13px; color: var(--text-muted); }

.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
}

.file-item-name { flex: 1; color: var(--text-primary); }
.file-item-size { color: var(--text-muted); }
.file-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 16px;
  transition: all var(--transition-fast);
}
.file-item-remove:hover { color: var(--accent-danger); background: rgba(239, 68, 68, 0.1); }

/* ─── LOADING STATE ──────────────────────────────────────────────────── */
.loading-overlay {
  display: none;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  text-align: center;
  backdrop-filter: blur(20px);
  margin-bottom: 32px;
}

.loading-overlay.visible { display: block; }

.radar-container {
  width: 120px;
  height: 120px;
  position: relative;
  margin: 0 auto 24px;
}

.radar-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.2);
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(rgba(0, 212, 255, 0.4) 0deg, transparent 80deg);
  animation: radar-spin 1.5s linear infinite;
}

@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent-primary);
  animation: pulse-glow 1s ease-in-out infinite;
}

.loading-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.loading-step {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  animation: fade-cycle 2s ease-in-out infinite;
}

@keyframes fade-cycle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── RESULTS SECTION ────────────────────────────────────────────────── */
#results-section { display: none; }
#results-section.visible { display: block; }

/* ─── SCORE HERO ──────────────────────────────────────────────────────── */
.score-hero {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.score-circle-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
}

.score-circle-svg {
  transform: rotate(-90deg);
}

.score-bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 8;
}

.score-fg-circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1),
              stroke 0.5s ease;
}

.score-text-group {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-number {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.score-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

.score-grade {
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
}

.score-details h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.score-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.score-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.severity-bar {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}

.severity-chip {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chip-critical { background: rgba(220, 38, 38, 0.15); color: #f87171; border: 1px solid rgba(220, 38, 38, 0.3); }
.chip-high { background: rgba(239, 68, 68, 0.1); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.25); }
.chip-medium { background: rgba(245, 158, 11, 0.1); color: #fcd34d; border: 1px solid rgba(245, 158, 11, 0.25); }
.chip-low { background: rgba(16, 185, 129, 0.1); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.25); }

/* ─── RESULTS GRID ───────────────────────────────────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.result-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.card-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  user-select: none;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.card-header-text { flex: 1; }
.card-title { font-size: 14px; font-weight: 700; }
.card-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.card-score-badge {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -1px;
}

.card-chevron {
  color: var(--text-muted);
  transition: transform var(--transition-fast);
  font-size: 18px;
}

.card-header.expanded .card-chevron { transform: rotate(180deg); }

.card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.card-body.expanded { max-height: 2000px; }
.card-content { padding: 20px; }

/* ─── ISSUE ITEMS ─────────────────────────────────────────────────────── */
.issue-item {
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 10px;
  border-left: 3px solid transparent;
  animation: slide-in 0.3s ease;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.issue-item.severity-critical { border-left-color: var(--accent-critical); }
.issue-item.severity-high { border-left-color: var(--accent-danger); }
.issue-item.severity-medium { border-left-color: var(--accent-warning); }
.issue-item.severity-low { border-left-color: var(--accent-success); }
.issue-item.severity-info { border-left-color: var(--text-muted); }

.issue-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.issue-severity-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tag-critical { background: rgba(220, 38, 38, 0.2); color: #fca5a5; }
.tag-high { background: rgba(239, 68, 68, 0.15); color: #fca5a5; }
.tag-medium { background: rgba(245, 158, 11, 0.15); color: #fcd34d; }
.tag-low { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; }
.tag-info { background: rgba(148, 163, 184, 0.1); color: #94a3b8; }
.tag-ok { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; }

.issue-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.issue-owasp {
  font-size: 10px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

.issue-description {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.issue-fix {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  color: #6ee7b7;
  line-height: 1.6;
}

.issue-fix::before { content: "💡 "; }

.code-snippet {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-secondary);
  margin: 6px 0;
  overflow-x: auto;
  white-space: pre;
}

.line-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-primary);
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 6px;
}

/* ─── TECH GRID ──────────────────────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.tech-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: all var(--transition-fast);
}

.tech-item:hover { border-color: var(--border-accent); }
.tech-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.tech-category { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.tech-via { font-size: 10px; color: var(--accent-primary); margin-top: 2px; }
.tech-version {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  color: #c4b5fd;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 100px;
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* ─── PORT TABLE ──────────────────────────────────────────────────────── */
.port-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.port-table th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.port-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.port-number {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-primary);
  font-weight: 700;
}

/* ─── HEADER TABLE ────────────────────────────────────────────────────── */
.header-ok-list, .header-missing-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.header-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.header-name {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-primary);
  font-size: 12px;
  min-width: 220px;
  flex-shrink: 0;
}

/* ─── EMPTY STATE ─────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 32px;
  color: var(--text-muted);
  font-size: 14px;
}

.empty-icon { font-size: 36px; margin-bottom: 12px; }

/* ─── NOTIFICATION TOAST ─────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
  max-width: 400px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.toast-error { border-color: rgba(239, 68, 68, 0.4); }
.toast.toast-success { border-color: rgba(16, 185, 129, 0.4); }

/* ─── SECTION HEADINGS ───────────────────────────────────────────────── */
.section-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-heading:first-child { margin-top: 0; }

.divider {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .score-hero { grid-template-columns: 1fr; text-align: center; }
  .score-circle-wrapper { margin: 0 auto; }
  .url-input-group { flex-direction: column; }
  .scan-options { flex-direction: column; gap: 12px; }
  .results-grid { grid-template-columns: 1fr; }
  .severity-bar { flex-wrap: wrap; }
  .score-meta { justify-content: center; }
  .tab-btn span { display: none; }
}

 
 / *   R e p o r t   M o d a l   * / 
 . m o d a l - o v e r l a y   { 
     d i s p l a y :   n o n e ; 
     p o s i t i o n :   f i x e d ; 
     t o p :   0 ;   l e f t :   0 ;   r i g h t :   0 ;   b o t t o m :   0 ; 
     b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 7 ) ; 
     z - i n d e x :   1 0 0 0 ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     b a c k d r o p - f i l t e r :   b l u r ( 4 p x ) ; 
 } 
 
 . m o d a l - o v e r l a y . v i s i b l e   { 
     d i s p l a y :   f l e x ; 
 } 
 
 . m o d a l - c o n t e n t   { 
     b a c k g r o u n d :   v a r ( - - b g - c a r d ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
     b o r d e r - r a d i u s :   1 2 p x ; 
     w i d t h :   9 0 % ; 
     m a x - w i d t h :   8 0 0 p x ; 
     m a x - h e i g h t :   9 0 v h ; 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     b o x - s h a d o w :   0   2 5 p x   5 0 p x   - 1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ; 
 } 
 
 . m o d a l - h e a d e r   { 
     p a d d i n g :   2 0 p x ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     a l i g n - i t e m s :   c e n t e r ; 
 } 
 
 . m o d a l - h e a d e r   h 3   { 
     m a r g i n :   0 ; 
     c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
 } 
 
 . c l o s e - b t n   { 
     b a c k g r o u n d :   n o n e ; 
     b o r d e r :   n o n e ; 
     c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
     f o n t - s i z e :   2 0 p x ; 
     c u r s o r :   p o i n t e r ; 
 } 
 
 . m o d a l - b o d y   { 
     p a d d i n g :   2 0 p x ; 
     f l e x :   1 ; 
     o v e r f l o w :   h i d d e n ; 
     d i s p l a y :   f l e x ; 
 } 
 
 # r e p o r t - t e x t a r e a   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   4 0 0 p x ; 
     b a c k g r o u n d :   v a r ( - - b g - s u r f a c e ) ; 
     c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
     b o r d e r - r a d i u s :   8 p x ; 
     p a d d i n g :   1 5 p x ; 
     f o n t - f a m i l y :   " J e t B r a i n s   M o n o " ,   m o n o s p a c e ; 
     f o n t - s i z e :   1 3 p x ; 
     r e s i z e :   v e r t i c a l ; 
 } 
 
 . m o d a l - f o o t e r   { 
     p a d d i n g :   2 0 p x ; 
     b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   f l e x - e n d ; 
 } 
  
 