/* ===== BLINK PLAYER THEME - RED PASSION ===== */
:root {
  --blink-bg-light: #fef2f2;
  --blink-bg-card: #ffffff;
  --blink-primary: #dc2626;
  --blink-secondary: #ef4444;
  --blink-accent: #f97316;
  --blink-text: #1e293b;
  --blink-text-muted: #475569;
  --blink-border: #fecaca;
  --blink-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --blink-hover: #fee2e2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--blink-bg-light);
  color: var(--blink-text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  width: 100%;
}

/* custom scroll */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #fecaca;
}

::-webkit-scrollbar-thumb {
  background: var(--blink-primary);
  border-radius: 10px;
}

/* navbar */
.navbar-blink {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid var(--blink-border);
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.nav-link-blink {
  color: var(--blink-text) !important;
  font-weight: 500;
  margin: 0 0.2rem;
  transition: 0.2s;
  letter-spacing: -0.2px;
}

.nav-link-blink:hover,
.nav-link-blink.active {
  color: var(--blink-primary) !important;
}

.navbar-brand-logo {
  height: 110px;
  width: auto;
}

@media (max-width: 768px) {
  .navbar-brand-logo {
    height: 70px;
  }
}

.btn-blink-primary {
  background: linear-gradient(135deg, var(--blink-primary), var(--blink-secondary));
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  display: inline-block;
}

.btn-blink-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(220, 38, 38, 0.4);
  color: white;
}

.btn-blink-outline {
  background: transparent;
  border: 1.5px solid var(--blink-primary);
  color: var(--blink-primary);
  padding: 9px 23px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}

.btn-blink-outline:hover {
  background: rgba(220, 38, 38, 0.08);
  color: var(--blink-primary);
}

/* hero section button - white color */
.btn-hero-white {
  background: white;
  border: none;
  color: #dc2626;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.btn-hero-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: #f8f8f8;
  color: #b91c1c;
}

/* HERO SECTION - PURE RED GRADIENT */
.hero-blink {
  position: relative;
  padding: 100px 0 60px;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
}

.hero-blink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-blink .soft-circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSoft 10s infinite ease-in-out;
  z-index: 0;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(15px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

.hero-blink .gradient-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  animation: slowMove 20s infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes slowMove {
  0% {
    transform: translate(-10%, -10%) scale(1);
    opacity: 0.4;
  }

  100% {
    transform: translate(10%, 10%) scale(1.2);
    opacity: 0.7;
  }
}

.hero-blink .light-sweep {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 160%;
  height: 200%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.06),
      transparent);
  transform: rotate(30deg);
  animation: sweepLight 18s infinite linear;
  pointer-events: none;
  z-index: 0;
}

@keyframes sweepLight {
  0% {
    transform: rotate(30deg) translateX(-120%);
  }

  50% {
    transform: rotate(30deg) translateX(50%);
  }

  100% {
    transform: rotate(30deg) translateX(220%);
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

.hero-badge-blink {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 6px 18px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffdddd;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.main-title-blink {
  font-size: 3.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #ffcccc, #ffe0e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
}

.hero-blink .subtitle {
  color: #ffe0e0 !important;
}

.hero-blink .lead {
  color: #ffdddd !important;
}

/* Hero Image Motion Animation */
.hero-image-large {
  max-width: 100%;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 2;
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* stats grid - INLINE/HORIZONTAL LAYOUT */
.stats-grid-blink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
  width: 100%;
}

.stat-item-blink {
  background: white;
  border-radius: 32px;
  padding: 0.8rem 1.8rem;
  text-align: center;
  border: 1px solid var(--blink-border);
  transition: 0.2s;
  box-shadow: var(--blink-shadow);
  min-width: 120px;
}

.stat-item-blink:hover {
  transform: translateY(-3px);
  border-color: var(--blink-primary);
}

.stat-number-blink {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blink-primary);
  display: block;
}

.stat-item-blink div:last-child {
  font-size: 0.85rem;
  color: var(--blink-text-muted);
}

@media (max-width: 768px) {
  .stats-grid-blink {
    gap: 1rem;
  }

  .stat-item-blink {
    padding: 0.5rem 1.2rem;
    min-width: 100px;
  }

  .stat-number-blink {
    font-size: 1.2rem;
  }

  .stat-item-blink div:last-child {
    font-size: 0.7rem;
  }
}

/* glass cards */
.glass-card-blink {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid var(--blink-border);
  transition: 0.25s;
  box-shadow: var(--blink-shadow);
  width: 100%;
}

.glass-card-blink-light {
  background: #ffffff;
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid var(--blink-border);
  box-shadow: var(--blink-shadow);
  width: 100%;
}

/* app cards */
.app-card-blink {
  background: white;
  border-radius: 28px;
  padding: 1.5rem 0.8rem;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--blink-border);
  box-shadow: var(--blink-shadow);
  width: 100%;
  height: 100%;
}

.app-card-blink:hover {
  transform: translateY(-6px);
  border-color: var(--blink-primary);
  box-shadow: 0 20px 30px -12px rgba(220, 38, 38, 0.2);
}

.app-icon-circle-blink {
  width: 150px;
  height: 150px;
  background: #fef2f2;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.app-icon-circle-blink img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.btn-app-blink {
  background: transparent;
  border: 1px solid var(--blink-primary);
  color: var(--blink-primary);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 0.8rem;
  margin: 0 4px;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}

.btn-app-blink:hover {
  background: var(--blink-primary);
  color: white;
}

/* apps section */
.apps-section {
  padding: 4rem 0;
  width: 100%;
}

/* feature rows */
.feature-row {
  padding: 5rem 0;
  width: 100%;
}

.feature-img {
  border-radius: 28px;
  max-width: 100%;
  height: auto;
}

/* pricing cards */
.pricing-card-blink {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid var(--blink-border);
  transition: 0.2s;
  height: 100%;
  width: 100%;
  box-shadow: var(--blink-shadow);
}

.pricing-card-blink:hover {
  border-color: var(--blink-primary);
  box-shadow: 0 20px 30px -12px rgba(220, 38, 38, 0.2);
}

.price-amount-blink {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blink-primary);
}

.price-features {
  list-style: none;
  padding-left: 0;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #fee2e2;
}

/* pricing section */
.pricing-section {
  padding: 4rem 0;
  width: 100%;
}

/* faq */
.faq-item-blink {
  background: white;
  border-radius: 24px;
  margin-bottom: 1rem;
  border: 1px solid var(--blink-border);
  overflow: hidden;
  box-shadow: var(--blink-shadow);
  width: 100%;
}

.faq-question-blink {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blink-text);
}

.faq-answer-blink {
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: var(--blink-text-muted);
  display: none;
}

.faq-item-blink.active .faq-answer-blink {
  display: block;
}

.faq-item-blink.active .fa-chevron-down {
  transform: rotate(180deg);
}

.faq-section-new {
  padding: 4rem 0;
  width: 100%;
}

/* features section */
.features-section {
  padding: 4rem 0;
  width: 100%;
}

.feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: none;
  transition: 0.2s;
}

.feature-item-gold {
  transition: 0.2s;
  text-align: center;
}

.feature-item-gold:hover {
  transform: scale(1.05);
}

/* partners section */
.partners {
  padding: 2rem 0;
  width: 100%;
}

/* FOOTER - PURE RED GRADIENT */
.footer-blink {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer-blink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.footer-blink .footer-circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
  animation: footerFloat 12s infinite ease-in-out;
  z-index: 0;
}

@keyframes footerFloat {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-15px) translateX(10px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

.footer-blink .footer-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  animation: footerOrbMove 18s infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes footerOrbMove {
  0% {
    transform: translate(-10%, -10%) scale(1);
    opacity: 0.3;
  }

  100% {
    transform: translate(10%, 10%) scale(1.2);
    opacity: 0.6;
  }
}

.footer-blink .container {
  position: relative;
  z-index: 2;
}

.footer-blink h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
  font-size: 1.3rem;
}

.footer-blink h5:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ffdddd;
  border-radius: 3px;
}

.footer-links-blink {
  list-style: none;
  padding-left: 0;
}

.footer-links-blink li {
  margin-bottom: 0.8rem;
}

.footer-links-blink li a {
  color: #ffdddd;
  text-decoration: none;
  transition: 0.2s;
  font-size: 1rem;
  font-weight: 400;
}

.footer-links-blink li a:hover {
  color: #ffffff;
  text-decoration: underline;
  padding-left: 4px;
}

.footer-blink hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

/* footer image - no border */
.footer-app-box img {
  width: 280px;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
  border: none;
  display: inline-block;
}

/* copyright section */
.copyright-mixed {
  color: #ffdddd;
  font-size: 1rem;
  text-align: center;
}

.copyright-mixed p {
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.highlight-project {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-block;
  margin: 0 2px;
}

.copyright-mixed a {
  color: #ffdddd;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-block;
  margin: 0 2px;
}

.copyright-mixed a:hover {
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

/* whatsapp float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* back to top */
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: var(--blink-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  text-decoration: none;
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* spinner */
#spinner {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: 0.3s;
}

.blink-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(220, 38, 38, 0.2);
  border-top-color: var(--blink-primary);
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .main-title-blink {
    font-size: 2.5rem;
  }

  .hero-blink {
    padding: 60px 0 40px;
  }

  .app-icon-circle-blink {
    width: 90px;
    height: 90px;
  }

  .app-icon-circle-blink img {
    width: 55px;
    height: 55px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .footer-links-blink li a {
    font-size: 0.9rem;
  }

  .copyright-mixed p {
    font-size: 0.85rem;
  }

  .highlight-project {
    font-size: 0.9rem;
    padding: 2px 8px;
  }

  .copyright-mixed a {
    font-size: 0.85rem;
    padding: 2px 8px;
  }

  .footer-app-box img {
    width: 200px;
  }

  .hero-image-large {
    animation: floatImageMobile 3s ease-in-out infinite;
  }

  @keyframes floatImageMobile {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-8px);
    }

    100% {
      transform: translateY(0px);
    }
  }
}

.tv-img,
.rounded-4 {
  border-radius: 28px;
  max-width: 100%;
  height: auto;
}

.text-muted-gold {
  color: var(--blink-text-muted) !important;
}

hr {
  background-color: var(--blink-border);
}

/* container max width */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* row gap */
.row {
  width: 100%;
  margin: 0;
}

/* py classes */
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}