.elementor-100020 .elementor-element.elementor-element-6627564{--display:flex;}.elementor-100020 .elementor-element.elementor-element-93c837c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-13px;--margin-bottom:0px;--margin-left:-20px;--margin-right:0px;}.elementor-100020 .elementor-element.elementor-element-66ffdc5 > .elementor-widget-container{margin:2px 0px 0px 0px;}.elementor-100020 .elementor-element.elementor-element-e23df9d{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-66ffdc5 */@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
  background: #f3f0f0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* HEADER CONTAINER */
.vip-header-container {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  padding: 0;
  transition: all 0.3s ease;
}

.vip-header-container.scrolled {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.vip-header-inner {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
}

.vip-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.vip-header-logo {
  position: relative;
}

.vip-header-logo img {
  width: 90px;
  border-radius: 8px;
}

/* Trusted by Influencers Style */
.vip-trusted-text {
  position: absolute;
  top: 50%;
  left: 105%;
  transform: translateY(-50%);
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  color: #b800d8;
  white-space: nowrap;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

/* FLOATING VIP MENU */
.vip-menu-wrapper {
  background: linear-gradient(135deg, #ff6a00, #b800d8);
  padding: 6px 20px 6px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  margin-right: 20px;
  position: relative;
}

.vip-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vip-nav-links a, .vip-dropbtn {
  text-decoration: none;
  color: #300050;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  font-size: 14px;
}

.vip-nav-links a:hover, .vip-dropbtn:hover {
  background: #f9f1ff;
  color: #8000d2;
}

/* CONTACT BUTTON */
.vip-contact-btn {
  background: linear-gradient(to right, #a100ff, #6a00ff);
  color: #fff;
  padding: 10px 22px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(150, 0, 255, 0.25);
  transition: all 0.3s ease;
  font-size: 14px;
}

.vip-contact-btn:hover {
  background: linear-gradient(to right, #7c00db, #5000b3);
}

/* HIDE CONTACT ON MOBILE */
@media (max-width: 992px) {
  .vip-contact-btn {
    display: none !important;
  }
}

/* DROPDOWN STYLES */
.vip-dropdown {
  position: relative;
}

.vip-dropdown-content {
  position: absolute;
  top: 48px;
  right: 0;
  background: #fff;
  border: 1px solid #dfc2ff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 15px;
  min-width: 360px;
  z-index: 999;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  box-sizing: border-box;
}

.vip-dropdown-content.open {
  display: grid;
}

.vip-dropdown-content a {
  font-weight: 500;
  color: #4a007f;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 12px;
  transition: 0.3s;
  font-size: 15px;
  background: #faf8ff;
  border: 1px solid #eee;
  white-space: nowrap;
  box-sizing: border-box;
  justify-content: flex-start;
}

.vip-dropdown-content a:hover {
  color: #a100ff;
  background: #f2e8ff;
}

.vip-dropdown-content a img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* MOBILE RESPONSIVE FIX for DROPDOWN */
@media (max-width: 600px) {
  .vip-dropdown-content {
    min-width: 250px;
    grid-template-columns: 1fr !important;
  }
}

/* MOBILE TOGGLE BUTTON */
.vip-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(to right, #fff, #f7e9ff);
  border: 2px solid #d69cff;
  box-shadow: 0 0 10px rgba(160, 0, 255, 0.25);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.vip-toggle span {
  height: 3px;
  width: 18px;
  background: #8000d2;
  border-radius: 3px;
}

/* MOBILE MENU TOGGLE */
@media (max-width: 992px) {
  .vip-toggle { display: flex; }
  .vip-menu-wrapper { display: none; }
  .vip-menu-wrapper.active {
    display: flex;
    flex-direction: column;
    background: #fff !important;
    padding: 18px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    width: 100%;
  }
  .vip-nav-links { flex-direction: column; width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-15803af */.tos-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 50px;
    background: linear-gradient(135deg, #ffffff, #faf5ff);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.tos-container h1 {
    font-size: 42px;
    color: #8000d2;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.tos-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #a100ff;
}

.tos-container p, 
.tos-container li {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.tos-container ul {
    padding-left: 20px;
}

.tos-container ul li {
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .tos-container {
        padding: 30px;
    }

    .tos-container h1 {
        font-size: 32px;
    }

    .tos-container h2 {
        font-size: 24px;
    }

    .tos-container p, 
    .tos-container li {
        font-size: 16px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e23df9d *//* ======================================
   LuxeSocial Custom Footer CSS
====================================== */

/* === Footer Base === */
.custom-footer {
  background: #fdfdfd;
  color: #1e1e1e;
  font-family: 'Poppins', sans-serif;
  padding: 60px 30px 30px;
}

/* === Layout Grid === */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* === About Column with Rocket === */
.footer-about {
  flex: 1.2;
  min-width: 260px;
}
.footer-about img {
  width: 140px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.footer-about p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* === Footer Columns === */
.footer-column {
  flex: 1;
  min-width: 160px;
}
.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(90deg, orange, purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin: 8px 0;
}
.footer-column ul li a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #B89549;
}

/* === Footer Bottom === */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

/* === Triangle Dark Mode Toggle === */
.footer-dark-toggle {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.footer-dark-toggle button {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 28px solid #D4AF37;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-dark-toggle button:hover {
  border-top-color: #B89549;
  transform: scale(1.1);
}

/* === Rocket Flame Animation === */
.rocket-wrapper {
  position: relative;
  display: inline-block;
}
.rocket-wrapper .flame,
.rocket-wrapper .flame.small {
  position: absolute;
  left: -25px;
  top: 40%;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, orange 20%, red 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  animation: fire-flicker 0.2s infinite alternate;
  z-index: 0;
  filter: blur(1px);
}
.rocket-wrapper .flame.small {
  top: 48%;
  left: -20px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, yellow 30%, red 60%, transparent 80%);
  animation: fire-flicker-small 0.18s infinite alternate;
}

@keyframes fire-flicker {
  0% { transform: scale(1) translateY(0); opacity: 0.9; }
  100% { transform: scale(1.4) translateY(3px); opacity: 0.6; }
}
@keyframes fire-flicker-small {
  0% { transform: scale(1) translateY(0); opacity: 0.8; }
  100% { transform: scale(1.3) translateY(2px); opacity: 0.5; }
}

/* === Dark Mode === */
body.dark-mode .custom-footer {
  background: #1c1c1c;
  color: #e0e0e0;
}
body.dark-mode .footer-about p,
body.dark-mode .footer-column ul li a,
body.dark-mode .footer-bottom {
  color: #ccc;
}
body.dark-mode .footer-column ul li a:hover {
  color: #FFCE7B;
}
body.dark-mode .footer-dark-toggle button {
  border-top-color: #FFCE7B;
}
body.dark-mode .footer-dark-toggle button:hover {
  border-top-color: #FFC04D;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column,
  .footer-about {
    width: 100%;
    margin-bottom: 30px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-6627564 *//* Apply full opacity to all images on the page */
img {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}/* End custom CSS */