/* ===========================================
   FuzeOBS Landing Page Styles
   =========================================== */

.section-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 500px;
}

/* ===========================================
   Cubes Hero Section
   =========================================== */
.cubes-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cubes-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-mask-image: 
    linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: 
    linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-composite: intersect;
}

.cubes-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  pointer-events: none;
}

.fuzeobs-title {
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 800;
  letter-spacing: 8px;
  color: #fff;
  text-shadow: 
    0 0 20px rgba(0, 0, 0, 1),
    0 0 40px rgba(0, 0, 0, 1),
    0 0 60px rgba(0, 0, 0, 1);
  margin: 0;
}

.fuzeobs-subtitle {
  font-size: clamp(11px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: clamp(2px, 0.5vw, 4px);
  text-transform: uppercase;
  margin-top: 14px;
  padding: 8px 16px;
  position: relative;
}

.fuzeobs-subtitle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0);
  filter: blur(15px);
  z-index: -1;
}

/* Cubes Animation - Optimized */
:root {
  --col-gap: 3%;
  --row-gap: 3%;
  --cube-perspective: 99999999px;
  --cube-face-border: 1px dashed rgba(255, 255, 255, 0.7);
  --cube-face-bg: #000;
}

.default-animation {
  position: relative;
  width: 100%;
  height: 100%;
}

.default-animation--scene {
  display: grid;
  width: 100%;
  height: 100%;
  column-gap: var(--col-gap);
  row-gap: var(--row-gap);
  perspective: var(--cube-perspective);
  grid-auto-rows: 1fr;
  contain: layout style;
}

.cube {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  will-change: transform;
}

.cube::before {
  content: '';
  position: absolute;
  top: -10px; right: -10px; bottom: -10px; left: -10px;
}

.default-animation .cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cube-face-bg);
  border: var(--cube-face-border);
  backface-visibility: hidden;
  will-change: background-color, border-color;
}

.default-animation .cube-face--top { transform: translateY(-50%) rotateX(90deg); }
.default-animation .cube-face--bottom { transform: translateY(50%) rotateX(-90deg); }
.default-animation .cube-face--left { transform: translateX(-50%) rotateY(-90deg); }
.default-animation .cube-face--right { transform: translateX(50%) rotateY(90deg); }
.default-animation .cube-face--back,
.default-animation .cube-face--front { transform: rotateY(-90deg) translateX(50%) rotateY(90deg); }

/* ===========================================
   Download Section
   =========================================== */
.download-section {
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  z-index: 4;
}

.download-section h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.download-section .tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.platform-downloads {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  min-width: 200px;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.platform-windows:hover,
.platform-mac:hover,
.platform-linux:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.platform-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}

.platform-icon svg { opacity: 0.9; }
.platform-info { display: flex; flex-direction: column; text-align: left; }
.platform-name { font-size: 16px; font-weight: 600; }
.platform-version { font-size: 12px; color: rgba(255, 255, 255, 0.5); margin-top: 2px; }
.platform-action { margin-left: auto; opacity: 0.6; flex-shrink: 0; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-number { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #fff; margin-bottom: 8px; }
.stat-label { font-size: clamp(11px, 1.2vw, 14px); color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 1px; }

/* ===========================================
   Pricing Section
   =========================================== */
.pricing-section {
  padding: 80px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}

.pricing-card.pricing-featured {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px;
}

.pricing-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.pricing-header h3 { font-size: 18px; font-weight: 600; color: #fff; margin: 0 0 12px 0; }
.pricing-price { font-size: 40px; font-weight: 700; color: #fff; }
.pricing-period { font-size: 14px; color: rgba(255, 255, 255, 0.5); }

.pricing-features { list-style: none; padding: 0; margin: 0; }

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
}

.pricing-features li.included { color: rgba(255, 255, 255, 0.8); }
.pricing-features li.included svg { color: #22c55e; }
.pricing-features li.highlight { color: #fff; font-weight: 500; }
.pricing-features li.excluded { color: rgba(255, 255, 255, 0.4); }
.pricing-features li.excluded svg { color: rgba(255, 255, 255, 0.3); }
.pricing-features li.limited svg { color: rgba(255, 255, 255, 0.5); }

.pricing-cta { text-align: center; margin-top: 40px; }

/* ===========================================
   Tabs Showcase Section
   =========================================== */
.tabs-showcase {
  padding: 80px 20px 10px;
  overflow: hidden;
}

.tabs-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tabs-showcase-content .section-title { margin-top: 0; margin-bottom: 16px; }

.tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tab-pill {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.tabs-showcase-cards {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding-right: 80px;
}

/* CardSwap */
.card-swap-container {
  position: relative;
  perspective: 900px;
}

.swap-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 512px;
  height: 288px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  backface-visibility: hidden;
  box-shadow: none;
  overflow: hidden;
}

.swap-card-titlebar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px 10px 0 0;
}

.titlebar-dots {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}

.titlebar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.titlebar-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.swap-card-body {
  padding: 20px;
  height: calc(100% - 42px);
  background: #0a0a0a;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.swap-card.swap-card-image .swap-card-body { padding: 0; }

.swap-card.swap-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 0 10px 10px;
}

.swap-card-fallback {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swap-card-fallback h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}

.swap-card-fallback p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.swap-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}

.swap-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.swap-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.swap-card-features li {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* ===========================================
   Video Tutorial Section
   =========================================== */
.video-section {
  padding: 100px 20px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===========================================
   Platforms Section
   =========================================== */
.platforms-section {
  padding: 70px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.platforms-grid {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.platform-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: default;
}

.platform-logo:hover { opacity: 1; }
.platform-logo[data-platform="twitch"]:hover { color: #9146FF; }
.platform-logo[data-platform="youtube"]:hover { color: #FF0000; }
.platform-logo[data-platform="kick"]:hover { color: #53FC18; }
.platform-logo[data-platform="tiktok"]:hover { color: #FE2858; }
.platform-logo[data-platform="facebook"]:hover { color: #1877F2; }

.platform-logo span { font-size: 12px; font-weight: 500; letter-spacing: 1px; }
.platform-logo {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  margin-top: -6px;
}

/* ===========================================
   Features Section
   =========================================== */
.features-section { 
  padding: 50px 20px; 
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 12px; letter-spacing: -1px; color: #fff; }
.section-subtitle { font-size: clamp(14px, 1.5vw, 18px); color: rgba(255, 255, 255, 0.5); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.feature-card p { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.7; }

/* ===========================================
   Workflow Section
   =========================================== */
.workflow-section {
  padding: 70px 20px;
}

.workflow-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.workflow-step { flex: 1; text-align: center; max-width: 300px; }

.step-number {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.393);
  margin-bottom: 14px;
  font-family: monospace;
}

.workflow-step h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.workflow-step p { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.7; }
.workflow-arrow { color: rgba(255, 255, 255, 0.15); flex-shrink: 0; }

/* ===========================================
   Widgets Section
   =========================================== */
.widgets-section { 
  padding: 80px 20px; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widgets-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.widget-card {
  text-align: center;
  padding: 20px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s;
}

.widget-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.widget-icon { margin-bottom: 10px; color: rgba(255, 255, 255, 0.7); }
.widget-card h4 { font-size: 13px; font-weight: 600; color: #fff; margin: 0 0 4px 0; }
.widget-card p { font-size: 11px; color: rgba(255, 255, 255, 0.5); margin: 0; }

/* ===========================================
   Custom CTA
   =========================================== */
.custom-cta { padding: 70px 20px; text-align: center; }
.custom-cta h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 600; margin-bottom: 10px; color: #fff; }
.custom-cta p { font-size: clamp(14px, 1.5vw, 16px); color: rgba(255, 255, 255, 0.5); margin-bottom: 28px; }

/* ===========================================
   Buttons
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-large { padding: 16px 40px; font-size: 16px; }
.btn-primary { background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(168, 85, 247, 0.4); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }
.btn-outline { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

/* ===========================================
   Reviews Carousel Section
   =========================================== */
.reviews-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    overflow: hidden;
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-section .section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-top: 12px;
}

.reviews-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

.reviews-carousel.scrolling {
    animation: carousel-scroll var(--scroll-duration, 30s) linear infinite;
}

@keyframes carousel-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(var(--scroll-distance, -50%), 0, 0); }
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.review-card-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.review-card-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.review-card-name {
    font-weight: 600;
    font-size: 17px;
    color: #fff;
}

.review-card-name::before {
    content: '@';
    position: relative;
    top: -1px;
    right: 3px;
}

.review-card-separator {
    width: 1px;
    height: 18px;
    background: #fff;
}

/* Platform Icons */
.review-card-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.review-card-platform.platform-twitch { color: #9146ff; }
.review-card-platform.platform-youtube { color: #ff0000; }
.review-card-platform.platform-kick { color: #53fc18; }
.review-card-platform.platform-tiktok { color: #ff0050; }
.review-card-platform.platform-facebook { color: #1877f2; }
.review-card-platform.platform-other { color: rgba(255,255,255,0.5); }

.review-card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.review-card-stars .star {
    color: #ffcc00;
}

.review-card-stars .star:not(.filled) {
    color: rgba(255, 255, 255, 0.15);
}

.review-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.review-read-more {
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 10px;
    transition: color 0.2s;
}

.review-read-more:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Review Modal */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.review-modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    padding: 28px;
    position: relative;
}

.review-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s;
}

.review-modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.review-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.review-modal-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s;
}

.review-modal-avatar:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

.review-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-modal-avatar span {
    font-weight: 700;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
}

.review-modal-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.review-modal-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
}

.review-modal-name {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.review-modal-name:hover {
    opacity: 0.7;
}

.review-modal-name::before {
    content: '@';
    position: relative;
    top: -1px;
    right: 3px;
}

.review-modal-platform {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
}

.review-modal-platform.platform-twitch { color: #9146ff; }
.review-modal-platform.platform-youtube { color: #ff0000; }
.review-modal-platform.platform-kick { color: #53fc18; }
.review-modal-platform.platform-tiktok { color: #ff0050; }
.review-modal-platform.platform-facebook { color: #1877f2; }
.review-modal-platform.platform-other { color: rgb(239, 239, 239); }

.review-modal-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-modal-stars .star {
    font-size: 20px;
    color: #ffcc00;
}

.review-modal-stars .star:not(.filled) {
    color: rgba(255, 255, 255, 0.15);
}

.review-modal-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===========================================
   Responsive - Large Screens (1440px+)
   =========================================== */
@media (min-width: 1440px) {
  .cubes-hero { max-height: 800px; }
  .features-grid { gap: 40px; }
  .pricing-grid { max-width: 1100px; gap: 32px; }
  .tabs-showcase-layout { max-width: 1400px; gap: 80px; }
  .swap-card { width: 600px; height: 338px; }
  .tabs-showcase-cards { height: 450px; }
}

/* ===========================================
   Responsive - Desktop (1024px - 1440px)
   =========================================== */
@media (max-width: 1200px) {
  .tabs-showcase-layout { gap: 40px; }
  .swap-card { width: 480px; height: 270px; }
  .tabs-showcase-cards { height: 360px; }
}

/* ===========================================
   Responsive - Tablet (768px - 1024px)
   =========================================== */
@media (max-width: 1024px) {
  .tabs-showcase-layout { 
    grid-template-columns: 1fr; 
    gap: 50px;
    text-align: center;
  }
  .tabs-showcase-content { order: 1; }
  .tabs-showcase-cards { order: 2; height: 340px; padding-right: 60px; }
  .section-desc { margin: 0 auto; }
  .swap-card { width: 440px; height: 248px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .widgets-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===========================================
   Responsive - Mobile (max 768px)
   =========================================== */
@media (max-width: 768px) {
  .cubes-hero { 
    min-height: 350px; 
    height: 55vh;
    max-height: 450px;
  }
  
  .fuzeobs-title { letter-spacing: 4px; }
  
  .download-section { padding: 60px 16px 40px; }
  .download-section h2 { font-size: 28px; }
  
  .platform-downloads { flex-direction: column; align-items: center; }
  .platform-card { width: 100%; max-width: 280px; }
  
  .hero-stats { gap: 24px; }
  
  .platforms-section { padding: 50px 16px; }
  .platforms-grid { gap: 20px; }
  .platform-logo svg { width: 32px; height: 32px; }
  
  .tabs-showcase { padding: 60px 16px 10px; }
  .tabs-showcase-layout { gap: 30px; }
  .tabs-showcase-cards { 
    height: 260px; 
    padding-right: 0;
    justify-content: center;
  }
  .swap-card { width: 280px; height: 158px; }
  .swap-card-titlebar { padding: 8px 10px; }
  .titlebar-dots span { width: 8px; height: 8px; }
  .titlebar-title { font-size: 10px; }
  .swap-card-body { padding: 12px; }
  .swap-card-title { font-size: 16px; }
  .swap-card-desc { font-size: 11px; margin-bottom: 10px; }
  .swap-card-features li { font-size: 10px; padding: 3px 8px; }
  
  .features-section { padding: 50px 16px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 20px; }
  
  .workflow-section { padding: 50px 16px; }
  .workflow-grid { flex-direction: column; gap: 24px; }
  .workflow-arrow { transform: rotate(90deg); }
  .workflow-step { max-width: 100%; }
  
  .widgets-section { padding: 60px 16px; }
  .widgets-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .widget-card { padding: 16px 10px; }
  
  .pricing-section { padding: 60px 16px; }
  
  .video-section { padding: 60px 16px; }
  
  .custom-cta { padding: 50px 16px; }
  
  .section-header { margin-bottom: 40px; }

  .reviews-section {
        padding: 60px 0;
    }
    
    .review-card {
        width: 280px;
        padding: 20px;
    }
}

/* ===========================================
   Responsive - Small Mobile (max 480px)
   =========================================== */
@media (max-width: 480px) {
  .cubes-hero {
    min-height: 280px;
    height: 45vh;
    max-height: 350px;
  }
  
  .tabs-showcase-cards { 
    height: 220px; 
    padding-right: 0;
  }
  .swap-card { 
    width: 240px; 
    height: 135px;
  }
  .card-swap-container {
    transform: scale(0.95);
    transform-origin: center center;
  }
  
  .platforms-grid { gap: 16px; }
  .platform-logo svg { width: 28px; height: 28px; }
  .platform-logo span { font-size: 10px; }
  
  .tabs-list { gap: 6px; justify-content: center; }
  .tab-pill { padding: 5px 10px; font-size: 11px; }
  
  .hero-stats { gap: 20px; }
}
/* ===========================================
   Install Help Card (on landing page)
   =========================================== */
.install-help-card {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 480px;
    margin: 0 auto 48px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
}

.install-help-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.install-help-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 83, 0.07);
    border-radius: 8px;
}

.install-help-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.install-help-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.install-help-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.35);
}

.install-help-arrow {
    flex-shrink: 0;
    opacity: 0.3;
    transition: opacity 0.2s;
}

.install-help-card:hover .install-help-arrow {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .install-help-card {
        max-width: 280px;
        margin: 0 auto 36px;
    }

    .install-help-sub {
        font-size: 10.5px;
    }
}