/* Set a consistent size for all SVGs using variables */
/* Base styles for SVG elements */
.cls-1 {
  fill: #ffffff;
  stroke-width: 2px;
}

.cls-1, .cls-2, .cls-3 {
  stroke: #ffffff;
  stroke-miterlimit: 10;
}

.beaker_elipse {
  stroke: #ffffff; /* White stroke color */
  stroke-width: 11px;
  fill: none;
}

.cls-2 {
  stroke: #ffffff; /* White stroke color */
  stroke-width: 2px;
  fill: none;
}

.cls-3 {
  stroke: #ffffff;
  stroke-width: 2px;
  fill: none;
}

/* Animation for reelsSVG */
#reelsSVG {
  animation: bounce 2s infinite;
}

/* Consistent size and styling for SVGs */
#reelsSVG {
  width: 40%;
  height: 96%;
  display: block;
  margin: 0 auto;
  fill: #fff;
}

#editingSVG {
  width: 40%;
  height: 96%;
  display: block;
  margin: 0 auto;
  fill: #fff;
}

/* Alternative size for webAppSVG */
#webAppSVG {
  width: 40%;
  height: 96%;
  display: block;
  margin: 0 auto;
  fill: #fff;
}

/* Hover effects */
#reelsSVG:hover, #editingSVG:hover, #webAppSVG:hover {
  transform: scale(1.05);
}

/* Optional: Define the animation for bounce */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
/* WebKit Scrollbar Styles */
::-webkit-scrollbar {
  width: 2px;
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(255, 208, 0);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}

body {
  /* Firefox Scrollbar Styles */
  scrollbar-color: rgb(255, 208, 0) #00624e; /* thumb color | track color */
  scrollbar-width: thin;
}

.accent {
  color: rgb(255, 208, 0);
}

.textDepth {
  text-shadow: 1px 1px 1px black;
}

.fullPage {
  margin: 25%;
}

.W {
  color: rgb(150, 255, 231);
}

.titleText {
  font-size: 3rem;
  text-shadow: 3px 3px 1px rgb(150, 255, 231);
  font-weight: 900;
}

.contrast {
  color: black;
  text-shadow: 0px 0px 40px rgb(150, 255, 231);
}

.portrait {
  width: 48%;
  margin: 8% 23%;
}

#modelSelect {
  width: 80%;
}
#modelSelect option {
  font-size: 0.8rem;
}

.selectBox {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 900;
}
.selectBox label {
  font-size: 0.8rem;
}
.selectBox input {
  border: 1px solid rgb(150, 255, 231);
  padding: 5px;
  font-size: 1rem;
  border-radius: 4px;
  margin: 2%;
}
.selectBox button {
  background-color: purple;
  color: white;
  border: none;
  padding: 5% 20%;
  margin: 2%;
  font-size: 1.5rem;
  cursor: pointer;
}
.selectBox button:hover {
  background-color: rgb(99, 255, 219.3428571429);
}

@font-face {
  font-family: "sgReg";
  src: url("../fonts/spaceGrotesque/SpaceGrotesk-Regular.ttf");
}
/* Modern Design System */
:root {
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --secondary: #6c757d;
  --accent: #00d4ff;
  --dark-bg: #0a0e27;
  --darker-bg: #060920;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
:root {
  padding: 1%;
  text-align: center;
}
:root h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
:root h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}
:root h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
:root h4 {
  font-size: 1rem;
  font-weight: 500;
}
:root p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
@media (min-width: 768px) {
  :root {
    padding: 2% 5%;
  }
  :root h1 {
    font-size: 3.5rem;
  }
  :root h2 {
    font-size: 2.5rem;
  }
  :root h3 {
    font-size: 2rem;
  }
  :root h4 {
    font-size: 1.5rem;
  }
  :root p {
    font-size: 1.1rem;
  }
  :root ul {
    margin-left: 25%;
  }
  :root .contentBox ul {
    margin-left: 5%;
  }
}

li {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Modern Background */
body {
  background: linear-gradient(135deg, #0a0e27 0%, #060920 50%, #0d1233 100%);
  color: var(--text-primary);
  font-family: "sgReg", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Modern Footer */
.footer {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  margin: 2rem 1%;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/beaker_logo_no_stash.png");
  background-repeat: repeat;
  background-size: 3%;
  opacity: 0.03;
  border-radius: var(--radius);
  z-index: -1;
}
.footer * {
  position: relative;
  z-index: 1;
}

.footCover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 245, 255, 0.95));
  padding: 2rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.footCover p {
  color: #1a202c;
  font-weight: 500;
}

/* Modern Content Cards */
.contentBox {
  text-align: center;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  font-family: "sgReg";
  scroll-snap-align: start;
  flex-shrink: 0;
  margin-right: 1rem;
  width: 280px;
  min-width: 280px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contentBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.contentBox:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.3);
}
.contentBox:hover::before {
  transform: scaleX(1);
}
@media (min-width: 640px) {
  .contentBox {
    min-width: 320px;
    width: 320px;
    padding: 1.75rem;
  }
}
@media (min-width: 768px) {
  .contentBox {
    min-width: 360px;
    width: 360px;
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .contentBox {
    min-width: 400px;
    width: 400px;
    padding: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .contentBox {
    min-width: 450px;
    width: 450px;
    padding: 2.5rem;
  }
}
.contentBox .scroll {
  overflow-y: auto;
  height: 450px;
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .contentScroll:first-child {
    margin-left: 3%;
  }
}

/* Modern Content Title */
.contentTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
}
.contentTitle h1 {
  flex: 1;
  margin: 0;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contentTitle svg {
  width: 50px;
  height: auto;
  margin-left: 1rem;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .contentTitle {
    font-size: 1rem;
  }
}

.footerPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  color: black;
  background-image: url("../images/beaker_logo_no_stash.png");
  transition: opacity 1.2s ease-out;
  z-index: 9999;
}

/* Modern Header */
.header {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3%;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.header h1 {
  color: var(--text-primary);
  font-family: "sgReg";
  font-weight: 700;
  animation: titleShift 12s ease-in-out infinite;
  text-shadow: 0 2px 20px rgba(0, 102, 255, 0.3);
}
.header svg {
  width: 50px;
  height: auto;
  fill: #ffffff;
  filter: drop-shadow(0 2px 10px rgba(0, 102, 255, 0.4));
  animation: svgShift 12s ease-in-out infinite;
}

@keyframes svgShift {
  0%, 100% {
    fill: #ffffff;
    transform: scale(1);
  }
  50% {
    fill: var(--accent);
    transform: scale(1.05);
  }
}
@keyframes titleShift {
  0%, 100% {
    color: #ffffff;
  }
  35% {
    color: var(--primary);
  }
  50% {
    color: var(--accent);
  }
  85% {
    color: var(--primary);
  }
}
/* Modern Intro Text */
.introText {
  font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98));
  color: #1a202c;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  line-height: 1.8;
  border-left: 4px solid var(--primary);
}
@media (min-width: 768px) {
  .introText {
    font-size: 1.1rem;
    padding: 2.5rem 3rem;
    margin: 3rem 5%;
  }
}
@media (min-width: 1024px) {
  .introText {
    margin: 3rem 15%;
  }
}

/* Modern Container for Content Scroll */
.contentScroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
  padding: 1.5rem 0 2.5rem;
  margin: 1.5rem 0;
  gap: 0;
}
.contentScroll::-webkit-scrollbar {
  height: 8px;
}
.contentScroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.contentScroll::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
.contentScroll::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.introVideo {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .introVideo {
    width: 100%;
    margin-top: 0;
  }
}

.contentBody {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Modern Social Icon Bar */
#socialIconBar {
  background: rgba(30, 40, 70, 0.95);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  #socialIconBar {
    padding: 0.75rem 0;
  }
}

.socialIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.socialIcon img {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(2) invert(1);
  opacity: 0.7;
  cursor: pointer;
}
.socialIcon img:hover {
  filter: grayscale(0%) brightness(1.4) drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
  transform: scale(1.15) translateY(-2px);
  opacity: 1;
}

.spacer_50 {
  min-height: 50px;
}

#addFormDiv,
#editFormDiv {
  display: none;
}

.taskDiv span {
  font-size: 0.9rem;
}
.taskDiv span:first-child {
  font-weight: 800;
  color: var(--accent);
}

/* Modern Button Styles */
.blueButton {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.blueButton:hover {
  background: linear-gradient(135deg, var(--primary-dark), #003d99);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.blueButton:active {
  transform: translateY(0);
}

/* ===== LUXURY LANDING PAGE ===== */

.lux-hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}
.lux-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.lux-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.lux-headline {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.lux-highlight {
  background: linear-gradient(135deg, #00d4ff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.lux-subhead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.lux-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.lux-btn-primary {
  background: linear-gradient(135deg, #0066ff, #0052cc);
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}
.lux-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.35);
}
.lux-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.lux-btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

/* Trust Bar */
.lux-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.lux-trust-item {
  text-align: center;
}
.lux-trust-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.lux-trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
  display: block;
}
.lux-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Services */
.lux-services {
  padding: 5rem 2rem;
  text-align: center;
}
.lux-section-title {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}
.lux-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lux-headline { font-size: 3.8rem; }
  .lux-section-title { font-size: 2.5rem; }
  .lux-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Cards */
.lux-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.lux-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0066ff, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lux-card:hover {
  border-color: rgba(0, 102, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.lux-card:hover .lux-card-accent {
  opacity: 1;
}
.lux-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
.lux-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}
.lux-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.lux-card ul li {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}
.lux-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0066ff;
  transform: translateY(-50%);
}
.lux-card-cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}
.lux-card-cta:hover {
  border-color: #0066ff;
  color: #fff;
}

/* Differentiator */
.lux-differ {
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lux-differ-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .lux-differ-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.lux-differ-text p {
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-size: 0.95rem;
}
.lux-point {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.lux-point-line {
  width: 2px;
  min-height: 100%;
  background: linear-gradient(180deg, #0066ff, transparent);
  border-radius: 2px;
  flex-shrink: 0;
}
.lux-point strong {
  color: #fff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.25rem;
}
.lux-point p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.lux-cta-section {
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Form Inputs */
.lux-input {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.lux-input:focus {
  outline: none;
  border-color: rgba(0, 102, 255, 0.5);
}
.lux-input::placeholder {
  color: rgba(255,255,255,0.25);
}

/* ===== LUXURY FOOTER ===== */

.lux-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 2rem;
  padding: 0;
}
.lux-footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}
@media (min-width: 768px) {
  .lux-footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.lux-footer-col {}
.lux-footer-brand {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 0.75rem;
}
.lux-footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.lux-footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.lux-footer-social a {
  opacity: 0.4;
  transition: opacity 0.3s ease;
  color: #fff;
  display: flex;
  align-items: center;
}
.lux-footer-social a:hover {
  opacity: 0.9;
}
.lux-footer-social img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%) brightness(2) invert(1);
}
.lux-footer-heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  margin: 0 0 1rem;
  font-weight: 500;
}
.lux-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lux-footer-links li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  text-align: left;
}
.lux-footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}
.lux-footer-links a:hover {
  color: #fff;
}

/* Share Buttons */
.lux-share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lux-share-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.lux-share-btn:hover {
  border-color: rgba(0, 102, 255, 0.4);
  color: #fff;
}

/* Bottom Bar */
.lux-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
}
.lux-footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.lux-footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  margin: 0;
}
.lux-footer-legal {
  display: flex;
  gap: 1.5rem;
}
.lux-footer-legal a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
.lux-footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* Override old styles */
.footer { display: none; }
#socialIconBar { display: none; }

/*# sourceMappingURL=style.css.map */
