:root{
  --bg: #05060a;
  --bg-2: #090a12;
  --text: #f5f7ff;
  --muted: rgba(245,247,255,0.72);
  --muted-2: rgba(245,247,255,0.55);
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.35);
  --accent-a: #ff00ff;
  --accent-b: #00bfff;
  --accent: linear-gradient(52.7deg, var(--accent-a), var(--accent-b));
  --radius: 18px;
  --radius-sm: 12px;
  --ring: 0 0 0 4px rgba(0,191,255,0.25);
}

html{
  scroll-behavior: smooth;
}

body{
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(255,0,255,0.18), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(0,191,255,0.16), transparent 60%),
    radial-gradient(1000px 800px at 60% 90%, rgba(255,0,255,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before,
body::after{
  content:"";
  position: fixed;
  inset: -20vh -20vw;
  pointer-events: none;
  z-index: -1;
  filter: blur(50px) saturate(1.08);
  opacity: 0.70;
  transform: translate3d(0,0,0);
}

body::before{
  background:
    radial-gradient(600px 520px at 15% 20%, rgba(255,0,255,0.22), transparent 60%),
    radial-gradient(520px 460px at 65% 15%, rgba(0,191,255,0.18), transparent 60%),
    radial-gradient(560px 520px at 75% 75%, rgba(255,0,255,0.14), transparent 60%);
  animation: liquidFloatA 18s ease-in-out infinite;
}

body::after{
  background:
    radial-gradient(620px 560px at 25% 70%, rgba(0,191,255,0.14), transparent 60%),
    radial-gradient(520px 520px at 85% 35%, rgba(255,0,255,0.16), transparent 62%),
    radial-gradient(520px 480px at 55% 85%, rgba(0,191,255,0.12), transparent 60%);
  animation: liquidFloatB 22s ease-in-out infinite;
}

@keyframes liquidFloatA{
  0%{ transform: translate3d(-1.5%, -1%, 0) scale(1); }
  50%{ transform: translate3d(1.5%, 1.2%, 0) scale(1.03); }
  100%{ transform: translate3d(-1.5%, -1%, 0) scale(1); }
}

@keyframes liquidFloatB{
  0%{ transform: translate3d(1.2%, 1.5%, 0) scale(1.02); }
  50%{ transform: translate3d(-1.2%, -1.2%, 0) scale(1); }
  100%{ transform: translate3d(1.2%, 1.5%, 0) scale(1.02); }
}

img{
  max-width: 100%;
  height: auto;
}

p{
  color: var(--muted);
}

.container{
  max-width: 1180px;
}

.section-title{
  position: relative;
}

.section-title h1{
  text-shadow: 0 14px 50px rgba(0,0,0,0.55);
}

.section-title p{
  max-width: 820px;
  margin: 10px auto 0;
  color: rgba(245,247,255,0.70);
}

.section-title h1::after{
  content:"";
  display: block;
  height: 4px;
  width: min(220px, 55%);
  margin: 16px auto 0;
  border-radius: 999px;
  background-image: var(--accent);
  opacity: 0.80;
  box-shadow: 0 18px 50px rgba(0,0,0,0.50);
}

.svg-icon{
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
}

.section-status,
.wrapper-frame{
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section-status{
  padding: 18px 16px;
}

.wrapper-frame{
  overflow: hidden;
}

.liquid-section{
  position: relative;
  overflow: hidden;
}

.liquid-section::before,
.liquid-section::after{
  content:"";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.liquid-section::before{
  left: -220px;
  top: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(255,0,255,0.28), transparent 60%);
  animation: sectionBlobA 16s ease-in-out infinite;
}

.liquid-section::after{
  right: -240px;
  bottom: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(0,191,255,0.24), transparent 60%);
  animation: sectionBlobB 19s ease-in-out infinite;
}

@keyframes sectionBlobA{
  0%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(40px, 30px, 0) scale(1.05); }
  100%{ transform: translate3d(0,0,0) scale(1); }
}

@keyframes sectionBlobB{
  0%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(-35px, -25px, 0) scale(1.07); }
  100%{ transform: translate3d(0,0,0) scale(1); }
}

.liquid-section > .container{
  position: relative;
  z-index: 1;
}

.bar-dark{
  background-color: rgba(9,9,9,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bar-dark .bar-text p{
  color: rgba(245,247,255,0.78);
  letter-spacing: 0.6px;
}

.social-media ul li{
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-media ul li a{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.social-media ul li i{
  padding: 0 !important;
}

.navbar-area{
  pointer-events: none;
}

.navbar-area .container-fluid,
.navbar-area .navbar,
.navbar-area .navbar *{
  pointer-events: auto;
}

.navbar-area.sticky,
.sticky{
  background-color: rgba(9,9,9,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar{
  padding: 16px 18px;
}

.navbar-toggler{
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-soft);
}

.navbar-toggler:focus{
  box-shadow: var(--shadow-soft), var(--ring);
}

.navbar-brand .logo{
  max-width: 44px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.navbar-nav .nav-item{
  margin-left: 16px;
}

.navbar-nav .nav-item .nav-link{
  border-radius: 12px;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.navbar-nav .nav-item .nav-link:hover{
  background-color: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.navbar-nav .nav-item .nav-link:focus-visible{
  outline: none;
  box-shadow: var(--ring);
}

.navbar-nav .nav-item .nav-link.active{
  background-image: var(--accent);
  box-shadow: 0 16px 35px rgba(0,0,0,0.35);
}

.header-area{
  height: auto;
  min-height: 100vh;
}

.header-hero{
  margin: 110px auto 0;
}

.header-bg-3{
  opacity: 0.70;
}

.header-bg-2 iframe{
  filter: saturate(1.05) contrast(1.05);
}

.heder-hero-content .header-title h3{
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: .3px;
}

.heder-hero-content .header-title h1{
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.header-image{
  margin-top: 56px;
}

.header-image img{
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.60));
  transform: translateZ(0);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn-ghost{
  background-image: none;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
}

.btn-ghost:hover{
  background-color: rgba(255,255,255,0.12);
  box-shadow: var(--shadow-soft);
}

.main-btn{
  border-radius: 14px;
  line-height: 52px;
  padding: 0 22px;
  background-image: var(--accent);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  transition: transform .2s ease, box-shadow .2s ease, background-size .2s ease;
}

.main-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  background-size: 180%;
}

.main-btn:focus-visible{
  outline: none;
  box-shadow: var(--shadow-soft), var(--ring);
}

.feature-section .single-features,
.price-section .single-price,
.users-reviews .reviews-wrapper .single-reviews,
.post-section .card,
.team-section [class^="single-card-"],
.team-section [class*=" single-card-"]{
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.liquid-card{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)) padding-box,
    linear-gradient(120deg, rgba(255,0,255,0.55), rgba(0,191,255,0.45)) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.liquid-card::before{
  content:"";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(420px 300px at 10% 15%, rgba(255,255,255,0.16), transparent 60%),
    radial-gradient(420px 300px at 90% 20%, rgba(0,191,255,0.18), transparent 62%),
    radial-gradient(420px 300px at 30% 95%, rgba(255,0,255,0.14), transparent 62%);
  opacity: 0.75;
  filter: blur(18px);
  transform: translate3d(0,0,0);
  pointer-events: none;
}

.liquid-card::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.10), transparent 40%, rgba(255,255,255,0.08));
  transform: translateX(-120%);
  opacity: 0.55;
  pointer-events: none;
}

.liquid-card:hover::after{
  animation: liquidShine 1.05s ease forwards;
}

@keyframes liquidShine{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(120%); }
}

.price-section .pricing-grid{
  margin-top: 24px;
}

.price-section .single-price{
  padding-left: 22px !important;
  padding-right: 22px !important;
}

.price-section .single-price .title-price h2{
  font-size: 20px;
  letter-spacing: .4px;
}

.price-section .single-price .subtitle-price h3{
  color: rgba(245,247,255,0.85);
  letter-spacing: 1px;
}

.price-section .single-price .info-price{
  margin-top: 10px;
}

.benefits{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.benefits li{
  position: relative;
  padding-left: 28px;
  color: rgba(245,247,255,0.80);
  line-height: 1.3;
}

.benefits li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-image: var(--accent);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.benefits li::after{
  content:"";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(255,255,255,0.92);
  border-bottom: 2px solid rgba(255,255,255,0.92);
  transform: rotate(-45deg);
}

.price-section .single-price .price-btn{
  margin-top: 18px;
}

.price-section .single-price .price-btn .main-btn{
  width: 100%;
}

.payment-badge{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid;
  place-items: center;
}

.payment-badge img{
  width: 100%;
  max-width: 280px;
  height: auto;
  opacity: 0.95;
  filter: saturate(1.05) contrast(1.05);
}

.footer-area{
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-area::before{
  content:"";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(700px 520px at 20% 30%, rgba(255,0,255,0.18), transparent 60%),
    radial-gradient(700px 520px at 80% 10%, rgba(0,191,255,0.16), transparent 60%);
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.footer-area .footer-widget,
.footer-area .footer-copyright{
  position: relative;
  z-index: 1;
}

.footer-area .footer-widget{
  background: transparent;
}

.footer-area .footer-widget .footer-link-wrapper,
.footer-area .footer-widget .footer-about{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow-soft);
}

.footer-area .footer-link .footer-link-wrapper{
  margin-right: 14px;
}

.footer-area .footer-title .title{
  color: rgba(245,247,255,0.92);
}

.footer-area .footer-link .link a{
  color: rgba(245,247,255,0.72);
}

.footer-area .footer-link .link a:hover{
  color: rgba(255,255,255,0.95);
}

.footer-area .badge-trust a{
  background-image: var(--accent);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: var(--shadow-soft);
}

.liquid-paypal .title-price h2,
.liquid-cardpay .title-price h2,
.liquid-skrill .title-price h2,
.liquid-giftcards .title-price h2{
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-section .single-features:hover,
.price-section .single-price:hover,
.post-section .card:hover,
.team-section [class^="single-card-"]:hover,
.team-section [class*=" single-card-"]:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,0.16);
}

.feature-section .single-features .icon i{
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-section .single-price .icon h2{
  font-size: 30px;
  letter-spacing: -0.4px;
}

.post-section .card{
  overflow: hidden;
}

.post-section .post-card{
  padding: 14px;
  border-radius: 22px;
}

.post-section .post-card .card-img-top{
  width: 100%;
  margin: 0;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: translateZ(0) scale(1.01);
  transition: transform .45s ease, filter .45s ease;
  filter: saturate(1.06) contrast(1.05);
}

.post-section .post-media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.post-section .post-media-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.45));
  opacity: 0.98;
  pointer-events: none;
}

.post-section .post-media-meta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.post-section .post-media-meta::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: var(--accent);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.post-section .post-media-cta{
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  letter-spacing: 0.2px;
  background-image: var(--accent);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  text-decoration: none;
  user-select: none;
}

.post-section .post-media-cta::after{
  content:"";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,0.92);
  border-bottom: 2px solid rgba(255,255,255,0.92);
  transform: rotate(-45deg);
  margin-left: 2px;
}

.post-section .post-media-cta:focus-visible{
  outline: none;
  box-shadow: var(--shadow-soft), var(--ring);
}

.post-section .post-media-cta:hover{
  filter: brightness(1.04);
}

.post-section .post-card:hover .card-img-top{
  transform: translateZ(0) scale(1.06);
  filter: saturate(1.10) contrast(1.06);
}

.post-section .post-card .card-body{
  padding: 14px 4px 10px;
  background: transparent;
}

.post-section .post-card .card-title{
  margin: 0;
  padding: 0 !important;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: rgba(245,247,255,0.94);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-section .post-card .card-text{
  margin-top: 10px;
  color: rgba(245,247,255,0.70);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-section .post-card .card-footer{
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 0 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(245,247,255,0.62) !important;
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}

.post-section .post-card .card-footer::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: var(--accent);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

@media (max-width: 576px){
  .post-section .post-card{
    padding: 12px;
  }
  .post-section .post-card .card-title{
    font-size: 18px;
  }
}

::-webkit-scrollbar{
  width: 16px;
  height: 16px;
}

::-webkit-scrollbar-track{
  background: rgba(0,0,0,0.28);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
}

::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(255,0,255,0.85), rgba(0,191,255,0.85));
  border-radius: 999px;
  border: 4px solid rgba(0,0,0,0.22);
  box-shadow: 0 14px 28px rgba(0,0,0,0.38), 0 0 22px rgba(0,191,255,0.16);
}

::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(255,0,255,0.95), rgba(0,191,255,0.95));
}

html{
  scrollbar-width: auto;
  scrollbar-color: rgba(0,191,255,0.85) rgba(0,0,0,0.35);
}

.faq-section .accordion-item,
.product-section .accordion-item{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
}

#product .explosive-menu{
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  max-width: 440px;
  padding: 14px 14px;
  direction: ltr;
  max-height: 640px;
  height: auto;
  overflow: auto;
}

#product .owl-carousel{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 80px rgba(0,0,0,0.55);
}

#product .owl-carousel::before{
  content:"";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(420px 280px at 15% 15%, rgba(255,0,255,0.18), transparent 60%),
    radial-gradient(420px 280px at 85% 15%, rgba(0,191,255,0.16), transparent 60%);
  filter: blur(24px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

#product .owl-carousel .item img{
  border-radius: 26px;
  transform: translateZ(0);
}

#product .owl-nav{
  position: relative;
  z-index: 2;
}

#product .owl-nav a.owl-prev,
#product .owl-nav a.owl-next{
  height: 56px;
  width: 56px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#product .owl-nav a.owl-prev:hover,
#product .owl-nav a.owl-next:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

#product .owl-nav a.owl-prev i,
#product .owl-nav a.owl-next i{
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#product .E-menu,
#product .buildversion{
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

#product .buildversion{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

#product .bg-line-1{
  opacity: 0.9;
}

#product .header-menu{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  filter: saturate(1.05) contrast(1.05);
}

#product .header-menu::after{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 200px at 20% 10%, rgba(255,0,255,0.22), transparent 60%),
    radial-gradient(420px 200px at 80% 10%, rgba(0,191,255,0.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28));
  pointer-events: none;
}

#product .accordion-item{
  background: transparent;
  border: 0;
}

#product .accordion-button{
  position: relative;
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

#product .accordion-header{
  margin-bottom: 10px;
}

#product .accordion-button:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

#product .accordion-button::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: var(--accent);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  margin-right: 12px;
}

#product .accordion-button::after{
  background-image: none !important;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(245,247,255,0.70);
  border-bottom: 2px solid rgba(245,247,255,0.70);
  transform: rotate(-45deg);
  translate: 0 0;
  opacity: 0.95;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
  animation: menuArrowTranslate 1.05s ease-in-out infinite, menuArrowColor 3.2s linear infinite;
}

#product .accordion-button:hover::after{
  opacity: 1;
  border-right-width: 2px;
  border-bottom-width: 2px;
}

@keyframes menuArrowTranslate{
  0%,100%{ translate: 0 0; }
  50%{ translate: 2px -2px; }
}

@keyframes menuArrowTranslateOpen{
  0%,100%{ translate: 0 0; }
  50%{ translate: 2px 2px; }
}

@keyframes menuArrowColor{
  0%{
    border-right-color: rgba(255,0,255,0.95);
    border-bottom-color: rgba(0,191,255,0.95);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)) drop-shadow(0 0 18px rgba(0,191,255,0.20));
  }
  50%{
    border-right-color: rgba(0,191,255,0.95);
    border-bottom-color: rgba(255,0,255,0.95);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)) drop-shadow(0 0 18px rgba(255,0,255,0.20));
  }
  100%{
    border-right-color: rgba(255,0,255,0.95);
    border-bottom-color: rgba(0,191,255,0.95);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)) drop-shadow(0 0 18px rgba(0,191,255,0.20));
  }
}

#product .accordion-button:not(.collapsed)::after{
  transform: rotate(45deg);
  border-color: rgba(255,255,255,0.88);
  animation: menuArrowTranslateOpen 1.05s ease-in-out infinite, menuArrowColor 3.2s linear infinite;
}

#product .accordion-button:not(.collapsed),
#product .accordion-button:focus{
  background-image: var(--accent);
  border-color: rgba(255,255,255,0.14);
}

#product .accordion-body{
  background: rgba(0,0,0,0.18);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

#product .accordion-body p{
  color: rgba(245,247,255,0.75);
}

.product-section .pt-5 h3{
  font-size: 24px;
  letter-spacing: 0.2px;
}

.product-section .pt-5 p{
  font-size: 15px;
  line-height: 1.7;
}

.product-section .section-status{
  margin-top: 34px;
}

.product-section .section-status .status > div p{
  margin: 0;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
}

.product-section .section-status .status > div p strong{
  color: rgba(245,247,255,0.90);
}

.product-section .section-status .status > div p .text-muted{
  color: rgba(245,247,255,0.65) !important;
}

.faq-section .accordion,
.product-section .accordion{
  display: grid;
  gap: 12px;
}

.faq-section .accordion-button,
.product-section .accordion-button{
  background: transparent;
  color: var(--text);
}

.faq-section .accordion-button{
  padding: 18px 18px;
}

.product-section .accordion-button{
  padding: 16px 16px;
}

.faq-section .accordion-button:focus,
.product-section .accordion-button:focus{
  box-shadow: var(--ring);
}

.faq-section .accordion-body,
.product-section .accordion-body{
  color: rgba(245,247,255,0.72);
}

.faq-section .a-access a{
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 14px;
}

.faq-section .a-access a:hover{
  background: rgba(255,255,255,0.10);
}

.faq-section iframe{
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.modal-content{
  background: rgba(12,13,20,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-header{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.modal-footer{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.btn-close{
  opacity: 1;
  filter: invert(1) brightness(1.2);
}

.cookie-modal,
.popup{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 1200;
  justify-content: center;
  align-items: center;
  padding: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cookie-modal-content,
.popup-content{
  width: 100%;
  max-width: 560px;
  background: rgba(12,13,20,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.cookie-modal-content{
  padding: 22px;
  text-align: left;
}

.cookie-modal-content h4{
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.cookie-modal-content p{
  margin-bottom: 14px;
}

#viewPolicy{
  background-image: var(--accent);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

#viewPolicy:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.cookie-policy-content{
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  max-height: 260px;
  overflow: auto;
}

.cookie-buttons{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button{
  flex: 1 1 140px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.cookie-buttons button:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  box-shadow: var(--shadow-soft);
}

.popup-content{
  max-width: 460px;
  margin: 0 auto;
  padding: 18px;
  text-align: left;
}

.popup-content p{
  margin: 0;
}

.close{
  color: rgba(255,255,255,0.75);
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
}

.close:hover,
.close:focus{
  color: #ffffff;
}

@media (max-width: 992px){
  .navbar-nav .nav-item{
    margin-left: 0;
    margin-top: 8px;
  }
  .navbar-nav .nav-item .nav-link{
    width: 100%;
  }
  .navbar-collapse{
    border-radius: 18px;
    background: rgba(9,9,9,0.35);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .navbar-collapse.show{
    padding: 10px;
  }
}

@media (max-width: 768px){
  .header-bg-2{
    display: none;
  }
  .bar-dark{
    padding: 0 18px 0 18px;
  }
  .cookie-modal-content{
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
