.rev-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.buttons-vip {
  width: 100%;
  padding: 0px 20px;
  margin-top: 20px;
}

.buttons-vip a {
  display: block;
  width: 100%;
  text-align: center;
  background: #ffcc00;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.5);
  border: 2px solid #ffcc00;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  padding: 10px;
}

.buttons-vip span {
  display: block;
  width: 100%;
  color: #ddd;
  text-align: center;
  margin: 10px 0px;
  cursor: pointer;
}

.vip-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  background: rgba(255, 204, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
  border: 2px solid #ffcc00;
  border-radius: 15px;
  padding: 15px;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.vip-price p {
  flex-basis: 100%;
  margin: 0;
  font-size: 14px;
  margin-top: -10px;
  color: #fff;
}

.price-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.price-text .por {
  font-size: 1.2rem;
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: -5px;
}

.price-text .apenas {
  font-size: 0.9rem;
  color: #ddd;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-value .value {
  font-size: 2.5rem;
  color: #ffcc00;
  font-weight: bold;
}

.benefit-card.highlight {
  transform: scale(1.05);
  background: rgba(255, 204, 0, 0.2);
  border: 1px solid #ffcc00;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
  transition: all 0.3s ease;
}

.new-container {
  max-width: 1200px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: rgba(148, 54, 172, 0.8);
  border: 1px solid #b644d4;
  border-radius: 30px;
  padding: 30px;
  margin-top: 30px;
  color: #fff;
  overflow-x: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-container-flex {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
  color: rgba(148, 54, 172, 1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 1);
  padding: 5px 10px;
  border: none;
  outline: none;
  z-index: 2;
  text-decoration: none;
}

.close-container-flex:hover {
  opacity: 0.7;
}

.payment-form {
  flex: 1;
  width: 100%;
  padding: 20px;
}

.payment-form h2 {
  font-size: 2rem;
  margin-bottom: 0px;
  color: #ffcc00;
}

.payment-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.payment-options label {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.payment-options label:hover {
  border-color: #ffcc00;
}

.payment-options img {
  max-width: 60px;
  margin-bottom: 10px;
}

.payment-options input[type="radio"] {
  display: none;
}

.payment-options input[type="radio"]:checked+label {
  border-color: #ffcc00;
  background: rgba(255, 204, 0, 0.1);
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
}

.form-section input {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.form-section input::placeholder {
  color: #ddd;
}

.form-section button {
  background: #b644d4;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.form-section button:hover {
  background: #9a2fb2;
}

.card-container {
  position: relative;
  margin-bottom: 20px;
}

.enter-input {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  position: relative;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}

.security-message {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #dddddd;
}

.vip-benefits {
  width: 100%;
  flex: 1;
}

.vip-benefits h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffcc00;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: scale(1.05);
}

.benefit-card i {
  font-size: 1.2rem;
  color: #ffcc00;
  margin-left: 10px;
}

.benefit-card h3 {
  font-size: 1rem;
  margin: 0;
  color: #fff;
}

.benefit-card p {
  font-size: 0.8rem;
  color: #ddd;
  margin: 5px 0 0;
}

.card_row {
  display: flex;
  gap: 10px;
}

.card_row>div {
  flex: 1;
}

.logo-container {
  margin: 0 auto;
  text-align: center;
  margin: 15px 0px 20px 10px;
}

.logo-container img {
  max-width: 250px;
}

.pix-div {
  display: none;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.pix-div p {
  margin-top: 20px;
}

.countdown_timer {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.time_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time_value {
  font-size: 2rem;
  font-weight: bold;
}

.time_label {
  font-size: 0.8rem;
  color: #ffcc00;
  text-transform: uppercase;
}

.pix-container button {
  width: 100%;
  background: rgba(255, 204, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
  border: 1px solid #ffcc00;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
}

.pix-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.pix-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pix-container h2,
.pix-container img {
  margin-bottom: 10px;
  color: #ffcc00;
}

.pix-steps li {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 10px;
  gap: 10px;
}

.pix-steps li::before {
  content: counter(step);
  counter-increment: step;
  width: 25px;
  height: 25px;
  background: rgba(255, 204, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
  border: 1px solid #ffcc00;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.pix-steps {
  counter-reset: step;
}

.pix-result {
  text-align: center;
}

.pix-result img {
  max-width: 150px;
}

.tooltip-icon {
  font-size: 14px;
  color: indigo;
  cursor: pointer;
  margin-left: 5px;
  position: relative;
}

.tooltip-modal {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  color: #333;
  max-width: 220px;
  white-space: normal;
  z-index: 1000;
  border-radius: 5px;
}

.glow-button {
  max-width: 80%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  animation: glow 1.5s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.i-vip {
  font-size: 12px;
  color: #fff;
  border-radius: 10px;
  margin-left: 5px;
  cursor: pointer;
}

.i-vip:hover {
  color: #ffcc00;
}

#loading .loading-logo {
  max-width: 350px;
  width: 100%;
  animation: logo-pulse 2s infinite;
}

.insta-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 30px;
  border-radius: 20px;
}

.center-follow {
  justify-content: center;
}

.center-follow .insta-follow {
  max-width: 100%;
  justify-content: center;
}

.insta-carousel {
  flex: 0 0 80%;
  max-width: 80%;
  overflow: hidden;
  position: relative;
  padding: 10px 20px;
  border-radius: 20px;
  background: linear-gradient(45deg,
      rgba(240, 148, 51, 0.6),
      rgba(230, 104, 60, 0.6),
      rgba(220, 39, 67, 0.6),
      rgba(204, 35, 102, 0.6),
      rgba(188, 24, 136, 0.6));
  border: 1px solid rgba(240, 148, 51, 0.6);
}

.insta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.insta-header h2 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.insta-header .slick-arrows {
  display: flex;
  gap: 10px;
}

.insta-header .slick-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(45deg,
      rgba(240, 148, 51, 0.6),
      rgba(230, 104, 60, 0.6),
      rgba(220, 39, 67, 0.6),
      rgba(204, 35, 102, 0.6),
      rgba(188, 24, 136, 0.6));
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

.insta-header .slick-arrow:hover {
  background: #8932a1;
}

.insta-follow {
  flex: 0 0 25%;
  max-width: 20%;
  background: linear-gradient(45deg,
      rgba(240, 148, 51, 0.6),
      rgba(230, 104, 60, 0.6),
      rgba(220, 39, 67, 0.6),
      rgba(204, 35, 102, 0.6),
      rgba(188, 24, 136, 0.6));
  border: 1px solid rgba(240, 148, 51, 0.6);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.insta-follow-profile,
.insta-story {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 2px;
  background: #59e479;
  cursor: pointer;
  box-sizing: border-box;
}

.insta-slider {
  margin-bottom: 10px;
}

.insta-follow-profile img,
.insta-story img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  object-fit: cover !important;
}

.insta-story video {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover !important;
}

.insta-follow-profile.active,
.insta-story.active {
  background: #ccc;
}

.story-content {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-content img,
.story-content video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50%;
}

.insta-follow-info {
  flex: 1;
}

.insta-follow-info h2 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.insta-follow-info p {
  margin: 0;
  color: #a5a5a5;
  font-size: 14px;
}

.insta-follow-button a {
  background: #0095f6;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.3s;
  text-decoration: none;
  width: 95%;
  text-align: center;
  display: inline-block;
}

.insta-follow-button a.following {
  background: #ccc;
}

.slick-slide {
  margin: 0 5px;
}

.slick-list {
  margin: 0 -5px;
}

.not-registered {
  width: 100%;
  display: inline-block;
  padding: 10px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  animation: button_register 1.5s infinite ease-in-out;
}

.not-registered a {
  text-decoration: none;
  color: #fff;
}

.not-registered:hover,
.not-registered a:hover {
  color: #fff;
}

.button-wpp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  font-size: 25px;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
}

.button-wpp:hover {
  background-color: #128c7e;
  scale: 1.05;
}

.header-icon-free {
  max-width: 50px;
  width: 100%;
  margin-right: 15px;
}

.header-icon-vip {
  max-width: 45px;
  width: 100%;
  margin-right: 20px;
}

.vip-platform img {
  border: 1px solid #ffcc00;
}

.bagde-flag-wrap {
  position: absolute;
  top: 4px;
  left: -12px;
}

.bagde-flag-wrap::before {
  content: "";
  position: absolute;
  top: 13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent rgba(236, 180, 28, 0.7) transparent transparent;
}

.bagde-flag {
  text-transform: capitalize;
  color: #ffffff;
  background: #ecb41c;
  letter-spacing: 0;
  font-size: 12px;
  max-width: 40px;
  font-weight: 600;
  display: block;
  text-decoration: none;
  text-align: center;
}

#demo_frame {
  margin: 0;
  border: 3px solid #d643ff;
  border-radius: 20px;
  background: #fff;
  width: 100%;
  height: 100%;
  min-height: 0;
}

#modal_gamevip {
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  width: 700px;
  height: 600px;
  background: none;
  box-shadow: none;
  text-align: center;
  z-index: 1001;
}

#modal_gamevip .modal-content {
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

#modal_gamevip .close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  color: #9436ac;
  background: rgba(255, 255, 255, 0.9);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

#modal_gamevip .close-modal:hover {
  transform: scale(1.1);
}

@media (min-width: 1024px) {
  .tab-aplicativo {
    display: none !important;
  }

  .sidebar-toggle {
    display: none;
  }
}

/* Estilos melhorados para o modal do aplicativo */
#modal_app {
  max-width: 450px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

#modal_app .modal-content {
  padding: 0;
  position: relative;
}

#modal_app .close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  color: #9436ac;
  background: rgba(255, 255, 255, 0.9);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

#modal_app .close-modal:hover {
  transform: scale(1.1);
}

.content-ios,
.content-android {
  padding: 25px;
  border-radius: 15px;
}

/* Estilos específicos para Android */
.content-android {
  text-align: center;
  background: linear-gradient(135deg, #9436ac 0%, #511b64 100%);
  color: white;
  animation: fadeIn 0.5s ease;
}

.content-android h2 {
  color: #ffcc00;
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.content-android h2 i {
  font-size: 28px;
}

.content-android h4 {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.content-android span {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

.content-android h5 {
  margin-top: 20px;
  font-size: 16px;
}

.content-android h5 a {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.content-android h5 a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Estilos específicos para iOS */
.content-ios {
  background: linear-gradient(135deg, #9436ac 0%, #511b64 100%);
  color: white;
  animation: fadeIn 0.5s ease;
}

.content-ios::before {
  content: "Para iOS";
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.ios-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.ios-steps li {
  margin-bottom: 30px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.ios-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: 15px;
  background: white;
  color: #007aff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ios-steps li p {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: white;
  line-height: 1.5;
}

/* Corrigindo o ícone do safari no modal iOS */
.ios-steps li p img {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 25px;
  background-color: white;
  padding: 3px;
  border-radius: 4px;
  margin: 0 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.ios-steps li img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 15px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 100%;
}

/* Animações e responsividade */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  #modal_app {
    max-width: 90%;
  }

  .content-android h2 {
    font-size: 20px;
  }

  .content-android h4 {
    font-size: 16px;
  }

  .ios-steps li p {
    font-size: 14px;
  }
}

.expired-payment {
  text-align: center;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 400px;
  margin: 2rem auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.expired-icon i {
  font-size: 4rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

.expired-payment h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.expired-payment p {
  margin-bottom: 1rem;
}

@keyframes shadowEffect {
  0% {
    box-shadow: 0 2px 5px rgba(86, 214, 36, 0.7);
  }

  50% {
    box-shadow: 0 4px 10px rgba(52, 156, 10, 0.7);
  }

  100% {
    box-shadow: 0 10px 20px rgba(64, 165, 24, 0.7);
  }
}

@keyframes button_register {
  0% {
    transform: scale(1);
    background-color: #28a745;
    box-shadow: 0 0 5px rgba(11, 227, 25, 0.9);
  }

  50% {
    transform: scale(1.05);
    background-color: #25ac42;
    box-shadow: 0 0 15px rgba(11, 227, 25, 0.9);
  }

  100% {
    transform: scale(1);
    background-color: #28a745;
    box-shadow: 0 0 5px rgba(11, 227, 25, 1);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .tab-pc {
    display: none !important;
  }

  .header-icon-free {
    max-width: 85px;
    margin-right: 15px;
  }

  .header-icon-vip {
    max-width: 30px;
  }

  .logo-container {
    display: none;
  }

  .insta-container {
    flex-direction: column;
    gap: 10px;
  }

  .insta-carousel,
  .insta-follow {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .insta-follow {
    justify-content: center;
    text-align: center;
  }

  #loading .loading-logo {
    max-width: 240px;
  }

  .pix-container {
    flex-direction: column;
    align-items: center;
  }

  .pix-result {
    width: 100%;
  }

  .pix-steps {
    width: 100%;
  }

  .pix-steps li {
    width: 100%;
  }

  .new-container {
    flex-direction: column;
    padding: 20px;
    margin: 60px 10px;
  }

  .payment-form {
    padding: 0;
  }

  .payment-options label {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }

  .payment-options img {
    width: 35px;
    height: 35px;
  }

  .payment-form h2,
  .vip-benefits h2 {
    font-size: 1.5rem;
  }

  .benefit-card {
    padding: 10px;
  }

  .benefit-card h3 {
    font-size: 0.9rem;
  }

  .benefit-card p {
    font-size: 0.7rem;
  }
}

/* Sidebar Styles */
.sidebar-menu {
  position: fixed;
  left: -280px;
  top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #20072f 0%, #4a1958 100%);
  z-index: 9999;
  transition: left 0.3s ease;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.4);
}

.sidebar-header {
  position: relative;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.sidebar-close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.sidebar-close:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.sidebar-footer {
  position: fixed;
  bottom: 0;
  left: -280px;
  width: 280px;
  padding: 15px;
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.sidebar-footer-suporte {
  position: fixed;
  bottom: 70px;
  width: 280px;
  padding: 15px;
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.sidebar-footer-suporte span {
  background: linear-gradient(135deg, #03a84e 0%, #03a84e 100%);
  border-color: #03a84e !important;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  font-size: 14px;
  text-align: center;
  animation: pulsar 2s infinite;
}

.sidebar-menu.active .sidebar-footer {
  left: 0;
}

.sidebar-content {
  padding-bottom: 500px;
  overflow-y: auto;
  max-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.social-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.social-button i {
  font-size: 20px;
}

.social-button.instagram {
  background: #e1306c;
}

.social-button.telegram {
  background: #0088cc;
}

.social-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .social-button span {
    display: none;
  }

  .social-button i {
    font-size: 20px;
  }

  .social-button {
    padding: 10px;
    min-width: 42px;
    height: 42px;
  }

  .sidebar-footer {
    padding: 12px;
    gap: 8px;
  }
}

.sidebar-close:hover {
  transform: scale(1.1);
}

.sidebar-logo {
  text-align: center;
  padding: 10px 0;
}

.sidebar-logo img {
  max-width: 150px;
  height: auto;
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  padding: 0px 20px;
}

.sidebar-item {
  color: white;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-item.ativo {
  background-color: rgba(255, 255, 255, 0.2);
}

.sidebar-dropdown {
  position: relative;
  margin-bottom: 8px;
}

.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-icon {
  transition: transform 0.3s;
}

.sidebar-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-content {
  border-left: 1px solid #6b208e;
  margin-left: 20px;
}

.provider-icon {
  width: 30px;
  margin-right: 5px;
  border-radius: 4px;
}

.sidebar-toggle {
  background: white;
  border: 1px solid #ddd;
  cursor: pointer;
  padding: 0px 8px;
  border-radius: 8px;
  color: #b644d4;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-left: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-toggle svg {
  width: 17px;
}

.sidebar-toggle:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
  color: #9434a8;
}

.sidebar-menu .sidebar-item i {
  font-size: 20px;
}

/* Overlay when sidebar is open */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.sidebar-overlay.active {
  display: block;
}

#offline-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999999;
  text-align: center;
}

.offline-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 20px;
  width: 100%;
  max-width: 400px;
}

.offline-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.offline-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.offline-content p {
  font-size: 16px;
  color: #ccc;
}

body.offline * {
  pointer-events: none !important;
}

#offline-overlay * {
  pointer-events: auto !important;
}

.gameNotLogged {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.gameNotLogged p {
  margin-bottom: 10px;
  padding: 20px 20px 10px 20px;
}

.gameNotLoggedLink {
  width: 90%;
  display: inline-block;
  background-color: #59e479;
  box-shadow: 0 0 0 0 rgba(89, 228, 121, 0.7);
  border: 1px solid #59e479;
  animation: pulsar 1.5s infinite;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  padding: 8px 10px;
  font-weight: bold;
  white-space: nowrap;
  font-size: 14px;
}

.gameNotLoggedLink:hover {
  color: #000;
}

@media (max-width: 480px) {
  .gameNotLoggedLink {
    font-size: 12px;
  }
}

/* Story Modal CSS */
.story-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  overflow-y: auto;
  display: none;
}

.story-modal.show {
  display: block;
}

.story-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.story-modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.story-modal-spacer {
  display: none;
}

@media (min-width: 640px) {
  .story-modal-spacer {
    display: inline-block;
    height: 100vh;
    vertical-align: middle;
  }
}

.story-modal-content {
  display: inline-block;
  vertical-align: middle;
  background: white;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  text-align: left;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.3s ease;
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}

@media (min-width: 640px) {
  .story-modal-content {
    margin: 1rem auto;
    max-width: 500px;
  }
}

.story-modal-header {
  background: #9436ac;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-modal-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.story-modal-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  font-size: 1.25rem;
}

.story-modal-close:hover {
  color: #e5e7eb;
}

.story-modal-body {
  background: white;
  padding: 1.25rem 1.5rem 1rem;
  position: relative;
}

.story-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-modal-form input[type="hidden"] {
  display: none;
}

.story-modal-form input[type="text"],
.story-modal-form input[type="url"],
.story-modal-form input[type="number"],
.story-modal-form textarea,
.story-modal-form select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  box-sizing: border-box;
}

.story-modal-form input[type="text"]:focus,
.story-modal-form input[type="url"]:focus,
.story-modal-form input[type="number"]:focus,
.story-modal-form textarea:focus,
.story-modal-form select:focus {
  outline: none;
  border-color: #9436ac;
  box-shadow: 0 0 0 3px rgba(148, 54, 172, 0.1);
}

.story-modal-form input[type="file"] {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  box-sizing: border-box;
  background: white;
}

.story-modal-form input[type="file"]:focus {
  outline: none;
  border-color: #9436ac;
  box-shadow: 0 0 0 3px rgba(148, 54, 172, 0.1);
}

.story-modal-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.story-modal-form .help-text {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.story-modal-preview {
  display: none;
}

.story-modal-preview.show {
  display: block;
}

.story-modal-preview-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-modal-preview img,
.story-modal-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-modal-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-modal-checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  color: #9436ac;
  border-color: #d1d5db;
  border-radius: 4px;
}

.story-modal-checkbox input[type="checkbox"]:focus {
  outline: none;
  border-color: #9436ac;
  box-shadow: 0 0 0 3px rgba(148, 54, 172, 0.1);
}

.story-modal-checkbox label {
  margin: 0;
  font-size: 0.875rem;
  color: #111827;
}

.story-modal-footer {
  background: #f9fafb;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  position: sticky;
  bottom: 0;
}

.story-modal-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.story-modal-btn-secondary {
  background: #d1d5db;
  color: #374151;
}

.story-modal-btn-secondary:hover {
  background: #9ca3af;
}

.story-modal-btn-primary {
  background: #9436ac;
  color: white;
}

.story-modal-btn-primary:hover {
  background: #7c3aed;
}

.story-modal-btn i {
  font-size: 0.875rem;
}

/* Frontend Story Modal */
.frontend-story-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  overflow-y: auto;
  display: none;
}

.frontend-story-modal.show {
  display: block;
}

.frontend-story-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 999997;
}

.frontend-story-modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  z-index: 999998;
  position: relative;
}

.frontend-story-modal-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  padding: 0;
  z-index: 999999;
}

.frontend-story-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: black;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999999;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.frontend-story-modal-close:hover {
  background: #f8f9fa;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.frontend-story-modal-media {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frontend-story-modal-media img,
.frontend-story-modal-media video {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.frontend-story-modal-description {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px 15px 15px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  display: none;
}

/* Responsive */
@media (max-width: 640px) {
  .frontend-story-modal-content {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    padding: 0;
  }

  .frontend-story-modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .frontend-story-modal-description {
    padding: 15px 10px 10px;
    font-size: 13px;
  }
}

/* Garantir que thumbnails dos stories preencham completamente o círculo */
.insta-follow-profile img,
.insta-story img,
.story-content img,
.thumbnail-image,
.insta-story video,
.story-content video,
.thumbnail-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.insta-follow-profile img,
.insta-story img {
  border-radius: 50%;
}

.insta-story video {
  border-radius: 50%;
  border: 2px solid #fff;
}

.story-content img,
.story-content video {
  border-radius: 50%;
}

/* Garantir que o container story-thumbnail não corte a imagem */
.story-thumbnail {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Forçar que as imagens dentro do story-thumbnail preencham completamente */
.story-thumbnail .thumbnail-image,
.story-thumbnail .thumbnail-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  flex-shrink: 0 !important;
}

/* Tema Black Friday para o modal VIP */
.black-friday {
  background-color: #000 !important;
  border: 2px solid #7C6120 !important;
}

.black-friday .black-friday-content {
  background-color: #0D0D0D;
  border-radius: 10px;
  padding: 15px;
  margin-top: 0;
  padding-top: 10px;
}

.black-friday .black-friday-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: 2px;
  text-align: center !important;
  display: block;
  width: 100%;
  border-bottom: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.black-friday .black-friday-title::after {
  display: none !important;
}

.black-friday .vip-benefits h2 {
  color: #ffcc00 !important;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

.black-friday .benefit-card {
  background: #000 !important;
  border: 2px solid #7C6120 !important;
  color: #fff;
}

.black-friday .benefit-card i {
  color: #ffcc00 !important;
}

.black-friday .benefit-card h3 {
  color: #fff !important;
}

.black-friday .benefit-card p {
  color: #fff !important;
}

.black-friday .vip-price {
  background: #000 !important;
  border: 2px solid #7C6120 !important;
  color: #fff !important;
}

.black-friday .vip-price .price-text .por {
  color: #ffcc00 !important;
}

.black-friday .vip-price .price-text .apenas {
  color: #fff !important;
}

.black-friday .vip-price .price-value .value {
  color: #ffcc00 !important;
  animation: blink-price 1s ease-in-out infinite;
  font-weight: 900;
}

@keyframes blink-price {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.15);
  }
}

.black-friday .vip-price p {
  color: #fff !important;
}

.black-friday .buttons-vip a {
  background: #ffcc00 !important;
  border: 2px solid #7C6120 !important;
  color: #000 !important;
  font-weight: bold;
  text-transform: uppercase !important;
}

.black-friday .close-modal {
  color: #fff !important;
  background: rgba(255, 204, 0, 0.9) !important;
  width: 35px !important;
  height: 35px !important;
  font-size: 20px !important;
  top: 8px !important;
  right: 8px !important;
}

.black-friday .close-modal:hover {
  background: #ffcc00 !important;
  color: #000 !important;
}

/* Scrollbar amarelo para o modal Black Friday */
.black-friday::-webkit-scrollbar {
  width: 10px;
}

.black-friday::-webkit-scrollbar-track {
  background: #000;
}

.black-friday::-webkit-scrollbar-thumb {
  background: #ffcc00;
  border-radius: 5px;
}

.black-friday::-webkit-scrollbar-thumb:hover {
  background: #ffd700;
}

/* Para Firefox */
.black-friday {
  scrollbar-width: thin;
  scrollbar-color: #ffcc00 #000;
}

/* Tema Black Friday para a página VIP - apenas vip-benefits */
.vip-benefits.black-friday {
  background-color: #000 !important;
  border: 2px solid #7C6120 !important;
  border-radius: 15px;
  padding: 20px;
}

.vip-benefits.black-friday h2 {
  color: #ffcc00 !important;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Ajustes mobile para Black Friday */
@media (max-width: 768px) {
  .black-friday .black-friday-title {
    font-size: 1.8rem !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
  }

  .black-friday .vip-benefits h2,
  .vip-benefits.black-friday h2 {
    font-size: 1.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
  }

  .black-friday .black-friday-content {
    margin-top: 0 !important;
    padding-top: 10px !important;
  }
}

#vip_modal {
  background-color: rgba(148, 54, 172, 0.8) !important;
  border: 1px solid #b644d4 !important;
}

#vip_modal .vip-benefits h2 {
  color: #ffcc00 !important;
}

#vip_modal .close-modal {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.7) !important;
}

#vip_modal .close-modal:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #000 !important;
}

/* Banner Modal */
.banner-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner-modal-overlay.active {
  opacity: 1;
}

.banner-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  max-width: 95vw;
  max-height: 90vh;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.banner-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9436ac, #7E2EBD);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.banner-modal-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: linear-gradient(135deg, #b644d4, #9436ac);
}

.banner-modal-link {
  display: block;
}

.banner-modal-image {
  max-width: 95vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .banner-modal-close {
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .banner-modal-image {
    max-width: 92vw;
    max-height: 80vh;
    border-radius: 12px;
  }
}