/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-primary: #080b11;
  --bg-secondary: #121824;
  --bg-card: #161d2d;
  --bg-input: #1b2336;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #080b11; /* Used on bright backgrounds like cyan/magenta */
  
  --accent-cyan: #00f0ff;
  --accent-cyan-rgb: 0, 240, 255;
  --accent-cyan-hover: #00d8e6;
  
  --accent-magenta: #ff007f;
  --accent-magenta-rgb: 255, 0, 127;
  --accent-magenta-hover: #e60072;
  
  --border-color: #222c41;
  --border-focus: #00f0ff;
  
  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding-desktop: 7rem;
  --section-padding-mobile: 4.5rem;
  
  /* Miscellaneous */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-round: 50px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
  font-size: 18px; /* Elevated font size for readability */
}

@media (max-width: 768px) {
  html {
    font-size: 16px; /* Slightly smaller base font on mobile */
  }
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent-cyan-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Accessibility Focus Outline */
*:focus-visible {
  outline: 3px solid var(--border-focus);
  outline-offset: 4px;
}

/* ==========================================================================
   LAYOUT & UTILITY CLASSES
   ========================================================================== */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.accent-cyan { color: var(--accent-cyan); }
.accent-magenta { color: var(--accent-magenta); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-round);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1.05rem;
  min-height: 48px; /* Accessible minimum tap size */
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-cyan);
  color: var(--text-dark);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--accent-cyan-hover);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--accent-magenta);
  color: var(--text-primary);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--accent-magenta);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.btn-outline:hover, .btn-outline:focus {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  min-height: 38px;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(8, 11, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-cyan);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Toggle button */
.nav-toggle {
  display: none;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
  }
  
  .hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    position: relative;
    transition: background-color 0.3s ease;
  }
  
  .hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
  }
  
  .hamburger::before { top: -8px; }
  .hamburger::after { bottom: -8px; }
  
  /* Toggle Active State */
  .nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(8, 11, 17, 0.98);
    overflow: hidden;
    transition: height 0.4s ease;
    border-bottom: 0px solid var(--border-color);
  }
  
  .nav.active {
    height: calc(100vh - 80px);
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    gap: 2.5rem;
  }
  
  .nav-link {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 10rem;
  padding-bottom: var(--section-padding-desktop);
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 620px;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--accent-magenta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 8rem;
    padding-bottom: var(--section-padding-mobile);
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   TRUST BAR (SOCIAL PROOF)
   ========================================================================== */
.trust-bar {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.trust-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-stat {
  text-align: center;
  padding: 0.5rem 1rem;
}

.stat-number {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 50px;
  background-color: var(--border-color);
}

@media (max-width: 768px) {
  .trust-container {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .trust-stat {
    flex: 1 1 100%;
  }
  
  .trust-divider {
    display: none;
  }
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   ÜBER MICH (ABOUT) SECTION
   ========================================================================== */
.about {
  padding: var(--section-padding-desktop) 0;
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content {
  max-width: 600px;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
}

.highlight-icon {
  color: var(--accent-cyan);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .about-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
    order: 2;
  }
  
  .about-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .about {
    padding: var(--section-padding-mobile) 0;
  }
}

/* ==========================================================================
   EVENT CONCEPTS SECTION
   ========================================================================== */
.concepts {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--bg-secondary);
}

.concepts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.concept-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.concept-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.08);
}

.concept-image-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.concept-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.concept-card:hover .concept-image {
  transform: scale(1.05);
}

.concept-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.concept-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: var(--font-headings);
}

.concept-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .concepts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .concepts {
    padding: var(--section-padding-mobile) 0;
  }
  
  .concepts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   TOUR DATES SECTION
   ========================================================================== */
.tour {
  padding: var(--section-padding-desktop) 0;
}

.tour-table-wrapper {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}

.tour-table th {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 1.25rem 2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-headings);
  font-weight: 600;
}

.tour-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.tour-table tr:last-child td {
  border-bottom: none;
}

.tour-table tr {
  transition: var(--transition-smooth);
}

.tour-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.015);
}

.tour-date {
  font-weight: 600;
  color: var(--accent-magenta);
  white-space: nowrap;
}

.tour-event {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.tour-location {
  color: var(--text-secondary);
}

.tour-city {
  color: var(--text-secondary);
}

/* Responsive Table layout for mobile */
@media (max-width: 768px) {
  .tour {
    padding: var(--section-padding-mobile) 0;
  }
  
  .tour-table-wrapper {
    border: none;
    background: transparent;
  }

  .tour-table, .tour-table thead, .tour-table tbody, .tour-table th, .tour-table td, .tour-table tr {
    display: block;
  }
  
  .tour-table thead {
    display: none; /* Hide header on mobile cards */
  }
  
  .tour-table tr {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .tour-table td {
    padding: 0.5rem 0;
    border-bottom: none;
    text-align: left;
  }
  
  .tour-table td.tour-action {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }
  
  .tour-table tr:hover td {
    background-color: transparent;
  }
  
  .tour-date {
    font-size: 1.1rem;
  }
  
  .tour-event {
    font-size: 1.2rem;
  }
  
  .tour-location::before {
    content: 'Ort: ';
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  .tour-city::before {
    content: 'Stadt: ';
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  .tour-table td.text-right {
    text-align: left;
  }
}

/* ==========================================================================
   BOOKING & CONTACT SECTION
   ========================================================================== */
.booking {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.booking-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: start;
}

.booking-intro {
  max-width: 500px;
}

.booking-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.booking-info-box {
  margin-top: 2.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-md);
}

.info-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
}

.info-contact {
  font-size: 1.15rem;
  font-family: var(--font-headings);
  margin-bottom: 0.5rem;
}

.info-contact:last-child {
  margin-bottom: 0;
}

/* Form Styles */
.booking-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.required {
  color: var(--accent-magenta);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: var(--bg-input);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition-smooth);
  min-height: 52px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-focus);
  outline: none;
  background-color: rgba(var(--accent-cyan-rgb), 0.02);
  box-shadow: 0 0 12px rgba(var(--accent-cyan-rgb), 0.15);
}

/* Form Validation styles */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: var(--accent-magenta);
  background-color: rgba(255, 0, 127, 0.02);
}

.error-msg {
  display: none;
  font-size: 0.85rem;
  color: var(--accent-magenta);
  margin-top: 0.5rem;
  font-weight: 500;
}

.form-group.invalid .error-msg {
  display: block;
}

/* Success Message Overlay */
.form-success-message {
  text-align: center;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 240, 255, 0.15);
  border: 2px solid var(--accent-cyan);
  border-radius: var(--radius-round);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.form-success-message h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.form-success-message p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .booking-intro {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .booking {
    padding: var(--section-padding-mobile) 0;
  }
  
  .booking-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  gap: 5rem;
}

.footer-nav, .footer-legal {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav a, .footer-legal a {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.footer-nav a:hover, .footer-legal a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   PLACEHOLDER HIGHLIGHTING
   ========================================================================== */
.placeholder-highlight {
  display: inline-block;
  color: var(--accent-magenta);
  background-color: rgba(255, 0, 127, 0.08);
  padding: 0 6px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 0, 127, 0.5);
  font-family: monospace;
  font-size: 0.95em;
  word-break: break-all;
}
