
.sparkle-icon[data-v-0dbd0c77] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sparkle-icon img[data-v-0dbd0c77] {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
  transition: all 0.3s ease;
}
.sparkle-icon:hover img[data-v-0dbd0c77] {
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
  transform: scale(1.1);
}

.video-floating-overlay[data-v-7a089975] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%; /* Bottom 1/4 of video */
  pointer-events: none;
  z-index: 8; /* Above video (z-index: 1) and overlay (z-index: 2), below content (z-index: 3) */
  -webkit-mask-image: linear-gradient(to top, black 70%, transparent 100%);
  mask-image: linear-gradient(to top, black 70%, transparent 100%);
}
.overlay-floating-icon[data-v-7a089975] {
  position: absolute;
  animation: float2-7a089975 infinite linear both;
  will-change: transform;
  pointer-events: none;
}
.overlay-floating-icon[data-v-7a089975]::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: calc(var(--ampY, 40px) * 0.8);
  background: linear-gradient(to bottom,
    rgba(139, 92, 246, calc(0.35 * var(--tail, 1))) 0%,
    rgba(139, 92, 246, calc(0.18 * var(--tail, 1))) 40%,
    rgba(139, 92, 246, 0.0) 100%);
  filter: blur(1px);
  pointer-events: none;
  z-index: 1;
}
@keyframes float2-7a089975 {
0% {
    transform: translateY(30%) scale(0.7) rotate(-8deg);
    opacity: 0;
}
10% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
}
100% {
    transform: translateY(-40vh) scale(1.05) rotate(8deg);
    opacity: 0;
}
}
@keyframes gentleFloat-7a089975 {
0% {
    transform: translateY(30%) scale(0.7) rotate(-8deg);
    opacity: 0;
}
10% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
}
100% {
    transform: translateY(-40vh) scale(1.05) rotate(8deg);
    opacity: 0;
}
}
.overlay-floating-icon::after {
&[data-v-7a089975] {
    transform: translateY(-40vh) scale(1.05) rotate(8deg);
    opacity: 0;
  }
.overlay-floating-icon[data-v-7a089975]::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: calc(var(--ampY, 40px) * 0.8);
  background: linear-gradient(to bottom,
    rgba(139, 92, 246, calc(0.35 * var(--tail, 1))) 0%,
    rgba(139, 92, 246, calc(0.18 * var(--tail, 1))) 40%,
    rgba(139, 92, 246, 0.0) 100%);
  filter: blur(1px);
  pointer-events: none;
  z-index: 1;
}
@keyframes gentleFloatMaterialize-7a089975 {
0% {
    transform: translateY(30%) scale(0.7) rotate(-8deg);
    opacity: 0;
}
100% {
    transform: translateY(-40vh) scale(1.05) rotate(8deg);
    opacity: 0;
}
}
}

/* ... existing styles ... */
.post-video-cta-container[data-v-b86f9c01] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20; /* Above video and other content */
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
}
.post-video-cta-button[data-v-b86f9c01] {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background-color: #8b5cf6; /* Purple color */
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.post-video-cta-button[data-v-b86f9c01]:hover {
  background-color: #7c3aed;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(139, 92, 246, 0.6);
}
.post-video-cta-button[data-v-b86f9c01]:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

/* Fade transition for the button */
.fade-enter-active[data-v-b86f9c01], .fade-leave-active[data-v-b86f9c01] {
  transition: opacity 0.5s ease;
}
.fade-enter-from[data-v-b86f9c01], .fade-leave-to[data-v-b86f9c01] {
  opacity: 0;
}

.fullscreen-video-container[data-v-b86f9c01] {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile browsers */
  overflow: hidden;
  background-color: #000; /* Solid black background while video loads */
  /* Support for notched devices */
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* Gradient fade at the bottom - transition from video to page */
.fullscreen-video-container[data-v-b86f9c01]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, transparent, #000);
  z-index: 10;
  pointer-events: none;
}
.video-background[data-v-b86f9c01] {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-poster[data-v-b86f9c01] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.loading-spinner[data-v-b86f9c01] {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-b86f9c01 1s linear infinite;
}
@keyframes spin-b86f9c01 {
to { transform: rotate(360deg);
}
}
.video-iframe[data-v-b86f9c01] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  /* Performance optimizations */
  will-change: transform;
  pointer-events: none;
  /* Improve rendering on mobile */
  backface-visibility: hidden;
  /* Parallax effect applied via inline style */
}
.content[data-v-b86f9c01] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 80px 2rem 2rem; /* Added right padding for HUD nav */
  box-sizing: border-box;
}
.headline[data-v-b86f9c01] {
  font-size: clamp(2rem, 5vw, 4rem); /* Fluid typography */
  font-weight: 700;
  font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  letter-spacing: -0.02em;
  max-width: 90%;
  line-height: 1.1;
}
.subheadline[data-v-b86f9c01] {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
  max-width: 800px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  opacity: 0.9;
}
.cta-button[data-v-b86f9c01] {
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background-color: #4f46e5;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.4);
  /* Better touch target size for mobile */
  min-height: 48px;
  min-width: 120px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.cta-button[data-v-b86f9c01]:hover {
  background-color: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(79, 70, 229, 0.6);
}
.cta-button[data-v-b86f9c01]:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px 0 rgba(79, 70, 229, 0.4);
}

/* Mute/Unmute Button */
.mute-button[data-v-b86f9c01] {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  /* Touch optimization */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mute-button[data-v-b86f9c01]:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}
.mute-button[data-v-b86f9c01]:active {
  transform: scale(0.95);
}
.mute-button svg[data-v-b86f9c01] {
  flex-shrink: 0;
}

/* Responsive styles - simplified due to clamp() */
@media (max-width: 768px) {
.content[data-v-b86f9c01] {
    padding: 1.5rem;
    padding-top: 4rem; /* Space for logo/nav on mobile */
}
.mute-button[data-v-b86f9c01] {
    bottom: 1.5rem;
    right: 1.5rem;
}
}

/* Handle landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
.headline[data-v-b86f9c01] {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.subheadline[data-v-b86f9c01] {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.cta-button[data-v-b86f9c01] {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}
}

/* Support for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
.mute-button[data-v-b86f9c01] {
    bottom: calc(2rem + env(safe-area-inset-bottom));
    right: calc(2rem + env(safe-area-inset-right));
}
@media (max-width: 768px) {
.mute-button[data-v-b86f9c01] {
      bottom: calc(1.5rem + env(safe-area-inset-bottom));
      right: calc(1.5rem + env(safe-area-inset-right));
}
}
}
