:root {
    --neon-pink: #ff00aa;
    --electric-purple: #b300ff;
    --deep-purple: #6a0dad;
    --soft-pink: #ff66cc;
    --pink-glow: rgba(255, 0, 170, 0.4);
    --purple-glow: rgba(179, 0, 255, 0.3);
    --black: #0a0a12;
    --darker-bg: black;
    --text-color: #f0e6ff;
}



.card-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(145deg, #0b0b12, #1a1025);
    border: 1px solid #b300ff;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(179, 0, 255, 0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0e6ff;
}

 /* Wrapper that ensures centering everywhere */
  .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 100%;
  }
  
  .cartoon-button {
    /* Reset common inherited styles */
    all: unset; 
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;

    /* Button look */
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    color: #fff;
    background: linear-gradient(145deg, #b300ff, #ff00aa);
    border-radius: 50px;

    /* Shadow and effects */
    box-shadow: 
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      inset 0 -4px 0 rgba(0, 0, 0, 0.2),
      0 8px 0 rgba(90, 0, 120, 0.7),
      0 8px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(0);
  }

  .cartoon-button:hover {
    transform: translateY(3px);
    box-shadow: 
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      inset 0 -2px 0 rgba(0, 0, 0, 0.2),
      0 5px 0 rgba(90, 0, 120, 0.7),
      0 5px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
  }

  .cartoon-button:active {
    transform: translateY(6px);
    box-shadow: 
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2),
      0 2px 0 rgba(90, 0, 120, 0.7),
      0 2px 6px rgba(0, 0, 0, 0.3);
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .cartoon-button {
      padding: 0.8rem 1.6rem;
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .cartoon-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }
  }

.main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: #ff66cc;
    margin-bottom: 1rem;
    text-shadow: 0 0 4px #ff66cc, 0 0 8px #b300ff;
}

.subheading {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
    opacity: 0.85;
}

.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d400ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 6px rgba(212, 0, 255, 0.3);
}

.paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #eae1f2;
}

.info-box {
    background: rgba(179, 0, 255, 0.08);
    border-left: 4px solid #ff00aa;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.05rem;
    color: #f8d9f8;
    margin-top: 1rem;
}

.info-box::before {
    content: '✧ ';
    color: #ff00aa;
    margin-right: 5px;
}

.list-section {
    background: rgba(25, 5, 45, 0.5);
    border: 1px solid rgba(179, 0, 255, 0.3);
    border-radius: 8px;
    padding: 1.2rem;
}

.list-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff66cc;
    margin-bottom: 0.8rem;
}

.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 1.05rem;
}

.custom-list li::before {
    content: '✦ ';
    color: #b300ff;
    margin-right: 0.4rem;
}

.book-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

/* Original Neon Button (with glow softened slightly) */
.neon-button {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    margin-top: 20px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    background: transparent;
    border: 1px solid white;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.neon-button:hover {
    color: #b300ff;
    text-shadow: 0 0 4px #ff66cc;
    border-color: #b300ff;
    box-shadow: 0 0 10px #b300ff, 0 0 20px rgba(179, 0, 255, 0.25);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s;
}

.neon-button:hover .button-glow {
    left: 100%;
}

.button-sparkle {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.neon-button:hover .button-sparkle {
    opacity: 0.4;
    transform: scale(1);
}

.button-text {
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .main-heading {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .paragraph,
    .info-box,
    .custom-list {
        font-size: 1rem;
    }
}



/* Compact How It Works Steps */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  justify-content: space-between;
}

.step {
  flex: 1 1 180px;
  min-width: 0;
  background: rgba(179, 0, 255, 0.08);
  border: 1px solid rgba(179, 0, 255, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(179, 0, 255, 0.15);
  box-shadow: 0 0 15px rgba(179, 0, 255, 0.2);
  transform: translateY(-3px);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  background: rgba(255, 102, 204, 0.2);
  color: #ff66cc;
  border-radius: 50%;
  font-size: 18px;
  border: 1px solid #ff66cc;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ff66cc;
  margin-bottom: 5px;
}

.step p {
  font-size: 0.85rem;
  color: #eae1f2;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .step {
    flex: 1 1 150px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .steps-container {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 auto;
  }
}

/* Plans/Tiers Section */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.plan-card {
  flex: 1 1 280px;
  background: rgba(25, 5, 45, 0.7);
  border: 1px solid rgba(179, 0, 255, 0.3);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(179, 0, 255, 0.2);
  border-color: rgba(179, 0, 255, 0.5);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff00aa, #b300ff);
}

.plan-header {
  margin-bottom: 20px;
  text-align: center;
}

.plan-name {
  font-size: 1.4rem;
  color: #ff66cc;
  margin-bottom: 5px;
  font-weight: 700;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.plan-price span {
  font-size: 1rem;
  color: #ccc;
  font-weight: 400;
}

.plan-duration {
  color: #b300ff;
  font-size: 0.9rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(179, 0, 255, 0.2);
  color: #eae1f2;
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff66cc;
  font-weight: bold;
}

.plan-button {
  display: block;
  text-align: center;
  padding: 12px;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.plan-button:hover {
  background: linear-gradient(90deg, #ff00aa, #b300ff);
  box-shadow: 0 0 15px rgba(179, 0, 255, 0.5);
}

/* Popular Plan Highlight */
.popular-plan {
  border: 1px solid #ff66cc;
  box-shadow: 0 0 20px rgba(255, 102, 204, 0.2);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff00aa;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .plans-container {
    gap: 15px;
  }
  
  .plan-card {
    flex: 1 1 100%;
  }
}


.txtcenter{
    text-align:center;
}


/* Booking Options */
.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.option-card {
  border: 1px solid #6f00ff;
  border-radius: 0.75rem;
  padding: 1rem;
  background: #0c0c0c;
  box-shadow: 0 0 6px #6f00ff;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.option-card:hover {
  box-shadow: 0 0 14px #ff1493;
  transform: translateY(-2px);
}

.option-header.neon-header {
  background-color: #ff1493;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  padding: 0.6rem 1rem;
  text-align: center;
  box-shadow: 0 0 8px #ff1493;
  margin: -1rem -1rem 1rem -1rem;
}

.option-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

.option-icon {
  color: #fff;
  font-size: 1rem;
}

.premium-badge {
  font-size: 0.7rem;
  color: #ff1493;
  border: 1px solid #ff1493;
  padding: 0.1rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  background-color: rgba(255, 20, 147, 0.1);
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.75rem;
}

.custom-list li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #ccc;
}

.list-icon {
  color: #ff4dd2;
}

.locations, .benefits {
  display: block;            /* parent just stacks children */
  margin-top: 0.3rem;
}

.location-tag {
  display: block;            /* each tag goes full line */
  border: 1px solid #ff1493;
  color: #ffc7f5;
  padding: 2px 2px;
  border-radius: 0.4rem;
  font-size: 0.7rem;
  background: rgba(255, 20, 147, 0.05);
  margin-bottom: 0.2rem;     /* spacing between tags */
}


.benefit-item {
  font-size: 0.85rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.benefit-icon {
  color: #ff4dd2;
}

.no-deposit-banner {
  font-size: 0.85rem;
  color: #ffa8e2;
  border-left: 3px solid #ff1493;
  padding-left: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.option-footer {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-top: 1px dashed #350044;
  padding-top: 0.75rem;
}

/* How It Works Styling */
.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #6f00ff;
  box-shadow: 0 0 4px rgba(111, 0, 255, 0.4);
  transition: 0.25s ease;
}

.step:hover {
  box-shadow: 0 0 12px #ff1493;
  transform: translateY(-2px);
}

.step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 50%;
  background: #ff1493;
  box-shadow: 0 0 10px #ff1493;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffc7f5;
  margin: 0;
  margin-bottom: 0.3rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.easy-process {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #999;
  text-align: center;
  border-top: 1px dashed #350044;
  padding-top: 1rem;
}

.easy-process i {
  color: #ff1493;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}





.neonn-gloss-heading {
  
  font-size: 3rem;
 
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: normal;
  text-shadow:
    0 0 5px #ff3cac,
    0 0 10px #ff3cac,
    0 0 20px #ff3cac,
    0 0 30px #a334fe,
    0 0 50px #a334fe,
    0 0 70px #a334fe;
}

/* Mobile screens (max width 576px in Bootstrap terms) */
@media (max-width: 576px) {
  .neonn-gloss-heading {
    font-size: 30px; /* Adjust for small phones */
  }
}




.neo-gloss-heading {
  font-family: 'NeoFont', sans-serif;
  font-size: 3rem;
  margin: 0 auto;
  padding-bottom:15px;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: normal;
  text-shadow:
    0 0 5px #ff3cac,
    0 0 10px #ff3cac,
    0 0 20px #ff3cac,
    0 0 30px #a334fe,
    0 0 50px #a334fe,
    0 0 70px #a334fe;
}

/* Mobile screens (max width 576px in Bootstrap terms) */
@media (max-width: 576px) {
  .neo-gloss-heading {
    font-size: 3rem; /* Adjust for small phones */
  }
}

/* Medium screens (tablet) */
@media (max-width: 768px) {
  .neo-gloss-heading {
    font-size: 4rem; /* Slightly smaller than desktop */
  }
}




.neon-gloss-heading {
  font-family: 'NeonFont', sans-serif;
  font-size: 6rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: normal;
  text-shadow:
    0 0 5px #ff3cac,
    0 0 10px #ff3cac,
    0 0 20px #ff3cac,
    0 0 30px #a334fe,
    0 0 50px #a334fe,
    0 0 70px #a334fe;
}

/* Mobile screens (max width 576px in Bootstrap terms) */
@media (max-width: 576px) {
  .neon-gloss-heading {
    font-size: 3rem; /* Adjust for small phones */
  }
}

/* Medium screens (tablet) */
@media (max-width: 768px) {
  .neon-gloss-heading {
    font-size: 4rem; /* Slightly smaller than desktop */
  }
}




			
			
			
  .h2-super {
    background: linear-gradient(90deg, #5800dd 0%, rgb(131, 24, 93) 50%, rgb(255, 9, 7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
    display: inline-block;
  }
   .neo-price-tag {
    background: linear-gradient(90deg, #5800dd 0%, rgb(131, 24, 93) 50%, rgb(255, 9, 7) 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
  }

  .neo-price-tag h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
  }
  
  /* Ensure parent is positioned relative */
.sk__portfolio-item {
    position: relative;
    overflow: hidden;
}

/* Badge container - Compact upper left */
.badge-wrapper {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

/* Compact badge styles */
.badge {
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    animation: neon-blink 1.5s infinite alternate;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid transparent;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 0 3px rgba(255,255,255,0.5);
    line-height: 1.2;
}

/* New Model Badge - Compact Pink */
.new-model-badge {
    background: linear-gradient(135deg, rgba(248, 0, 178, 0.9), rgba(200, 0, 150, 0.9));
    border-color: #ff00cc;
    box-shadow: 0 0 8px rgba(248, 0, 178, 0.8),
                0 0 15px rgba(248, 0, 178, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.2);
}

/* New Photos Badge - Compact Indigo */
.new-photos-badge {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9), rgba(50, 0, 100, 0.9));
    border-color: #9370DB;
    box-shadow: 0 0 8px rgba(75, 0, 130, 0.8),
                0 0 15px rgba(75, 0, 130, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Special Offer Badge - Orange Theme */
.special-offer-badge {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.9), rgba(220, 60, 0, 0.9));
    border-color: #ff5500;
    box-shadow: 0 0 8px rgba(255, 85, 0, 0.8),
                0 0 15px rgba(255, 85, 0, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Enhanced Neon Blink Animation */
@keyframes neon-blink {
    0% {
        opacity: 1;
        text-shadow: 0 0 3px #fff, 0 0 6px #fff, 0 0 9px currentColor;
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px currentColor;
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 3px #fff, 0 0 7px #fff, 0 0 10px currentColor;
    }
}

/* Pulsing effect for compact badges */
.badge::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 5px;
    background: inherit;
    z-index: -1;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .badge-wrapper {
        top: 6px;
        left: 6px;
        gap: 3px;
    }
    
    .badge {
        font-size: 10px;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .badge-wrapper {
        top: 4px;
        left: 4px;
        gap: 2px;
    }
    
    .badge {
        font-size: 9px;
        padding: 1px 4px;
        letter-spacing: 0.3px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .badge {
        border-width: 2px;
        background: rgba(0, 0, 0, 0.9);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .badge,
    .badge::after {
        animation: none;
    }
}
       
            
            
 
 /***** fire emoji*****/
 
 
 .special-offer-badge {
    background: linear-gradient(135deg, rgba(0,102,255,0.9), rgba(0,50,150,0.9));
    border-color: #3399ff;
    color: #fff;
    box-shadow: 0 0 8px rgba(0,102,255,0.8),
                0 0 15px rgba(0,102,255,0.6),
                inset 0 0 10px rgba(255,255,255,0.2);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255,255,255,0.4);
}



@keyframes blueflame-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
    .special-offer-badge::before { animation: none; }
}

@media (max-width: 768px) {
    .special-offer-badge::before {
        animation: none;
        filter: none;
    }
}


            
            
        .gradient-text {
    position: relative; /* Position the pseudo-element relative to the span */
    display: inline-block; /* Ensures the background width matches the text width */
    color: white; /* Text color */
    padding: 2px 10px;
 
}

.gradient-text::before {
    content: ''; /* Empty content to create the pseudo-element */
    position: absolute; /* Position it relative to the span */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,rgb(218, 18, 185),rgb(49, 3, 82)); /* Gradient from purple to dark purple */
    z-index: -1; /* Make sure the pseudo-element stays behind the text */
    width: 100%; /* Match the width of the text */
    height: 100%; /* Match the height of the text */
    border-radius:10px;
}

  .partner-button {
  padding: 12px 24px;
  margin-bottom: 15px;
  border: 2px solid #9d00ff;
  border-radius: 35px;
  background: transparent;
  color: #ff00e6;
  font: bold 18px/1 'inherit';
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 0 8px #ff00e6;
  box-shadow: 0 0 15px #9d00ff, 0 0 25px #ff00e6;
  cursor: pointer;
  transition: all 0.3s;
}

.partner-button:hover {
  box-shadow: 0 0 20px #9d00ff, 0 0 35px #ff00e6;
}

  
  .banners-container {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ff00e6;
    box-shadow: 0 0 20px #9d00ff;
  }
  
  .banner-item {
    display: inline-block;
    margin: 10px;
    transition: transform 0.3s;
  }
  
  .banner-item:hover {
    transform: scale(1.05);
  }
  
  .banner-image {
    border-radius: 6px;
    border: 1px solid #ff00e6;
    box-shadow: 0 0 15px #9d00ff;
    max-width: 100%;
  }
  
  .seo-banner {
    display: inline-block;
    margin: 10px;
    transition: all 0.3s;
    width: 160px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #ff00e6;
    border-radius: 8px;
    box-shadow: 0 0 15px #9d00ff;
    background: rgba(0,0,0,0.7);
  }
  
  .seo-banner:hover {
    box-shadow: 0 0 20px #ff00e6;
    transform: scale(1.05);
  }
  
  .seo-banner a {
    font-family: Arial;
    font-size: 11px;
    color: #9d00ff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 5px #ff00e6;
    display: block;
  }
  
  .happy-escorts-banner {
    display: inline-block;
    margin: 10px;
    transition: all 0.3s;
    overflow: hidden;
  }
  
  .happy-escorts-banner:hover {
    box-shadow: 0 0 25px #ff00e6;
    transform: scale(1.02);
  }
  
  .freeweb-banner {
    display: inline-block;
    margin: 10px;
    padding: 5px;
    transition: all 0.3s;
    border: 1px solid #ff00e6;
    border-radius: 8px;
    box-shadow: 0 0 15px #9d00ff;
    background: rgba(0,0,0,0.7);
  }
  
  .freeweb-banner:hover {
    box-shadow: 0 0 20px #ff00e6;
    transform: scale(1.05);
  }
  
  .text-links {
    margin-top: 15px;
    color: #ff00e6;
    text-shadow: 0 0 5px #9d00ff;
  }
  
  .text-links a {
    color: #ff00e6;
    text-decoration: none;
    margin: 0 10px;
  }
  
  			/* Style for the tab buttons */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
}

.tab-button {
    background-color: transparent; /* Flat background */
    color: #f2f2f2; /* Default text color */
    border: 2px solid transparent; /* No border visible by default */
    padding: 10px 20px; /* Space inside buttons */
    font-size: 16px;
    cursor: pointer; /* Pointer cursor on hover */
    text-transform: uppercase;
    transition: all 0.3s ease; /* Smooth transition for hover and active states */
}

.tab-button:hover {
    color: #fff; /* White text color on hover */
    background-color: #333; /* Dark background on hover */
    border-color: #333; /* Border color on hover */
}

.tab-button.active {
    color: #fff; /* White text color for the active button */
    background-color: #333; /* Dark background for active button */
    border-color: #333; /* Border color for active button */
}


span.sk__iconbox-icon-dash {
	background: rgb(129,21,255);
	background: -webkit-gradient(linear,left top, left bottom,from(#000),to(#000)) padding-box, -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,1)), color-stop(50%, rgba(255,42,208,1)), to(rgba(255,143,42,1))) border-box;
	background: -o-linear-gradient(#000,#000) padding-box, -o-linear-gradient(left, rgba(129,21,255,1) 0%, rgba(255,42,208,1) 50%, rgba(255,143,42,1) 100%) border-box;
	background: linear-gradient(#000,#000) padding-box, linear-gradient(90deg, rgba(129,21,255,1) 0%, rgba(255,42,208,1) 50%, rgba(255,143,42,1) 100%) border-box;
}

.sk__gradient-back-v1,
.sk__gradient-back-v1-hover:hover, 
.btn:not([class*="btn-"]):before, 
.btn-gradient:before, 
.btn-gradient-outline, 
.btn-gradient-outline:before, 
.btn-gradient-outline-hard, 
.btn-gradient-outline-hard:before, 
span.sk__underliner:before {
	background: rgb(129,21,255);
	background: -o-linear-gradient(left, rgba(129,21,255,1) 0%, rgba(255,42,208,1) 50%, rgba(255,143,42,1) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,1)), color-stop(50%, rgba(255,42,208,1)), to(rgba(255,143,42,1)));
	background: linear-gradient(90deg, #5800dd 0%, rgb(131 24 93) 50%, rgb(255 9 7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
}

.sk__clipped-text,
.sk__clipped-text-hover:hover {
	display: inline-block;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sk__gradient-fancy-text,  
a.sk__iconbox-icon-link:hover span[class*="icon-"].sk__gradient-fancy-text {
	background: rgb(129,21,255);
	background: -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,1)), color-stop(52%, rgba(255,42,208,1)), to(rgba(255,143,42,1)));
	background: -o-linear-gradient(left, rgba(129,21,255,1) 0%, rgba(255,42,208,1) 52%, rgba(255,143,42,1) 100%);
	background: linear-gradient(90deg, rgba(129, 21, 255, 1) 0%, rgb(195 0 88) 52%, rgb(255 0 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
	-webkit-background-clip: text;
	color: #000000;
	padding: 3px;
	padding: 0.065em;
}
a.sk__iconbox-icon-link:hover span[class*="icon-"].sk__gradient-fancy-text {
	color: rgba(0,0,0,0.65);
}

.sk__gradient-fancy-text-back {
	/* to make this (copy) fall behind front gradient text (original) */
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	-webkit-transform: translate(5px, 5px);
	    -ms-transform: translate(5px, 5px);
	        transform: translate(5px, 5px);
	z-index: -1;
	/* to set its own styling */
	background: rgb(129,21,255);
	background: -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,0.7035189075630253)), color-stop(52%, rgba(255,42,208,0.4990371148459384)), to(rgba(255,143,42,0.4009978991596639)));
	background: -o-linear-gradient(left, rgba(129,21,255,0.7035189075630253) 0%, rgba(255,42,208,0.4990371148459384) 52%, rgba(255,143,42,0.4009978991596639) 100%);
	background: linear-gradient(90deg, rgba(129,21,255,0.7035189075630253) 0%, rgba(255,42,208,0.4990371148459384) 52%, rgba(255,143,42,0.4009978991596639) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
	-webkit-background-clip: text;
	color: #000000;
	padding: 3px;
	padding: 0.065em;
}

.sk__gradient-background-tint {
	background: rgb(129,21,255);
	background: -o-linear-gradient(315deg, rgba(129,21,255,0.12290266106442575) 0%, rgba(255,42,208,0.07007352941176472) 11%, rgba(255,143,42,0) 20%);
	background: linear-gradient(135deg, rgba(129,21,255,0.12290266106442575) 0%, rgba(255,42,208,0.07007352941176472) 11%, rgba(255,143,42,0) 20%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
}

.sk__subtle-divider {
	background: rgb(129,21,255);
	background: -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,0.3169642857142857)), color-stop(52%, rgba(255,42,208,0.20772058823529416)), to(rgba(255,143,42,0.14)));
	background: -o-linear-gradient(left, rgba(129,21,255,0.3169642857142857) 0%, rgba(255,42,208,0.20772058823529416) 52%, rgba(255,143,42,0.14) 100%);
	background: linear-gradient(90deg, rgba(129,21,255,0.3169642857142857) 0%, rgba(255,42,208,0.20772058823529416) 52%, rgba(255,143,42,0.14) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
}

.gradient-links {
	background: rgb(198,198,198);
	background: -webkit-gradient(linear, left top, right top, from(rgba(198,198,198,1)), color-stop(25%, rgba(198,198,198,1)), color-stop(43%, rgba(129,21,255,1)), color-stop(72%, rgba(255,42,208,1)), to(rgba(255,171,0,1)));
	background: -o-linear-gradient(left, rgba(198,198,198,1) 0%, rgba(198,198,198,1) 25%, rgba(129,21,255,1) 43%, rgba(255,42,208,1) 72%, rgba(255,171,0,1) 100%);
	background: linear-gradient(90deg, rgba(198,198,198,1) 0%, rgba(198,198,198,1) 25%, rgba(129,21,255,1) 43%, rgba(255,42,208,1) 72%, rgba(255,171,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c6c6c6",endColorstr="#ffab00",GradientType=1);
}

.gradient-links-bright {
	background: rgb(255,255,255);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,1)), color-stop(25%, rgba(255,255,255,1)), color-stop(43%, rgba(129,21,255,1)), color-stop(72%, rgba(255,42,208,1)), to(rgba(255,171,0,1)));
	background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(129,21,255,1) 43%, rgba(255,42,208,1) 72%, rgba(255,171,0,1) 100%);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(129,21,255,1) 43%, rgba(255,42,208,1) 72%, rgba(255,171,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffab00",GradientType=1);
}

.gradient-links, 
.gradient-links-bright {
	display: table;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 400% 400%;
	background-position: 0% 100%;
}

a.sk__iconbox-icon-link > span.sk__iconbox-icon > span.sk__iconbox-trail {
	background: rgb(129,21,255);
	background: -moz-linear-gradient(90deg, rgba(129,21,255,0) 45%, rgba(129,21,255,0.25253851540616246) 62%, rgba(255,42,208,0.35898109243697474) 85%, rgba(255,143,42,0.5158438375350141) 99%, rgba(255,169,17,0.8239670868347339) 100%);
	background: -webkit-linear-gradient(90deg, rgba(129,21,255,0) 45%, rgba(129,21,255,0.25253851540616246) 62%, rgba(255,42,208,0.35898109243697474) 85%, rgba(255,143,42,0.5158438375350141) 99%, rgba(255,169,17,0.8239670868347339) 100%);
	background: linear-gradient(90deg, rgba(129,21,255,0) 45%, rgba(129,21,255,0.25253851540616246) 62%, rgba(255,42,208,0.35898109243697474) 85%, rgba(255,143,42,0.5158438375350141) 99%, rgba(255,169,17,0.8239670868347339) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ffa911",GradientType=1);
}

/* Your existing CSS here — unchanged */
  .chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .chat-button {
    background: linear-gradient(135deg, #e5b5a1, #f2ccb7);
    color: #c7326b;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow:
      0 0 10px #963b56,
      0 0 20px #963b56,
      0 0 30px #963b56;
    border: none;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
    animation: containerBounce 4s cubic-bezier(0.28, 0.84, 0.42, 0.98) infinite;
    transform-origin: center bottom;
  }

  @keyframes containerBounce {
    0%, 20%, 50%, 100% { transform: translateY(0); }
    10% { transform: translateY(-15px); }
    30% { transform: translateY(-8px); }
  }

  .text-cloud {
    position: absolute;
    right: 0;
    bottom: 80px;
    background: #9f00ff;
    color: white;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    box-shadow:
      0 0 10px rgba(159, 0, 255, 0.7),
      0 0 20px rgba(159, 0, 255, 0.5);
    width: 220px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    animation: containerBounce 4s cubic-bezier(0.28, 0.84, 0.42, 0.98) infinite;
    z-index: 2;
  }

  .text-cloud:after {
    content: '';
    position: absolute;
    right: 15px;
    bottom: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #9f00ff;
    border-bottom: 0;
    filter: drop-shadow(0 3px 5px rgba(159, 0, 255, 0.5));
  }

  .text-cloud.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }

  .cloud-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 190px;
  }

  .cloud-menu li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
  }

  .cloud-menu li:last-child {
    border-bottom: none;
  }

  .cloud-menu li:hover {
    color: #f2ccb7;
    transform: translateX(3px);
    text-shadow: 0 0 5px white;
  }

  .cloud-menu li i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    font-size: 16px;
  }

  .chat-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #1a001f;
    border-radius: 12px;
    padding: 15px;
    box-shadow:
      0 0 12px rgba(159, 0, 255, 0.5),
      0 0 24px rgba(159, 0, 255, 0.3);
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 0, 255, 0.4);
    z-index: 1;
  }

  .chat-widget.active .chat-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .chat-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
  }

  .chat-option:hover {
    background: rgba(159, 0, 255, 0.2);
    transform: translateX(2px);
  }

  .chat-option i {
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
  }

  .chat-option.whatsapp i {
    color: #25D366;
  }

  .chat-option.telegram i {
    color: #0088cc;
  }

  .chat-option-text {
    font-size: 14px;
    font-weight: 500;
  }

  .booking-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    background: rgba(255, 193, 7, 0.1);
  }

  .booking-option:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateX(2px);
  }

  .booking-option i {
    color: #FFC107;
  }
  .text-cloud.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.online-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background-color: #28a745;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 5px #28a745;
  z-index: 2;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}




/* --------------- CAMPAIGN ------------------- */


/* 🎃 Enhanced Halloween Styles - 80% Opacity with Readable Text */
.sticky-halloween-wrapper { position: relative; }
.sticky-halloween-line {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; justify-content: center; align-items: center;
  gap: 6px; padding: 3px 5px; font-family: Arial, sans-serif;
  font-size: 12px; color: #fff; height: 28px; line-height: 1;
  background: linear-gradient(90deg, #fc4503, #8300e0);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-halloween-countdown { display: flex; gap: 5px; font-weight: bold; }
.sticky-halloween-countdown .value { font-size: 12px; font-weight: bold; color: white; }
.sticky-halloween-countdown .label { font-size: 9px; opacity: 0.8; color: #fff; }
.sticky-halloween-btn {
  background: #fc4503; color: #fff; border: none; padding: 2px 8px;
  border-radius: 10px; font-size: 10px; font-weight: bold; cursor: pointer;
  transition: background 0.2s ease; white-space: nowrap;
}
.sticky-halloween-btn:hover { background: #e03d00; }

/* 🎃 Modal with 80% Background Opacity - Text at 100% */
.halloween-modal {
  display: none; position: fixed; z-index: 10000; left: 0; top: 0;
  width: 100%; height: 100%; background: rgba(22, 13, 28, 0.8);
  justify-content: center; align-items: center; padding: 10px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.modal-closing {
  animation: fadeOut 0.5s ease-in-out forwards;
}

.halloween-content {
  background: #160d1c; color: white; border-radius: 12px;
  max-width: 500px; width: 100%; padding: 20px 15px;
  text-align: center; position: relative; opacity: 1;
  border: 2px solid #fc4503;
  box-shadow: 0 0 20px #fc4503, 0 0 40px #8300e0,
              inset 0 0 10px rgba(255, 77, 237, 0.3);
  animation: neonPulse 2s infinite alternate;
  max-height: 90vh;
  overflow: hidden;
}

@keyframes neonPulse {
  from { box-shadow: 0 0 15px #fc4503, 0 0 30px #8300e0,
                     inset 0 0 8px rgba(255, 77, 237, 0.3); }
  to { box-shadow: 0 0 25px #ff4ded, 0 0 50px #fc4503,
                   inset 0 0 12px rgba(131, 0, 224, 0.4); }
}

.campaign-header h1 {
  font-size: 20px; margin: 8px 0; color: #ff4ded;
  text-shadow: 0 0 8px #ff4ded, 0 0 16px #8300e0;
  font-weight: bold; letter-spacing: 0.5px;
}
.limited-time {
  background: linear-gradient(90deg, #fc4503, #ff4ded);
  padding: 4px 12px; border-radius: 15px; font-size: 11px;
  font-weight: bold; color: white; display: inline-block;
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.sale-tag { font-size: 13px; font-weight: bold; color: #fc4503;
            text-shadow: 0 0 6px #fc4503; }

.countdown-timer {
  display: flex; justify-content: center; gap: 5px;
  margin: 15px 0; flex-wrap: wrap;
}
.time-unit {
  background: #1f1130; padding: 8px 6px; border-radius: 8px;
  min-width: 45px; border: 1px solid #ff4ded;
  box-shadow: 0 0 8px rgba(255, 77, 237, 0.4);
}
.time-number { font-size: 18px; font-weight: bold; color: #fc4503;
               text-shadow: 0 0 6px #fc4503; }
.time-label { font-size: 9px; color: #ff4ded; margin-top: 2px;
              text-transform: uppercase; letter-spacing: 0.5px; }
.time-colon { font-size: 18px; font-weight: bold; color: #8300e0;
              align-self: center; text-shadow: 0 0 6px #8300e0; }

.offers-grid {
  display: flex; gap: 8px;
  margin: 18px 0;
}
.offer-card {
  background: #1f1130; padding: 12px 8px;
  border-radius: 10px; position: relative; border: 1px solid;
  transition: transform 0.3s ease; 
  flex: 1;
  min-width: 0;
}
.offer-card:hover { transform: translateY(-2px); }
.offer-card.vip { border-color: #fc4503;
                  box-shadow: 0 0 12px rgba(252, 69, 3, 0.4); }
.offer-card.regular { border-color: #ff4ded;
                      box-shadow: 0 0 12px rgba(255, 77, 237, 0.4); }
.offer-card.new { border-color: #8300e0;
                  box-shadow: 0 0 12px rgba(131, 0, 224, 0.4); }

.offer-card .badge {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  background: #fc4503;
  color: white;
  padding: 3px 10px;
  border-radius: 10px; font-size: 9px; font-weight: bold;
  text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 0 8px #fc4503, 0 0 12px #fc4503;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.regular .badge { 
  background: #ff4ded; 
  box-shadow: 0 0 8px #ff4ded, 0 0 12px #ff4ded;
}
.new .badge { 
  background: #8300e0; 
  box-shadow: 0 0 8px #8300e0, 0 0 12px #8300e0;
}

.offer-title { font-size: 12px; font-weight: bold; margin: 10px 0 4px;
               color: white; }
.offer-price { font-size: 15px; color: #fc4503; font-weight: bold;
               text-shadow: 0 0 6px #fc4503; }
.offer-desc { font-size: 9px; color: #cccccc; margin-top: 3px;
              line-height: 1.2; }

.campaign-footer { margin-top: 15px; }
.cta-button {
  background: linear-gradient(90deg, #fc4503, #ff4ded);
  color: white; font-weight: bold; padding: 10px 24px;
  border: none; border-radius: 20px; cursor: pointer; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all 0.3s ease; box-shadow: 0 0 15px rgba(252, 69, 3, 0.6);
}
.cta-button:hover { transform: scale(1.04);
                    box-shadow: 0 0 25px rgba(255, 77, 237, 0.8); }

.skip-button {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ff4ded;
  color: #ff4ded;
  padding: 8px 16px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 11px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.skip-button:hover {
  background: #ff4ded;
  color: #160d1c;
  box-shadow: 0 0 15px #ff4ded;
  transform: scale(1.05);
}

.disclaimer { font-size: 9px; color: #888; margin-top: 8px;
              line-height: 1.3; }

.vip .vip-btn {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(90deg, #fc4503, #ff4ded);
  color: white;
  font-weight: bold;
  padding: 8px 18px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(252, 69, 3, 0.6);
}

.vip .vip-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 77, 237, 0.8);
}

@media (max-width: 1900px) {
  .sticky-halloween-line {
    top: auto; bottom: 0; font-size: 11px; gap: 5px;
    padding: 3px; height: 26px;
  }
  .sticky-halloween-btn { font-size: 9px; padding: 1px 6px; }
}

@media (max-width: 480px) {
  .halloween-modal { padding: 5px; }
  .halloween-content { 
    padding: 15px 10px; 
    margin: 5px;badge-wrapper
    max-height: 95vh;
  }
  .campaign-header h1 { font-size: 18px; }
  .limited-time { font-size: 10px; padding: 3px 10px; }
  .countdown-timer { gap: 3px; margin: 12px 0; }
  .time-unit { min-width: 40px; padding: 6px 4px; }
  .time-number { font-size: 16px; }
  .time-label { font-size: 8px; }
  .offers-grid { gap: 6px; margin: 12px 0; }
  .offer-card { padding: 10px 6px; }
  .offer-title { font-size: 11px; }
  .offer-price { font-size: 13px; }
  .offer-desc { font-size: 8px; }
  .cta-button { padding: 8px 20px; font-size: 12px; }
  .skip-button { padding: 6px 12px; font-size: 10px; }
}

@media (max-width: 360px) {
  .halloween-content { padding: 12px 8px; }
  .campaign-header h1 { font-size: 16px; }
  .time-unit { min-width: 35px; }
  .time-number { font-size: 14px; }
  .offers-grid { gap: 4px; }
  .offer-card { padding: 8px 4px; }
  .offer-title { font-size: 10px; }
  .offer-price { font-size: 12px; }
  .badge { font-size: 8px; padding: 2px 8px; }
  .vip .vip-btn { font-size: 9px; padding: 4px 10px; }
}


/* ---------------END CAMPAIGN ------------------- */