/* RESET BASE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(120deg, #1a1f38, #2a3170);
  background-size: 400% 400%;
  animation: bgGradient 20s ease infinite;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

@keyframes bgGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

a {
  text-decoration: none;
  color: inherit;
}

/* DASHBOARD */
.dashboard {
  display: flex;
  min-height: 100vh;
  padding: 20px;
  gap: 30px;
}

.sidebar {
  width: 220px;
  background: linear-gradient(to bottom, #1e2140, #1a1d35);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 20px;
  height: fit-content;
}

.sidebar .logo {
  width: 100px;
  border-radius: 50%;
  margin: 0 auto 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.sidebar-name {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: #ccc;
  transition: 0.2s;
}

.nav a:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding-left: 5px;
}

.nav a.active {
  background-color: rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #fff;
  padding-left: 10px;
}

/* SOCIAL FOOTER */
.sidebar-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.social-link {
  color: #ccc;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  transition: 0.3s;
}

.social-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.sidebar-footer .copyright {
  font-size: 11px;
  color: #666;
  margin-top: 20px;
  text-align: center;
}

/* MAIN */
.main {
  flex: 1;
  padding: 20px;
}

/* CARD CASINO */
.card {
  background: linear-gradient(to bottom, #1e2140, #1a1d35);
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  min-height: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.tag {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(45deg, #f39c12, #e74c3c);
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.casino-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 200px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.bonus-box {
  background: #111c2b;
  border-radius: 12px;
  text-align: center;
  padding: 20px 10px;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bonus-box img {
  height: 36px;
  margin-bottom: 10px;
}

.bonus-box h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 4px;
}

.bonus-box p {
  font-size: 10px;
  color: #aaa;
}

.bonus-box .highlight {
  color: #f3a921;
}

.buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.cta-claim-btn {
  display: inline-block;
  width: 100%;
  background: white;
  color: #000;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  font-size: 15px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.05);
}

.cta-claim-btn:hover {
  background: #dcdcdc;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 10px #ffffff33;
}

.terms {
  font-size: 10px;
  text-align: center;
  margin-top: 10px;
  color: #ccc;
  margin-bottom: 10px;
}

/* STREAM */
.stream-wrapper {
  padding: 40px 30px;
  background: linear-gradient(to bottom, #1c1f3a, #101625);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  color: white;
  margin-top: 30px;
}

.stream-wrapper h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: left;
}

.stream-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stream-video {
  flex: 3;
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.stream-chat {
  flex: 1.2;
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* MODAL GLOBAL */
.info-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}

.info-modal .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(1px);
  z-index: 1000;
}

.info-modal .info-panel-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  padding: 30px;
  background: #111c2b;
  border-radius: 16px;
  line-height: 1.5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  z-index: 1001;
  overflow-y: auto;

  color: white;
}




/* Scrollbar do modal */
.info-panel-inner::-webkit-scrollbar {
  width: 6px;
}

.info-panel-inner::-webkit-scrollbar-track {
  background: transparent;
}

.info-panel-inner::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 10px;
}

/* Header do modal */
.info-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.info-header-inner h2 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.close-info-inner {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-info-inner:hover {
  color: #f3a921;
}

/* Restante layout */
.info-content-inner,
.feedback-section ul,
.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feedback-section li,
.info-content-inner li,
.info-section li {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.info-section {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-section li span {
  font-weight: 600;
  color: #eee;
  min-width: 30px;
  display: inline-block;
}


.info-section:last-child {
  border-bottom: none;
}

.feedback-section i {
  color: #00ff99;
  font-size: 16px;
}

.live-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: red;
  border-radius: 50%;
  margin-left: 3px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.4); opacity:0.6; }
  100% { transform: scale(1); opacity:1; }
}

.casino-cards-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.payment-icons {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.payment-icons img {
  height: 30px;
  width: 30px;
  border-radius: 6px;
  background-color: #fcfcfc;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.1);
}
.info-icon-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.info-icon-btn:hover {
  color: #f3a921;
  transform: scale(1.15);
}
.info-header-inner img.casino-logo {
  max-width: 170px;
  margin: 0 auto 10px;
  display: block;
}

/* ========== RESPONSIVIDADE ========== */

@media (max-width: 1024px) {
  .dashboard {
    flex-direction: column;
    padding: 15px;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    position: relative;
    top: 0;
    padding: 15px 10px;
    border-radius: 12px;
  }
  .sidebar-name {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  order: 1;
}


  .sidebar .logo {
    margin: 0 auto 10px;
    width: 70px;
  }

  .nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
  }

  .sidebar-footer {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    border-top: none;
    padding-top: 0;
  }

  .social-link {
    justify-content: center;
  }

  .main {
    padding: 15px;
  }

  .stream-content {
    flex-direction: column;
  }

  .stream-video,
  .stream-chat {
    width: 100%;
    height: 400px;
  }

  .stream-wrapper h1 {
    font-size: 26px;
    text-align: center;
  }

  .casino-cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .card {
    padding: 20px;
    max-width: 100%;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-modal .info-panel-inner {
    max-width: 95%;
    max-height: 90vh;
    padding: 20px;
  }

  .info-header-inner h2 {
    font-size: 16px;
  }

  .info-content-inner li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cta-claim-btn {
    font-size: 13px;
    padding: 10px;
  }

  .bonus-box h3 {
    font-size: 14px;
  }

  .bonus-box p {
    font-size: 10px;
  }

  .bonus-box img {
    height: 30px;
  }

  .tag {
    font-size: 10px;
    top: -10px;
    left: 10px;
    padding: 3px 8px;
  }

  .info-icon-btn {
    font-size: 20px;
  }

  .stream-wrapper h1 {
    font-size: 22px;
  }

  .sidebar-name {
    font-size: 14px;
  }

  .nav a {
    font-size: 14px;
    padding: 6px 8px;
  }
}
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
 
}

.profile-header .logo {
  width: 80px;
  margin: 0 auto 10px;
}

.profile-header .sidebar-name {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}


.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(35px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-verification-box {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(37, 18, 45, 0.95));
  border: 2px solid #105dc2;
  border-radius: 16px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  color: white;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  animation: modalFade 0.5s ease;
}

.age-verification-box h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.age-verification-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.age-buttons button {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  transition: background 0.3s ease;
}

#enter-site {
  background: white;
  color: #111;
}

#enter-site:hover {
  background: #e3e3e3;
}

#exit-site {
  background: transparent;
  border: 1px solid white;
  color: white;
}

#exit-site:hover {
  background: #333;
}

.age-warning {
  font-size: 11px;
  color: #ccc;
  margin-top: 10px;
}

.age-warning a {
  color: #f3a921;
  text-decoration: underline;
}

@keyframes modalFade {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.info-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.info-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.info-panel-inner {
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.info-modal.show .info-panel-inner {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.6s ease forwards;
}
.lang-dropdown {
  position: relative;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 15px;
  
}

.lang-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}




.lang-toggle span img {
  width: 28px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.3); /* opcional para destaque */
}


.lang-options {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  background: #1e2140;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  display: none;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  min-width: 140px;
}

.lang-option {
  padding: 10px;
  cursor: pointer;
  color: white;
  font-size: 14px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-option:hover {
  background-color: rgba(255,255,255,0.1);
}

.flag-icon {
  width: 20px;
  height: auto;
  
}

/* Dropdown de idioma no age-verification */
.age-lang-dropdown {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10001;
}


.age-lang-dropdown .lang-toggle {
  background: transparent;
  padding: 6px 10px;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.age-lang-dropdown .flag-icon {
  height: 20px;
  width: 20px;
}

#age-lang-options {
  position: absolute;
  top: 40px;
  right: 0;
  background: #1e2140;
  border: 1px solid #555;
  border-radius: 8px;
  display: none;
  z-index: 10002;
  min-width: 130px;
  padding: 6px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

#age-lang-options .lang-option {
  padding: 8px 12px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

#age-lang-options .lang-option:hover {
  background: rgba(255,255,255,0.1);
}
.live-status-tag {
  background: linear-gradient(to right, #6a367e, #ffffff00);
  color: white;
  font-weight: 700;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  animation: pulseLive 1.6s infinite;
}

@keyframes pulseLive {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
