
         /* ===== Theme Variables ===== */
         :root {
         --theme-color: #ffffff;
         --theme-color-muted: rgba(255, 255, 255, 0.75);
         --theme-border: rgba(255, 255, 255, 0.15);
         --glass-bg: rgba(255, 255, 255, 0.08);
         }
         /* ===== Body ===== */
         body {
         background-color:#230101;
         color: #ffffff;
         }
         /* ===== Glass Navbar ===== */
         .glass-navbar {
         background: var(--glass-bg);
         backdrop-filter: blur(14px);
         -webkit-backdrop-filter: blur(14px);
         border-bottom: 1px solid var(--theme-border);
         padding: 14px 0;
         }
         .navbar-brand {
         color: var(--theme-color) !important;
         font-weight: 700;
         font-size: 22px;
         letter-spacing: 0.5px;
         }
         .navbar-nav .nav-link {
         color: var(--theme-color-muted);
         font-weight: 500;
         padding: 10px 20px;
         position: relative;
         transition: all 0.3s ease;
         }
         .navbar-nav .nav-link::after {
         content: "";
         position: absolute;
         left: 50%;
         bottom: 0;
         width: 0;
         height: 2px;
         background: var(--theme-color);
         transform: translateX(-50%);
         transition: width 0.3s ease;
         }
         .navbar-nav .nav-link:hover,
         .navbar-nav .nav-link.active {
         color: var(--theme-color);
         }
         .navbar-nav .nav-link:hover::after,
         .navbar-nav .nav-link.active::after {
         width: 100%;
         }
         .nav-item {
         padding-left: 10px;
         padding-right: 10px;
         }
         /* ===== Offcanvas Glass ===== */
         .offcanvas {
         background: rgba(0, 0, 0, 0.55);
         backdrop-filter: blur(16px);
         }
         .offcanvas .nav-link {
         color: var(--theme-color-muted);
         font-size: 18px;
         }
         .offcanvas .nav-link:hover {
         color: var(--theme-color);
         }
         /* ===== Hero Banner ===== */
         .hero-banner {
         position: relative;
         min-height: 80vh;
         background: url('https://fullnightfun.com/website-images/banner/d-banner.webp') center/cover no-repeat;
         padding-top: 120px;
         overflow: hidden;
         }
         .hero-overlay {
         position: absolute;
         inset: 0;
         background: linear-gradient(177deg, rgb(71 5 5 / 30%), rgb(0 0 0 / 70%));
         backdrop-filter: blur(0px);
         }
         .hero-title {
         color: var(--theme-color);
         font-size: 52px;
         font-weight: 700;
         letter-spacing: 0.5px;
         }
         .hero-subtitle {
         color: var(--theme-color-muted);
         font-size: 18px;
         margin-top: 14px;
         line-height: 1.7;
         }
         @media (max-width: 991.98px) {
         .hero-banner {
         background-image: url("https://fullnightfun.com/website-images/mbanner.jpg");
         }
         }
         /* ===== Glass Footer ===== */
         .glass-footer {
         background: var(--glass-bg);
         backdrop-filter: blur(14px);
         -webkit-backdrop-filter: blur(14px);
         border-top: 1px solid var(--theme-border);
         padding: 60px 0 25px;
         color: var(--theme-color-muted);
         }
         .footer-brand {
         color: var(--theme-color);
         font-weight: 700;
         margin-bottom: 12px;
         }
         .footer-title {
         color: var(--theme-color);
         font-size: 15px;
         margin-bottom: 14px;
         }
         .footer-links {
         list-style: none;
         padding: 0;
         margin: 0;
         }
         .footer-links li {
         margin-bottom: 8px;
         }
         .footer-links a {
         color: var(--theme-color-muted);
         font-size: 14px;
         text-decoration: none;
         transition: all 0.3s ease;
         }
         .footer-links a:hover {
         color: var(--theme-color);
         padding-left: 4px;
         }
         .footer-btn {
         width: 100%;
         background: transparent;
         color: var(--theme-color);
         border: 1px solid var(--theme-border);
         border-radius: 30px;
         padding: 8px 0;
         transition: all 0.3s ease;
         }
         .footer-btn:hover {
         background: var(--theme-color);
         color: #000;
         }
         .footer-divider {
         border-color: var(--theme-border);
         margin: 30px 0 15px;
         }
         .footer-bottom {
         font-size: 13px;
         color: var(--theme-color-muted);
         }
         /* ===== FAQ Section ===== */
         .glass-accordion .accordion-item {
         background: var(--glass-bg);
         backdrop-filter: blur(14px);
         border: 1px solid var(--theme-border);
         border-radius: 14px;
         margin-bottom: 14px;
         overflow: hidden;
         }
         .glass-accordion .accordion-button {
         position: relative;
         background: transparent;
         color: var(--theme-color);
         font-weight: 500;
         }
         .glass-accordion .accordion-button:not(.collapsed) {
         background: rgba(255, 255, 255, 0.05);
         }
         .glass-accordion .accordion-button::after {
         filter: invert(1);
         }
         .glass-accordion .accordion-body {
         color: var(--theme-color-muted);
         font-size: 14px;
         line-height: 1.7;
         }
         /* ===== Active Underline ===== */
         .glass-accordion .accordion-button::before {
         content: "";
         position: absolute;
         left: 0;
         bottom: 0;
         width: 0;
         height: 2px;
         background: #fff;
         transition: width 0.3s ease;
         }
         .glass-accordion .accordion-button:not(.collapsed)::before {
         width: 100%;
         }
         /* ===== Testimonial Section ===== */
         .testimonial-item {
         position: relative;
         padding: 28px 28px 28px 36px;
         background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
         border-left: 3px solid rgba(255, 255, 255, 0.6);
         border-radius: 16px;
         height: 100%;
         transition: all .35s ease;
         }
         .testimonial-item:hover {
         transform: translateY(-6px);
         border-left-color: #fff;
         }
         .testimonial-text {
         font-size: 15px;
         color: var(--theme-color-muted);
         line-height: 1.8;
         }
         .testimonial-user {
         display: flex;
         align-items: center;
         gap: 12px;
         margin-top: 22px;
         }
         .testimonial-user img {
         width: 46px;
         height: 46px;
         border-radius: 50%;
         object-fit: cover;
         }
         .testimonial-name {
         color: var(--theme-color);
         font-weight: 600;
         font-size: 14px;
         }
         .testimonial-city {
         font-size: 12px;
         color: var(--theme-color-muted);
         }
         /* ===== Category Strip Layout ===== */
         .category-strip {
         display: block;
         text-align: center;
         padding: 36px 26px;
         border-radius: 26px;
         background: var(--glass-bg);
         backdrop-filter: blur(14px);
         border: 1px solid var(--theme-border);
         text-decoration: none;
         transition: all 0.35s ease;
         height: 100%;
         }
         .category-strip:hover {
         transform: translateY(-8px);
         border-color: rgba(255, 255, 255, 0.4);
         }
         .category-icon {
         width: 72px;
         height: 72px;
         margin: 0 auto 18px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 30px;
         background: rgba(255, 255, 255, 0.15);
         border: 1px solid var(--theme-border);
         }
         .category-strip h5 {
         color: var(--theme-color);
         font-size: 18px;
         font-weight: 600;
         margin-bottom: 6px;
         }
         .category-strip p {
         color: var(--theme-color-muted);
         font-size: 14px;
         margin-bottom: 14px;
         }
         .category-count {
         font-size: 12px;
         color: #fff;
         padding: 6px 14px;
         border-radius: 20px;
         background: rgba(255, 255, 255, 0.18);
         display: inline-block;
         }
         /* ===== Profile Section ===== */
         .profile-section {
         padding: 25px 0;
         }
         .profile-image-card {
         position: relative;
         overflow: hidden;
         border-radius: 22px;
         background: var(--glass-bg);
         backdrop-filter: blur(14px);
         border: 1px solid var(--theme-border);
         transition: all 0.35s ease;
         }
         .profile-image-card img {
         width: 100%;
         object-fit: cover;
         transition: transform 0.6s ease;
         }
         .profile-image-card:hover img {
         transform: scale(1.06);
         }
         /* ===== Hover Overlay (Center Icons) ===== */
         .profile-overlay {
         position: absolute;
         inset: 0;
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 18px;
         background: rgba(0, 0, 0, 0.45);
         opacity: 0;
         transition: opacity 0.35s ease;
         }
         .profile-image-card:hover .profile-overlay {
         opacity: 1;
         }
         /* ===== Icons ===== */
         .icon-btn {
         width: 54px;
         height: 54px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 22px;
         color: #fff;
         text-decoration: none;
         transition: transform 0.25s ease;
         background: #5f2d2d;
         }
         .icon-btn:hover {
         transform: scale(1.15);
         }
         /* ===== Name + Age ===== */
         .profile-info1 {
         position: absolute;
         left: 0;
         right: 0;
         bottom: 0;
         padding: 12px 16px;
         display: flex;
         justify-content: space-between;
         background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
         color: #fff;
         font-size: 14px;
         }
         /* Utility Class for Content Padding */
         .content-pad {
         background-color: #89000d;
         color: white;
         }
         /* Responsive */
         @media (max-width: 991px) {
         .hero-title { font-size: 40px; }
         .profile-image-card img { height: 360px; }
         }
         @media (max-width: 575px) {
         .hero-title { font-size: 32px; }
         .hero-subtitle { font-size: 15px; }
         .profile-image-card img { height: 450px; }
         }
         /*float btn*/
         .float-actions{
         position: fixed;
         right: 18px;
         bottom: 68px;
         z-index: 9999;
         display: flex;
         flex-direction: column;
         gap: 12px;
         }
         .float-btn{
         width: 56px;
         height: 56px;
         border-radius: 50%;
         background: rgba(255,255,255,0.12);
         border: 1px solid rgba(255,255,255,0.22);
         backdrop-filter: blur(14px);
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 24px;
         color: #fff;
         text-decoration: none;
         box-shadow: 0 6px 20px rgba(0,0,0,0.35);
         transition: all 0.25s ease;
         }
         .float-btn:hover{
         transform: scale(1.12);
         background: #fff;
         color: #000;
         }
         /* Transparent Glass Button */
         .btn-transparent{
         display:inline-flex;
         align-items:center;
         justify-content:center;
         gap:8px;
         padding:10px 22px;
         border-radius:999px;
         font-weight:600;
         font-size:14px;
         text-decoration:none;
         color:#fff;
         background: rgba(255,255,255,0.08);
         border:1px solid rgba(255,255,255,0.18);
         backdrop-filter: blur(12px);
         transition: all .25s ease;
         cursor:pointer;
         }
         .btn-transparent:hover{
         background: rgba(255,255,255,0.95);
         color:#000;
         transform: translateY(-2px);
         }
         .btn-transparent:active{
         transform: translateY(0);
         }
         /* Age Popup*/
         .age-overlay{
         position: fixed;
         inset: 0;
         background: rgba(0,0,0,0.85);
         backdrop-filter: blur(6px);
         z-index: 99999;
         display: flex;
         align-items: center;
         justify-content: center;
         }
         .age-box{
         max-width: 420px;
         width: 90%;
         background: rgba(255,255,255,0.08);
         border: 1px solid rgba(255,255,255,0.18);
         border-radius: 20px;
         padding: 28px 26px;
         text-align: center;
         backdrop-filter: blur(16px);
         color: #fff;
         }
         .age-box h3{
         font-weight: 700;
         margin-bottom: 10px;
         }
         .age-box p{
         font-size: 14px;
         line-height: 1.7;
         color: rgba(255,255,255,0.8);
         margin-bottom: 20px;
         }
         .age-actions{
         display: flex;
         gap: 14px;
         justify-content: center;
         }
         .age-actions .btn-transparent{
         min-width: 120px;
         }
         /*pricing-card*/
         .card-body{
         background: #7b1827;
         }
         .pricing-card {
         border-radius: 15px;
         overflow: hidden;
         }
         .pricing-card h3 {
         margin-bottom: 10px;
         }
         .pricing-card ul li {
         margin-bottom: 8px;
         }
         /* Sticky Footer Contact Bar */
         .sticky-contact-bar{
         position: fixed;
         bottom: 0;
         left: 0;
         width: 100%;
         display: flex;
         z-index: 9999;
         font-weight: 600;
         }
         .sticky-contact-bar a{
         width: 50%;
         text-align: center;
         padding: 14px 0;
         color: #fff;
         text-decoration: none;
         }
         .sticky-call{
         background: #000000e6;
         }
         .sticky-whatsapp{
         background: #128C07; /* WhatsApp Green */
         }
         .sticky-contact-bar a:hover{
         opacity: 0.9;
         }
         /*Category Image*/
         .circle-wrap{
         width: 300px;
         height: 300px;
         border-radius: 50%;
         background: #d55353c2;
         padding: 6px;
         box-shadow: 0 8px 20px rgba(0,0,0,.12);
         position: relative;
         overflow: hidden;
         max-width: 100%;
         }
         .circle-img{
         width: 100%;
         height: 100%;
         border-radius: 50%;
         object-fit: cover;
         transition: 0.4s ease;
         }
         /* Image zoom on hover */
         .circle-wrap:hover .circle-img{
         transform: scale(1.0);
         }
         /* Dark overlay */
         .hover-overlay{
         position: absolute;
         inset: 6px;
         border-radius: 50%;
         background: rgba(0,0,0,0.65);
         display: flex;
         justify-content: center;
         align-items: center;
         gap: 15px;
         opacity: 0;
         transition: 0.3s ease;
         }
         .circle-wrap:hover .hover-overlay{
         opacity: 1;
         }
         /* Large screen size */
         @media (min-width: 992px){
         .circle-wrap{
         width: 325px;
         height: 325px;
         }
         }
         /*Profile*/
         .p3-list{display:flex;flex-direction:column;gap:14px;margin:0 auto}
         .p3-card{
         display:flex;gap:14px;align-items:stretch;
         border-radius:18px;overflow:hidden;
         background: rgba(0,0,0,.35);
         border:1px solid rgba(255,255,255,.12);
         backdrop-filter: blur(12px);
         transition:.3s ease;
         }
         .p3-card:hover{transform:translateY(-4px);border-color:rgba(255,255,255,.22)}
         .p3-img{width:210px;flex:0 0 auto}
         .p3-img img{width:100%;height:100%;min-height:150px;object-fit:cover;display:block}
         .p3-body{padding:16px 16px 14px;flex:1}
         .p3-title{color:#fff;font-weight:800;margin:0;font-size:16px}
         .p3-sub{color:rgba(255,255,255,.70);margin:6px 0 10px;font-size:13px}
         .p3-desc{color:rgba(255,255,255,.78);margin:0;font-size:14px;line-height:1.7}
         .p3-actions{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}
         .p3-actions a{
         padding:9px 14px;border-radius:999px;text-decoration:none;
         border:1px solid rgba(255,255,255,.16);
         background: rgba(255,255,255,.06);
         color:#fff;font-weight:700;font-size:13px;
         transition:.2s ease;
         }
         @media(max-width:768px){.p3-card{flex-direction:column}.p3-img{width:100%}}
         /*table*/
         .table {
         width: 100%;
         border-collapse: collapse;
         border: 1px solid white;
         --bs-table-bg: #ffb5b500;
         }
         .table td {
         border: 1px solid white;
         color: white;
         padding: 6px;
         }
         a{
         color:white;
         text-decoration: none;
         }
      
      
.category-button-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
  }

  .category-button-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .category-button-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #7b1827;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .category-button-card img {
      height: 250px;
    }
  }      