/* CSS Variables for easy customization */
:root {
  --primary-color: #ff4d4d;
  --secondary-color: #ff8533;
  --bg-color: #121212;
  --text-color: #f5f5f5;
  --card-bg: #1e1e1e;
  --card-hover: #2a2a2e;
  --accent-color: #ff6b6b;
  --gradient-fire: linear-gradient(45deg, #ff4d4d, #ff8533);
  --font-family: 'Montserrat', sans-serif;
}


/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  user-select: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--gradient-fire);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo img {
  height: 50px;
  /* Ensure clickable logo gets a pointer cursor */
  cursor: pointer;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.language-selector select {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}
/* Common button style */
.btn {
  padding: 8px 15px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
  color: white;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/*.login-btn {
  background-color: transparent;
}*/

.login-btn {
  background-color: var(--bg-color);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.login-btn:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.vip-btn {
  background-color: transparent;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 120px 0 60px;
  text-align: center;
  background: url('https://bellabuns.site-oficial-com-desconto.com/assets/images/aboutme.webp') center center/cover;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}
.cta-button {
  display: inline-block;
  background: var(--gradient-fire);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255,77,77,0.4);
  transition: all 0.3s ease;
  border: 2px solid white;
}
.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255,77,77,0.6);
}

.cta-button2 {
  display: inline-block;
  background: var(--gradient-fire);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255,77,77,0.4);
  transition: all 0.3s ease;
  /*border: 2px solid white;*/
}
.cta-button2:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255,77,77,0.6);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: rgba(30, 30, 30, 0.8);
}
.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-image {
  flex: 1;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.about-image img {
  width: 100%;
  display: block;
}
.about-content {
  flex: 1;
  min-width: 280px;
}
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}
.about-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-fire);
}
.about-content p {
  margin-bottom: 15px;
  line-height: 1.5;
}
.about-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.feature-item {
  background-color: var(--card-bg);
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.feature-item:hover {
  background-color: var(--card-hover);
  transform: translateY(-3px);
}
.feature-item i {
  color: var(--primary-color);
  margin-right: 8px;
}

/* Testimonials Section & Previews Carousel */
.testimonials, .previews {
  padding: 80px 0;
  background-color: var(--bg-color);
  text-align: center;
}
.testimonials h2, .previews h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}
.testimonials h2::after, .previews h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-fire);
}
/* Desktop grid for testimonials & previews */
.testimonial-grid, .preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
/* Mobile carousel for testimonials & previews */
@media (max-width: 768px) {
  .testimonial-grid, .preview-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
  }
  .testimonial-grid .testimonial-card,
  .preview-grid .preview-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}
.testimonial-card, .preview-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.testimonial-card:hover, .preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.testimonial-card img, .preview-card img {
  width: 100%;
  display: block;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: rgba(30, 30, 30, 0.8);
}
.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}
.faq h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-fire);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background-color: var(--card-hover);
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  line-height: 1.5;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 800px;
}

/* VIP Call-to-Action Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-fire);
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.5;
}
/* Make the button more prominent */
.cta-section .cta-button {
  background-color: white;
  color: white;
  border: 2px solid white;
  padding: 18px 35px;
}
.cta-section .cta-button:hover {
  background-color: var(--bg-color);
  color: white;
}

/* Footer Section */
footer {
  background-color: #0a0a0a;
  padding: 50px 0 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.footer-logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  text-align: center;
}
.footer-logo img {
  height: 50px;
  cursor: pointer;
}
.footer-links {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}
.footer-links h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-fire);
}
.footer-links ul {
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: var(--primary-color);
}
/* Social icons: slightly smaller with a button-like effect */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
.social-links a {
  width: 35px;
  height: 35px;
  display: block;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  /*border-color: white;*/
}
.social-links img {
  width: 50%;
  display: block;
}

/*####################################*/

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}
.social-links a {
  width: 40px;
  height: 40px;
  background-color: #1e1e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--gradient-fire);
  transform: translateY(-3px);
}

/*#######################################*/

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 15px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .about-container { flex-direction: column; }
  .feature-list { grid-template-columns: 1fr; }
  .footer-container { flex-direction: column; text-align: center; }
  .footer-links h3::after { left: 50%; transform: translateX(-50%); }
}

/* Additional spacing for improved readability on Terms and Privacy pages */
main.container h1,
main.container h2,
main.container h3,
main.container p {
  margin-bottom: 20px !important;
  line-height: 1.6 !important;
}

main.container {
  margin-top: 100px !important;
  padding: 20px !important;
}

/* Extra spacing between direct child sections of main.container */
main.container > div {
  margin-bottom: 40px !important;
}

#loadingIndicator {
  position: relative; /* or absolute, if needed */
  z-index: 3000; /* Already set */
  color: white;
}

/* Skeleton Loader Base */
.skeleton {
  background-color: #2a2a2e; /* A slightly lighter shade than your card-bg */
  margin-bottom: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* Skeleton Animation */
.skeleton::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Specific Skeleton for Plan Buttons */
.skeleton-plan {
  height: 40px; /* Adjust this height to simulate your button height */
  /* Optional: set width to a percentage if you want variation or fixed width */
  width: 100%;
}

#pixCode {
  background: #333;
  padding: 10px;
  white-space: pre-wrap;   /* Wrap lines and preserve formatting */
  word-break: break-all;    /* Break long words if needed */
  user-select: text;        /* Allow text to be selectable */
}

/* vip user counters */

.vip-user-counters {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  color: #fff;
  font-family: var(--font-family);
}
.vip-user-counters .total-users,
.vip-user-counters .online-users {
  background: var(--card-bg);
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.vip-user-counters span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.vip-user-counters small {
  display: block;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 4px;
}

/* ── VIP COUNTER DARK THEME ───────────────────────────────────────────────── */

.vip-user-counters {
  display: flex;
  align-items: center;
  /*background-color: #1e1e1e;*/
  padding: none; /*8px 16px;*/
  border-radius: 6px;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);*/
  gap: 12px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-dot.online {
  background-color: #4CAF50;
  box-shadow: 0 0 8px #4CAF50;
}

.status-dot.offline {
  background-color: #9e9e9e;
}

.counter-text,
.members-text {
  font-size: 14px;
  font-weight: 500;
}

.counter-text {
  color: #d4d4d4;
}

.members-text {
  color: #9e9e9e;
}

.icon { display: inline-block; vertical-align: middle; }
.icon.small { width: auto; height: 1.5rem; }   /* shrink to 24×24 */
.icon.responsive { width: 10vw; height: auto; } /* responsive sizing */
