* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gabarito", sans-serif;
}

a {
  text-decoration: none;
}

main {
  min-height: 500px;
}

/* Header Styles */
.sth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  background-color: #000;
  position: relative;
  z-index: 100;
  position: sticky;
  top: 0;
}

.sth-header-logo {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  flex: 1;
  text-align: center;
}

.sth-header-left,
.sth-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sth-hamburger-btn,
.sth-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.sth-hamburger-btn:hover,
.sth-lang-btn:hover {
  opacity: 0.7;
}

/* Hamburger Menu Styles */
.sth-hamburger-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background-color: #F4F4F5;
  padding: 40px 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
  border-radius: 0 24px 24px 0;
}

.sth-hamburger-menu.sth-active {
  transform: translateX(0);
}

/*  Added close button styles */
.sth-menu-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1001;
}

.sth-menu-close-btn:hover {
  opacity: 0.6;
  transform: rotate(90deg);
}

.sth-menu-title {
  text-align: center;
  margin-bottom: 20px;
}

.sth-menu-list {
  list-style: none;
  margin-bottom: 32px;
}

.sth-menu-item {
  padding-bottom: 10px;
  border-bottom: 0.9px solid #D4D4D8;
  padding-top: 10px;
}

.sth-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.sth-menu-link:hover {
  opacity: 0.6;
}

.sth-menu-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sth-login-btn {
  width: 100%;
  padding: 13px 16px;
  background-color: #09090B;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s ease;
  margin-top: 24px;
}

.sth-login-btn:hover {
  background-color: #333;
}

/* Overlay */
.sth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
}

.sth-overlay.sth-active {
  opacity: 1;
  visibility: visible;
}

/* Language Dropdown Styles */
.sth-lang-dropdown-container {
  position: relative;
}

.sth-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 101;
  overflow: hidden;
}

.sth-lang-dropdown.sth-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sth-lang-option {
  padding: 12px 16px;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sth-lang-option:hover {
  background-color: #f5f5f5;
}

.sth-lang-option.sth-active {
  background-color: #e8e8e8;
  font-weight: 600;
}

.sth-lang-flag {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Main Content */
.sth-main-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sth-content-section {
  background-color: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sth-content-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}

.sth-content-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sth-header {
    padding: 12px 16px;
  }
  .sth-header-logo {
    font-size: 20px;
  }
  .sth-hamburger-menu {
    width: 90%;
  }
  .sth-main-content {
    padding: 24px 16px;
  }
  .sth-content-section {
    padding: 24px;
  }
  .sth-content-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .sth-header {
    padding: 10px 12px;
  }
  .sth-header-logo {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .sth-menu-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .sth-menu-link {
    font-size: 14px;
  }
  .sth-main-content {
    padding: 16px 12px;
  }
  .sth-content-section {
    padding: 16px;
  }
  .sth-content-title {
    font-size: 20px;
  }
  .sth-content-text {
    font-size: 14px;
  }
}
.top_ads {
  margin-top: 40px;
}

.main_container {
  max-width: 767px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .main_container {
    padding: 0 15px;
  }
}

.adv-ads-txt {
  font-size: 10px !important;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: "roboto", sans-serif;
  text-align: center !important;
  opacity: 0.7;
}

.sn-top-left-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #615FFF;
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
}

.sn-bottom-right-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 400px;
  right: 0;
  background: #615FFF;
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
}

.sn-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .sn-container {
    padding: 0;
  }
}
.snls-ins-sec {
  margin-top: 20px;
}

.snls-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .snls-card {
    padding: 30px 50px;
  }
}
.snls-header {
  text-align: center;
  margin-bottom: 20px;
}

.snls-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #000000;
}

@media (min-width: 768px) {
  .snls-title {
    font-size: 48px;
    line-height: 1;
  }
}
.snls-subtitle {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
}

.snls-instructions {
  margin-bottom: 20px;
}

[dir=rtl].snls-instructions {
  padding-right: 15px;
}

.snls-instructions-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #000000;
}

.snls-instructions-list {
  list-style: decimal;
  padding-left: 15px;
}

.snls-instructions-list li {
  font-size: 14px;
  color: #27272A;
  margin-bottom: 12px;
  line-height: 1;
  font-weight: 400;
}

.snls-form-group {
  margin-bottom: 10px;
  position: relative;
}
.snls-form-group label {
  display: block;
  padding-bottom: 5px;
  font-size: 14px;
}

.snls-input {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid #D4D4D8;
  background: #fafafa;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #000000;
}

.snls-input::placeholder {
  color: #71717B;
}

.snls-input:focus {
  outline: none;
  border-color: #d4d4d4;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.snls-button {
  width: 100%;
  padding: 13px 24px;
  font-size: 20px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  font-family: "Gabarito", sans-serif;
}

.snls-button:hover:not(:disabled) {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.snls-button:active:not(:disabled) {
  transform: translateY(0);
}

.snls-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.snls-footer-text {
  font-size: 10px;
  color: #71717B;
  margin-bottom: 16px;
  line-height: 1.6;
}

.snls-footer-text a {
  color: #666666;
  text-decoration: none;
  border-bottom: 1px solid #666666;
  transition: all 0.3s ease;
}

.snls-footer-text a:hover {
  color: #000000;
  border-bottom-color: #000000;
}

.snls-login-section {
  font-size: 10px;
  color: #71717B;
}

.snls-login-section a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.snls-login-section a:hover {
  border-bottom-color: #000000;
}

.snls-login-error-msg {
  color: #db3030;
  text-align: center;
  padding-top: 20px;
}

.snls-pssword-hide {
  position: absolute;
  right: 12px;
  top: 67%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #666;
}

.sn-seo-blog-content {
  background: #FFFFFF;
  border: 1px solid #F4F4F5;
  border-radius: 16px;
  padding: 20px 15px;
  margin-top: 20px;
}
.sn-seo-blog-content .sn-seo-blog-head {
  font-size: 32px;
  font-weight: 500;
  color: #000000;
}
.sn-seo-blog-content .sn-seo-blog-para {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  padding-top: 20px;
}
@media (min-width: 767px) {
  .sn-seo-blog-content {
    padding: 20px 40px;
  }
}

.sn-home-blog-sec {
  margin-top: 30px;
}

.snhb-heading {
  color: #000000;
  font-size: 32px;
  padding-bottom: 20px;
  text-align: center;
}

.snhb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.snhb-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #D4D4D8;
  transition: box-shadow 0.3s ease;
  padding: 5px;
}

.snhb-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.snhb-image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.snhb-content {
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.snhb-title {
  font-size: 24px;
  font-weight: 400;
  color: #000;
}

.snhb-description {
  font-size: 14px;
  line-height: 1.6;
  color: #71717B;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.snhb-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 8px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.snhb-button:hover {
  background-color: #1a1a1a;
}

.snhb-button:active {
  background-color: #000;
}

/* Desktop Responsive */
@media (min-width: 768px) {
  .snhb-blogs-section {
    padding: 60px 0;
  }
  .snhb-container {
    max-width: 767px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .snhb-heading {
    font-size: 40px;
  }
  .snhb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .snhb-content {
    padding: 5px;
    gap: 5px;
    padding-top: 10px;
  }
  .snhb-title {
    font-size: 28px;
  }
  .snhb-description {
    font-size: 15px;
  }
  .snhb-button {
    padding: 8px 32px;
    font-size: 16px;
  }
}
.spts-main-sec {
  position: relative;
}

.spts-boxes {
  margin-bottom: 20px;
}
.spts-boxes .spts-box-blue {
  background: #372AAC;
}
.spts-boxes .spts-box-purple {
  background: #8A0194;
}
.spts-boxes .spts-box {
  position: relative;
  border-radius: 16px;
  padding: 10px;
  height: 130px;
  transform: scale(1);
  opacity: 1;
}
.spts-boxes .spts-box.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.spts-boxes .spts-box-head {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
}
.spts-boxes .spts-box-para {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  padding-top: 10px;
}
.spts-boxes .spts-box-logo {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 29px;
}
.spts-boxes .spts-box-img {
  position: absolute;
  border-radius: 0 0px 16px 0;
  right: 0;
  bottom: 0;
  width: 130px;
}

.swiper-pagination-bullet {
  margin: 0 3px;
  background: #9F9FA9;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #27272A;
  width: 16px;
  border-radius: 30px;
}

.swiper-pagination {
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
}

@media (max-width: 767px) {
  .spts-boxes .spts-box-img {
    width: 95px;
  }
}
.shbx-share-sec {
  margin-top: 40px;
}

.shbx-dialog {
  background: white;
  border: 1px solid #A3B3FF;
  border-radius: 20px;
  padding: 24px;
}

.shbx-header {
  text-align: center;
  margin-bottom: 24px;
  padding-top: 10px;
}

.shbx-title {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 8px;
}

.shbx-subtitle {
  font-size: 18px;
  color: #000000;
  font-weight: 400;
}

.shbx-url-section {
  margin-bottom: 20px;
  display: flex;
  gap: 0;
}

.shbx-url-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  font-size: 13px;
  color: #666;
  background: #fafafa;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
}

.shbx-url-input:focus {
  border-color: #d4c5f9;
  background: white;
}

.shbx-copy-btn {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-left: none;
  border-radius: 0 8px 8px 0;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #666;
  font-size: 17px;
}

.shbx-copy-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

.shbx-copy-btn:active {
  transform: scale(0.95);
}

.shbx-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.shbx-share-btn {
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.shbx-share-btn:active {
  transform: scale(0.98);
}

.shbx-whatsapp {
  background: #25D366;
  grid-column: 1/-1;
}

.shbx-whatsapp:hover {
  background: #20ba5a;
}

.shbx-snapchat {
  background: #FFFC00;
  color: #000;
  grid-column: 1/-1;
}

.shbx-snapchat:hover {
  background: #e6e600;
}

.shbx-facebook {
  background: #0866FF;
}

.shbx-facebook:hover {
  background: #0a66c2;
}

.shbx-instagram {
  background: transparent linear-gradient(94deg, #F38251 0%, #D4306C 46%, #773F86 100%) 0% 0% no-repeat padding-box;
}

.shbx-instagram:hover {
  background: transparent linear-gradient(94deg, #F38251 0%, #5b273a 46%, #773F86 100%) 0% 0% no-repeat padding-box;
}

.shbx-messenger {
  background: #2895F3;
}

.shbx-messenger:hover {
  background: #0073e6;
}

.shbx-generic {
  background: white;
  color: #000;
  border: 1px solid #09090B;
}

.shbx-generic:hover {
  background: #f9f9f9;
  border-color: #ccc;
}

.shbx-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.shbx-link-copied {
    text-align: center;
    color: #ec1212;
    padding-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 640px) {
  .shbx-share-sec {
    margin-top: 40px;
  }
  .shbx-share-sec .main_container {
    padding: 0 15px;
  }
  .shbx-dialog {
    padding: 20px;
    border-radius: 16px;
  }
  .shbx-buttons-grid {
    gap: 10px;
  }
  .shbx-share-btn {
    padding: 12px 14px;
    font-size: 16px;
    gap: 8px;
  }
  .shbx-url-input {
    font-size: 12px;
    padding: 10px 14px;
  }
  .shbx-copy-btn {
    padding: 10px 14px;
  }
}
@media (max-width: 480px) {
  .shbx-dialog {
    padding: 16px;
  }
  .shbx-buttons-grid {
    gap: 8px;
  }
}
.msgs-main-box {
  margin-top: 20px;
}
.msgs-main-box .sn-msgs-box {
  background: white;
  border: 1px solid #A3B3FF;
  border-radius: 20px;
  padding: 15px;
}
.msgs-main-box .sn-msgs-nobox {
  text-align: center;
}
.msgs-main-box .sn-msgs-nobox-head1 {
  font-size: 20px;
  font-weight: 500;
}
.msgs-main-box .sn-msgs-nobox-head2 {
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
}
.msgs-main-box .sn-msgs-nobox-refresh-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.msgs-main-box .sn-msgs-nobox-refresh-btn a {
  background: #09090B;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 8px;
  width: 100%;
}

#refreshIcon {
  transition: transform 0.3s linear;
}

/* Infinite rotation animation */
.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.snmb-main-box {
  margin-top: 30px;
}

.snmb-main-box-blue .snmb-container {
  border: 1px solid #A3B3FF;
}
.snmb-main-box-blue .snmb-post-item {
  background: #EEF2FF;
  border: 1px solid #C6D2FF;
}
.snmb-main-box-blue .snmb-action-group {
  border-top: 0.5px solid #C6D2FF;
}
.snmb-main-box-blue .snmb-action-item {
  color: #372AAC;
}
.snmb-main-box-blue .snmb-action-item:hover {
  transform: translateY(-2px);
}
.snmb-main-box-blue .snmb-avatar {
  border: 1px solid #A3B3FF;
  background-color: #E0E7FF;
}
.snmb-main-box-blue .snmb-avatar::before {
  background-color: #51A2FF; /* head color */
}
.snmb-main-box-blue .snmb-avatar::after {
  background-color: #fafafa;
}

.snmb-main-box-tlblue .snmb-container {
  border: 0;
  padding: 0;
  background: none;
}

.snmb-main-box-purple .snmb-container {
  border: 1px solid #F4A8FF;
}
.snmb-main-box-purple .snmb-post-item {
  background: #FDF4FF;
  border: 1px solid #F6CFFF;
}
.snmb-main-box-purple .snmb-action-group {
  border-top: 0.5px solid #F6CFFF;
}
.snmb-main-box-purple .snmb-action-item {
  color: #8A0194;
}
.snmb-main-box-purple .snmb-action-item:hover {
  transform: translateY(-2px);
}
.snmb-main-box-purple .snmb-avatar {
  border: 1px solid #F4A8FF;
  background: #FAE8FF;
}
.snmb-main-box-purple .snmb-avatar::before {
  background-color: #ed5fad; /* head color */
}
.snmb-main-box-purple .snmb-avatar::after {
  background-color: #fafafa;
}

.snmb-main-box-tlpurple .snmb-container {
  border: 0;
  padding: 0;
  background: none;
}

.snmb-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.snmb-post-item {
  background-color: white;
  border: 1px solid #e0e8f5;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.snmb-post-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.snmb-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.snmb-avatar::before {
  content: "";
  position: absolute;
  top: 18%;
  width: 15px;
  height: 15px;
  background-color: #51A2FF; /* head color */
  border-radius: 50%;
}
.snmb-avatar::after {
  content: "";
  position: absolute;
  bottom: -1%;
  width: 24px;
  height: 12px;
  background-color: #fafafa;
  border-radius: 50%/100%;
  box-shadow: 0 2px 5px 2px #cccccc;
}

.snmb-post-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  color: #27272A;
  overflow: hidden;
  text-overflow: ellipsis;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; */
}

.snmb-action-group {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  padding-top: 12px;
  border-top: 1px solid #e0e8f5;
  width: 100%;
}

.snmb-action-item {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #372AAC;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.snmb-action-item:hover {
  color: #3340c8;
  transform: translateY(-2px);
}

.snmb-action-icon img {
  display: block;
}

.snmb-cta-button {
  background-color: #09090B;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 8px;
}

.snmb-cta-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.snmb-cta-icon img {
  display: block;
}

/* Responsive Design */
@media (max-width: 480px) {
  .snmb-container {
    max-width: 100%;
    padding: 12px;
    gap: 10px;
  }
  .snmb-post-item {
    padding: 12px;
    gap: 10px;
  }
  .snmb-post-text {
    font-size: 16px;
  }
  .snmb-action-group {
    gap: 16px;
    padding-top: 10px;
  }
  .snmb-action-item {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .snmb-post-text {
    font-size: 15px;
  }
}
.snmb-msgbox-input {
  position: relative;
  border-top: 0.5px solid #C6D2FF;
  padding-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.snmb-msgbox-input textarea {
  width: 100%;
  resize: vertical;
  background: #ffffff;
  border-radius: 5px;
  padding: 5px 30px 0px 10px;
  min-height: 40px;
  max-height: 120px; /* ~6 rows */
  overflow-y: auto;
  font-family: "Gabarito", sans-serif;
}
.snmb-msgbox-input button {
  background: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.snmb-msgbox-input button:active {
  transform: scale(0.9);
}
.snmb-msgbox-input button:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.snmb-msgbox-input.blueMsgBox textarea {
  border: 1px solid #432DD7;
}

.snmb-msgbox-input.purpleMsgBox textarea {
  border: 1px solid #F6CFFF;
}

[dir=rtl] .snmb-msgbox-input textarea {
  padding: 5px 5px 0px 30px !important;
}
[dir=rtl] .snmb-msgbox-input button {
  left: 10px;
  right: auto;
}

.snmb-comment-box {
  opacity: 1 !important;
  height: auto !important;
}

.snmb-msgbox-input.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.sn-thread-slider-sec {
  margin-top: 30px;
}

.sn-thread-slider {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
}

.spcs-box {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spcs-boxblue .spcs-header {
  background: #0084D1;
}
.spcs-boxblue .spcs-content {
  background: linear-gradient(179.62deg, #FFFFFF 0.08%, #BEDBFF 100%);
}
.spcs-boxblue .spcs-button {
  background: #00BCFF;
}

.spcs-boxbpink .spcs-header {
  background: #F54900;
}
.spcs-boxbpink .spcs-content {
  background: linear-gradient(179.62deg, #FFFFFF 0.08%, #FFEDD4 100%);
}
.spcs-boxbpink .spcs-button {
  background: #F54900;
}

.spcs-boxborange .spcs-header {
  background: #E60076;
}
.spcs-boxborange .spcs-content {
  background: linear-gradient(179.62deg, #FFFFFF 0.08%, #FCE7F3 100%);
}
.spcs-boxborange .spcs-button {
  background: #E60076;
}

/* Header Section */
.spcs-header {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px 12px 0 0;
}

.spcs-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spcs-user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spcs-username {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
}

.spcs-comments {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
}

.spcs-badge {
  background-color: #F4F4F5;
  color: #000000;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Content Section */
.spcs-content {
  padding: 20px 24px;
  background: linear-gradient(179.62deg, #FFFFFF 0.08%, #BEDBFF 100%);
  border-radius: 0 0 12px 12px;
}

.spcs-quote {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 24px;
  text-align: left;
}

.spcs-cta-wrapper {
  display: flex;
  justify-content: center;
}

.spcs-button {
  color: #000000;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
  text-decoration: none;
}

.spcs-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.spcs-button:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 640px) {
  .spcs-header {
    padding: 10px;
    border-radius: 8px 8px 0 0;
    gap: 16px;
  }
  .spcs-header-left {
    width: 100%;
  }
  .spcs-content {
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
  }
  .spcs-quote {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .spcs-button {
    padding: 10px 28px;
    font-size: 14px;
  }
}
.swiper-container2 {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-pagination2 {
  text-align: center;
}

.spcs-box {
  transform: scale(0.92);
  opacity: 0.6;
}
.spcs-box.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

.slib-container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #3F3F46;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 30px;
}

.slib-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  user-select: none;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.slib-header:hover {
  background: #fafafa;
}

.slib-header-text {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

.slib-toggle-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.slib-toggle-icon.active {
  transform: rotate(0deg);
}

.slib-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.slib-content.active {
  max-height: 500px;
}

.slib-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
}

.slib-info-row:last-child {
  border-bottom: none;
}

.slib-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slib-info-label {
  font-size: 13px;
  color: #71717B;
  min-width: 60px;
}

.slib-info-value {
  font-size: 13px;
  color: #000000;
  font-weight: 500;
  word-break: break-all;
}

/* Responsive */
@media (max-width: 480px) {
  .slib-container {
    max-width: 90%;
  }
  .slib-header {
    padding: 14px;
  }
  .slib-info-row {
    padding: 6px 14px;
  }
  .slib-header-text {
    font-size: 13px;
  }
}
.sntl-main-sec {
  margin-top: 0px;
}

.sntl-container {
  max-width: 767px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sntl-timeline-blue {
  background: #372AAC;
}

.sntl-timeline-purple {
  background: #8A0194;
}

.sntl-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.sntl-back-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.sntl-back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sntl-title {
  color: white;
  font-size: 16px;
  font-weight: 0;
  flex: 1;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sntl-counter {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sntl-content {
  padding: 40px 20px 20px;
  position: relative;
  z-index: 2;
}

.sntl-heading {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sntl-description {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 400;
}

.sntl-username {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 20px;
}

.sntl-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: 0 20px;
  margin-bottom: 20px;
}

.sntl-btn {
  flex: 1;
  padding: 13px 16px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  min-height: 48px;
}

.sntl-btn-icon img {
  display: block;
}

.sntl-btn-whatsapp {
  background: #25D366;
  color: white;
}

.sntl-btn-whatsapp:hover {
  background: #20ba58;
  transform: translateY(-2px);
}

.sntl-btn-snapchat {
  background: #FFFC00;
  color: #000;
  font-weight: 700;
}

.sntl-btn-snapchat:hover {
  background: #f0f000;
  transform: translateY(-2px);
}

.sntl-btn-facebook {
  background: #0866FF;
  color: white;
}

.sntl-btn-facebook:hover {
  background: #0a66c2;
  transform: translateY(-2px);
}

.sntl-btn-share {
  background: #09090B;
  color: white;
  padding: 13px 20px;
}

.sntl-btn-share:hover {
  background: #333;
  transform: translateY(-2px);
}

.sntl-decorative-container {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 1;
}

.sntl-decorative-img {
  display: block;
  width: 155px;
}

@media (max-width: 480px) {
  .sntl-container {
    width: 100%;
  }
  .sntl-description {
    font-size: 15px;
  }
  .sntl-buttons {
    gap: 10px;
  }
}
.sn-user-friend {
  margin-top: 15px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .sn-user-friend {
    padding: 15px;
    padding-bottom: 0;
  }
}
.sn-user-friend .sntl-container {
  border-radius: 16px;
}
.sn-user-friend .sn-user-friend-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  padding-top: 20px;
  padding-bottom: 0;
}
.sn-user-friend .sntl-content {
  padding: 0;
}
.sn-user-friend .sntl-decorative-container {
  position: static;
}
.sn-user-friend .sn-user-friend-btm {
  padding: 15px;
  padding-top: 0;
}
.sn-user-friend .sn-user-friend-btm textarea {
  width: 100%;
  border-radius: 8px;
  min-height: 100px;
  resize: none;
  padding: 10px;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  font-family: "Gabarito", sans-serif;
}
.sn-user-friend .sn-user-friend-btm textarea:focus-visible {
  outline: 0;
}
.sn-user-friend .sn-user-friend-btm button {
  width: 100%;
  border-radius: 8px;
  border: 0;
  text-align: center;
  height: 48px;
  margin-top: 5px;
  background: #fff;
  font-size: 20px;
  color: #000000;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.sn-user-friend .sn-user-friend-btm button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sn-user-friend .sn-user-friend-timelinebtm {
  padding: 15px;
  padding-top: 0;
  padding-bottom: 5px;
}
.sn-user-friend .snmb-msgbox-input {
  display: block;
  opacity: 1;
  border: 0;
  position: relative;
  padding-top: 0;
  transform: none;
}
.sn-user-friend .snmb-msgbox-input textarea {
  width: 100%;
  resize: vertical;
  background: #ffffff;
  border: 1px solid #432DD7;
  border-radius: 8px;
  min-height: 40px;
  max-height: 120px; /* ~6 rows */
  overflow-y: auto;
  padding: 5px 30px 0px 10px;
  font-family: "Gabarito", sans-serif;
}
.sn-user-friend .snmb-msgbox-input textarea:focus-visible {
  outline: 0;
}

.sn-user-friend-timeline.sn-user-friend {
  margin-top: 0;
}
@media (max-width: 767px) {
  .sn-user-friend-timeline.sn-user-friend {
    padding: 0px;
    padding-bottom: 0;
  }
}
.sn-user-friend-timeline.sn-user-friend .sntl-container {
  border-radius: 0;
}

.snmb-post-item.snuf-comment-timeline {
  background: none;
  border: 0;
  border-bottom: 1px solid #D4D4D8;
  border-radius: 0;
}
.snmb-post-item.snuf-comment-timeline .snmb-avatar {
  border: 1px solid #D4D4D8;
  background: #ffffff;
}
.snmb-post-item.snuf-comment-timeline .snmb-avatar::before {
  background: #6b6b75;
}

.msgs-main-box.snuf-with-no-msg .sn-msgs-box {
  border: 0;
  border-radius: 0;
}

.sncml-main-sec {
  margin-top: 30px;
}

.sncml-card {
  background: #ffffff;
  border: 1px solid #F6CFFF;
  border-radius: 16px;
  padding: 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sncml-subtitle {
  font-size: 16px;
  color: #27272A;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.sncml-heading {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -1px;
}

.sncml-button-purple {
  background: #A800B7;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border: none;
  height: 48px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 8px 0;
  margin-top: 0;
  letter-spacing: -0.5px;
}

.sncml-button-purple:hover {
  background: #9a1ab5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 29, 218, 0.3);
}

.sncml-button-purple:active {
  transform: translateY(0);
}

.sncml-button-blue {
  background: #372AAC;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border: none;
  height: 48px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 8px 0;
  margin-top: 0;
  letter-spacing: -0.5px;
}

.sncml-button-blue:hover {
  background: #372AAC;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 29, 218, 0.3);
}

.sncml-button-blue:active {
  transform: translateY(0);
}

.sncml-footer {
  font-size: 12px;
  color: #27272A;
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* Tablet and below */
@media (max-width: 768px) {
  .sncml-card {
    padding: 20px 15px;
    gap: 10px;
    border-radius: 24px;
    border-width: 2px;
  }
}
/* Overlay */
.snlpo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.snlpo-overlay.snlpo-active {
  display: flex;
}

/* Modal Container */
.snlpo-modal {
  background: #F4F4F5;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  width: 30%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: snlpo-slideUp 0.3s ease-out;
}

@keyframes snlpo-slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Header */
.snlpo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-shrink: 0;
  position: relative;
}

.snlpo-title {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  /* title is now centered */
  text-align: center;
}

/* Close Button */
.snlpo-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  /* absolute positioning so it doesn't affect center layout */
  position: absolute;
  right: 10px;
}

.snlpo-close-btn:hover {
  background-color: #f0f0f0;
  color: #333;
}

/* Language List */
.snlpo-list {
  overflow-y: auto;
  flex: 1;
  padding: 15px;
  padding-top: 0;
}

.snlpo-list-item {
  display: block;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  border-bottom: 1px solid #e8e8e8;
  transition: background-color 0.2s ease;
  user-select: none;
  text-decoration: none;
}

.snlpo-list-item:last-child {
  border-bottom: none;
}

.snlpo-list-item:hover {
  background-color: #f9f9f9;
}

.snlpo-list-item.snlpo-selected {
  background-color: #FFFFFF;
  font-weight: 400;
  border-radius: 8px;
}

/* Scrollbar Styling */
.snlpo-list::-webkit-scrollbar {
  width: 6px;
}

.snlpo-list::-webkit-scrollbar-track {
  background: transparent;
}

.snlpo-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.snlpo-list::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Responsive Design */
@media (max-width: 600px) {
  .snlpo-modal {
    width: 95%;
    max-height: 80vh;
  }
  .snlpo-header {
    padding: 16px;
  }
  .snlpo-title {
    font-size: 16px;
  }
  .snlpo-list-item {
    padding: 14px 16px;
    font-size: 15px;
  }
  .snlpo-close-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .snlpo-modal {
    width: 95%;
    max-height: 75vh;
    border-radius: 6px;
  }
  .snlpo-header {
    padding: 14px;
  }
  .snlpo-title {
    font-size: 15px;
  }
  .snlpo-list-item {
    padding: 12px 14px;
    font-size: 14px;
  }
}
/* Demo Button */
.snlpo-demo-btn {
  padding: 10px 20px;
  margin: 20px;
  background: #007AFF;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
}

.snlpo-demo-btn:hover {
  background: #0051D5;
}

.sndep-demo-element {
  padding: 20px;
  margin: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  user-select: none;
  cursor: pointer;
}

.sndep-demo-element:active {
  opacity: 0.8;
}

.sndep-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: sndep-fade-in 0.2s ease-in;
}

.sndep-overlay.sndep-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes sndep-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sndep-slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.sndep-popup {
  background: white;
  border-radius: 12px;
  width: 320px;
  max-width: 90vw;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sndep-popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  padding-top: 15px;
  /* removed border-bottom and centered title */
}

.sndep-popup-title {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.3px;
}

.sndep-close-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: absolute;
  right: 12px;
}

.sndep-popup-content {
  padding: 10px;
  text-align: center;
}

.sndep-popup-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.sndep-popup-footer {
  display: flex;
  gap: 12px;
  padding: 10px;
  /* removed border-top */
}

.sndep-button {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.3px;
}

.sndep-button-secondary {
  background: white;
  color: #333;
  border: 1.5px solid #ddd;
}

.sndep-button-secondary:hover {
  background: #fafafa;
  border-color: #999;
}

.sndep-button-secondary:active {
  background: #f0f0f0;
}

.sndep-button-primary {
  background: #c41e3a;
  color: white;
}

.sndep-button-primary:hover {
  background: #a01830;
}

.sndep-button-primary:active {
  background: #8a1628;
}

/* Responsive styles */
@media (max-width: 480px) {
  .sndep-popup {
    width: calc(100% - 32px);
    max-width: 320px;
  }
  .sndep-popup-header {
    padding: 16px;
  }
  .sndep-popup-title {
    font-size: 16px;
  }
  .sndep-popup-content {
    padding: 16px;
  }
  .sndep-popup-text {
    font-size: 13px;
  }
  .sndep-popup-footer {
    padding: 16px;
    gap: 10px;
  }
  .sndep-button {
    padding: 11px 14px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .sndep-popup-footer {
    flex-direction: column;
  }
  .sndep-button {
    width: 100%;
  }
}
/* Overlay Styles */
.sppoc-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.sppoc-overlay.active {
  display: flex;
  opacity: 1;
}

/* Modal Popup Styles */
.sppoc-modal {
  background: white;
  border-radius: 24px;
  padding: 20px 24px;
  width: 375px;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom scrollbar styling for better UX */
.sppoc-modal::-webkit-scrollbar {
  width: 6px;
}

.sppoc-modal::-webkit-scrollbar-track {
  background: transparent;
}

.sppoc-modal::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.sppoc-modal::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Firefox scrollbar */
.sppoc-modal {
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Header Styles */
.sppoc-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.sppoc-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.sppoc-close-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #999;
  font-size: 20px;
  transition: all 0.2s ease;
  position: absolute;
  right: -3px;
}

.sppoc-close-btn:hover {
  background: #f0f0f0;
  color: #333;
}

/* Card Section Styles */
.sppoc-card {
  border-radius: 20px;
  padding: 12px;
  margin-bottom: 24px;
  color: white;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  max-width: 200px;
  margin: 0 auto;
}

.sppoc-card-blue {
  background: #372AAC;
}

.sppoc-card-purple {
  background: #8A0194;
}

.sppoc-card-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.sppoc-card-subtitle {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.5;
}

.sppoc-card-image {
  width: 150px;
  margin-top: 16px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.sppoc-card-footer {
    opacity: 0.9;
}

.sppoc-card-footer img{
    width: 29px;
}

/* Social Buttons Container */
.sppoc-social-container {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 15px;
}

/* Social Button Base */
.sppoc-social-btn img {
  width: 40px;
  height: 40px;
}

.sppoc-social-btn:hover {
  transform: scale(1.1);
}

/* Share Button */
.sppoc-share-btn {
  background: #000;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.sppoc-share-btn:hover {
  background: #333;
}

/* Arrow Icon */
.sppoc-share-icon {
  width: 16px;
  height: 16px;
}

/* Trigger Button */
.sppoc-trigger-btn {
  background: #6b46c1;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 40px auto;
  display: block;
}

.sppoc-trigger-btn:hover {
  background: #553399;
}

.snclp-popup .sppoc-title {
  text-align: center;
}
.snclp-popup .sppoc-card {
  min-height: auto;
  padding: 0;
}
.snclp-popup .sppoc-create-link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.snclp-popup .sppoc-create-link-btn a {
  background: #372AAC;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border: none;
  height: 48px;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 8px 0;
  margin-top: 0;
  letter-spacing: -0.5px;
}
.snclp-popup .sppoc-create-link-btn a.sppoc-create-link-btn-blue {
  background: #372AAC;
}
.snclp-popup .sppoc-create-link-btn a.sppoc-create-link-btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 29, 218, 0.3);
}
.snclp-popup .sppoc-create-link-btn a.sppoc-create-link-btn-purple {
  background: #A800B7;
}
.snclp-popup .sppoc-create-link-btn a.sppoc-create-link-btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 29, 218, 0.3);
}
.snclp-popup .sppoc-create-link-txt {
  text-align: center;
  color: #27272A;
  font-size: 12px;
  padding-top: 5px;
}

/* Responsive Design */
@media (max-width: 480px) {
  .sppoc-modal {
    width: 90vw;
    padding: 24px 16px;
  }
  .sppoc-title {
    font-size: 18px;
  }
  .sppoc-card {
    padding: 16px;
    min-height: 240px;
  }
  .sppoc-card-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .sppoc-modal {
    width: calc(100% - 32px);
  }
}
.snf-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  padding-bottom: 100px;
  margin-top: 40px;
}

.snf-social-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.snf-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.snf-social-link:hover {
  transform: scale(1.1);
}

.snf-nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.snf-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
  font-weight: 400;
}

.snf-nav-link:hover {
  opacity: 0.7;
}

.snf-copyright {
  font-size: 13px;
  color: #cccccc;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .snf-footer {
    padding: 32px 16px;
    padding-bottom: 100px;
  }
  .snf-social-container {
    gap: 20px;
    margin-bottom: 24px;
  }
  .snf-nav-links {
    gap: 16px;
    margin-bottom: 20px;
  }
  .snf-nav-link {
    font-size: 13px;
  }
  .snf-copyright {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .snf-footer {
    padding: 24px 12px;
    padding-bottom: 100px;
  }
  .snf-social-container {
    gap: 16px;
    margin-bottom: 20px;
  }
  .snf-nav-links {
    gap: 12px;
    margin-bottom: 16px;
  }
  .snf-nav-link {
    font-size: 12px;
  }
  .snf-copyright {
    font-size: 11px;
  }
}
.custom_ad {
  margin-top: 3rem;
}

.top_ad {
  margin-bottom: 40px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.bottom_ad {
  margin-bottom: 40px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.ads_sec {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
  flex-wrap: wrap;
}
.static_ads {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 999;
  width: 320px;
  height: 65px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.static_ads .adv-ads-txt {
  position: absolute;
  top: 0;
}
/*# sourceMappingURL=common.css.map */
