@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&family=Figtree:ital,wght@0,300..900;1,300..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
li {
  text-decoration: none;
  list-style-type: none;
}
a:hover,
li:hover {
  text-decoration: none;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
  outline: none;
}

button {
  border: none;
  outline: 0;
  box-shadow: none;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  background: #121522;
  font-family: "Poppins", sans-serif;
  background-image: url(https://ik.imagekit.io/gku4adhog/prsmx/solutions/mobile-ads/bg-hero.png?updatedAt=1735560997631);
  background-repeat: no-repeat;
  background-size: cover;
  scrollbar-width: none;
  overflow-x: hidden;
  overflow-y: auto;
}

h1 {
  font-size: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.font-18 {
  font-size: 18px;
}
.font-14 {
  font-size: 14px;
}
.font-29 {
  font-size: 29px;
}
.text-pink {
  color: #a85aa3;
}

/*  */
.header {
  background: #212936;
  padding: 10px 0px;
}

.nav-tabs-custom .nav-link {
  color: #999;
  font-size: 16px;
  background-color: #121522;
  padding: 6px 16px;
  border-radius: 25px;
  font-weight: 600;
  margin-left: 12px;
  transition: all 0.3s;
}

.nav-tabs-custom .nav-link.active {
  background: #a85aa3;
  color: #ffffff;
}

.hero-section {
  padding: 50px 0px 30px;
}

.text-paragraph {
  font-size: 16px;
  color: #aaa;
}
.text-paragraph-md {
  font-size: 14px;
  color: #aaa;
}
.text-paragraph-sm {
  font-size: 13px;
  color: #aaa;
}

.product-cards-section .product-card {
  background: #182133;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(185, 79, 185, 0.1);
}

.product-cards-section .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(185, 79, 185, 0.3);
  border-color: rgba(185, 79, 185, 0.4);
}

.product-cards-section .product-card .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-cards-section .product-card:hover .card-image {
  transform: scale(1.1);
}

.product-cards-section .product-card .card-content {
  padding: 18px 10px 18px 10px;
}

/*  */

.product-mob-ad-page{
  padding: 10px 0px 10px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  transition: all 0.3s;
}

.back-button:hover {
  color: #b94fb9;
  transform: translateX(-5px);
}

.back-button::before {
  content: "←";
}


.product-mob-ad-page .phone-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 15px;
  background: linear-gradient(135deg, #3a4a5a 0%, #2d3d4d 100%);
  border-radius: 45px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-mob-ad-page .phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: linear-gradient(135deg, #3a4a5a 0%, #2d3d4d 100%);
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.product-mob-ad-page .phone-notch::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #1a1d2e;
  border-radius: 10px;
}

.product-mob-ad-page .phone-notch::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: #1a1d2e;
  border-radius: 50%;
}

.product-mob-ad-page .phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;   /* TRUE modern phone shape */
  border-radius: 35px;
  overflow-y: scroll;
  overflow-x: hidden;
  background: #000;
}



.product-mob-ad-page .phone-screen::-webkit-scrollbar {
  width: 0px;
}

.product-mob-ad-page .phone-screen {
  scrollbar-width: none;
}

.product-mob-ad-page .phone-screen {
  -ms-overflow-style: none;
}

.product-mob-ad-page .phone-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-mob-ad-page .phone-content img,
.phone-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-mob-ad-page .power-button {
  position: absolute;
  right: -5px;
  top: 120px;
  width: 5px;
  height: 80px;
  background: linear-gradient(135deg, #4a5a6a 0%, #3d4d5d 100%);
  border-radius: 0 3px 3px 0;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
}

.product-mob-ad-page .volume-buttons {
  position: absolute;
  left: -5px;
  top: 100px;
}

.product-mob-ad-page .volume-button {
  width: 5px;
  height: 50px;
  background: linear-gradient(135deg, #4a5a6a 0%, #3d4d5d 100%);
  border-radius: 3px 0 0 3px;
  margin-bottom: 10px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
}

.product-mob-ad-page .phone-frame::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #b94fb9, #8b3a8b, #b94fb9);
  border-radius: 48px;
  opacity: 0.3;
  z-index: -1;
  filter: blur(15px);
  animation: glowPulse 3s ease-in-out infinite;
}


/* CTV Css */
.ctv-ad-page-section{
  padding: 30px 0px 20px;
}


/* TV Frame */
.ctv-ad-page-section .tv-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(135deg, #3a4a5a 0%, #2d3d4d 100%);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ctv-ad-page-section .tv-screen {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8), 0 5px 20px rgba(0, 0, 0, 0.3);
}
.ctv-ad-page-section .tv-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.ctv-ad-page-section .tv-content img,
.tv-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
/* TV Stand */
.ctv-ad-page-section .tv-stand {
  position: relative;
  width: 200px;
  height: 15px;
  background: linear-gradient(135deg, #4a5a6a 0%, #3d4d5d 100%);
  border-radius: 8px;
  margin: 20px auto 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ctv-ad-page-section .tv-stand::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 15px;
background: linear-gradient(135deg, #4a5a6a 0%, #3d4d5d 100%);
  border-radius: 10px 10px 0px 0px;
}

/* Light Glow Effect */
.ctv-ad-page-section .tv-frame::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #b94fb9, #8b3a8b, #b94fb9);
  border-radius: 27px;
  opacity: 0.3;
  z-index: -1;
  filter: blur(10px);
  animation: glowPulse 3s ease-in-out infinite;
}
video::-webkit-media-controls-panel {
    background: rgba(0,0,0,0.0) !important;
}
