:root {
  /* Dynamic custom theme variables */
  --fl-bg: #0A0E17;
  --fl-surface: #141B2D;
  --fl-surface-bright: #1E2942;
  --fl-accent: #00E5FF;
  --fl-accent-glow: rgba(0, 229, 255, 0.15);
  --fl-text: #F8FAFC;
  --fl-muted: #94A3B8;
  --fl-border: #1E2942;
  --fl-btn-bg: #00E5FF;
  --fl-btn-text: #0A0E17;

  /* Fonts */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Custom geometry */
  --fl-border-radius: 16px; /* Soft style */
  --fl-container-width: 1180px;
}

/* Base resets & layout */
body {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, .fl-brand-name {
  font-family: var(--font-display);
  text-transform: uppercase; /* Heading-case uppercase */
  letter-spacing: 0.05em;
}

/* Custom Width Constraint rules */
.fl-main-display {
  width: 100%;
  max-width: var(--fl-container-width);
}

.fl-top-shell {
  width: 100%;
  max-width: var(--fl-container-width);
}

/* Brand Deco elements */
.fl-brand-ico {
  width: 28px;
  height: 28px;
}

.fl-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fl-text);
}

/* Picture controls */
.fl-image-adapt {
  display: block;
  max-width: 100%;
}

.fl-photo-item {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 0 30px var(--fl-accent-glow));
}

/* Editorial Style Elements */
.fl-badge-price-wrapper {
  border-radius: var(--fl-border-radius);
  box-shadow: 0 10px 25px -5px rgba(0, 229, 255, 0.3);
}

.fl-editorial-card {
  border-radius: var(--fl-border-radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3); /* Deep shadow style */
}

.fl-pull-quote {
  border-radius: 0 var(--fl-border-radius) var(--fl-border-radius) 0;
}

.fl-thumb-frame {
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--fl-surface);
}

/* Custom layout typography */
.fl-main-headline {
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--fl-text);
}

@media (min-width: 768px) {
  .fl-main-headline {
    font-size: 3rem;
  }
}

.fl-section-title {
  font-size: 2rem;
  color: var(--fl-text);
  letter-spacing: 0.05em;
}

/* Custom feature row spacing & elements */
.fl-alt-row {
  transition: transform 0.3s ease;
}

.fl-feature-ico-container {
  border: 2px solid var(--fl-border);
  box-shadow: 0 0 15px var(--fl-accent-glow);
}

/* Masonry for Testimonials (CSS Columns) */
.fl-masonry-wrapper {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 768px) {
  .fl-masonry-wrapper {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .fl-masonry-wrapper {
    column-count: 3;
  }
}

.fl-masonry-item {
  break-inside: avoid;
  border-radius: var(--fl-border-radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5); /* Deep shadow style */
  border: 1px solid var(--fl-border);
  border-left-width: 4px !important;
}

/* Custom CTA Trigger Buttons */
.fl-action-link {
  background-color: var(--fl-btn-bg);
  color: var(--fl-btn-text);
  border-radius: var(--fl-border-radius);
  box-shadow: 0 10px 20px var(--fl-accent-glow);
  transform: translateY(0);
}

.fl-action-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 15px 25px var(--fl-accent-glow);
}

/* Additional layout alignments */
.fl-nv-bar {
  background-color: var(--fl-surface);
  position: relative;
  z-index: 20;
}

.fl-base-footer {
  position: relative;
  z-index: 20;
}