html{
  min-height:100%;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,Helvetica,sans-serif;
}

body{
  min-height:100%;
  margin:0;
  padding:0;
  background:#070707;
  color:#ffffff;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,Helvetica,sans-serif;
}

.modal-open{
  overflow:hidden;
}

button{
  font-family:inherit;
}

/* =========================
   Premium access gate
========================= */
.age-gate{
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  padding:20px;
  z-index:9999;
}

.bg-layer{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background:url("Screenshot 2026-06-10 134112.png") center center no-repeat;
  background-size:cover;
  transform:scale(1.27);
  filter:blur(2px) saturate(1.08) brightness(0.7);
}

.overlay{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background:linear-gradient(180deg,rgba(0,0,0,0.72),rgba(0,0,0,0.9));
}

.overlay:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:
    radial-gradient(circle at 50% 34%,rgba(247,200,67,0.16),transparent 30%),
    radial-gradient(circle at 10% 0%,rgba(55,138,221,0.12),transparent 28%);
}

.modal{
  position:relative;
  z-index:2;
  width:100%;
  max-width:478px;
  background:linear-gradient(180deg,rgba(27,27,27,0.98),rgba(8,8,8,0.98));
  padding:34px 30px 28px;
  border-radius:26px;
  color:#ffffff;
  border:1px solid rgba(247,200,67,0.28);
  box-shadow:0 32px 90px rgba(0,0,0,0.74),0 0 42px rgba(247,200,67,0.08);
  animation:popIn 0.35s ease;
  overflow:hidden;
  box-sizing:border-box;
}

.modal:before{
  content:"";
  position:absolute;
  top:-90px;
  right:-90px;
  width:190px;
  height:190px;
  border-radius:50%;
  background:rgba(247,200,67,0.11);
  filter:blur(2px);
}

.modal:after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,229,140,0.88),transparent);
}

@keyframes popIn{
  from{opacity:0;transform:translateY(18px) scale(0.97);}
  to{opacity:1;transform:translateY(0) scale(1);}
}

.logo{
  text-align:center;
  margin-bottom:12px;
  position:relative;
  z-index:1;
}

.logo img{
  max-width:152px;
  height:auto;
  display:block;
  margin:0 auto;
}

.badge{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(247,200,67,0.12);
  border:1px solid rgba(247,200,67,0.36);
  color:#ffe58c;
  font-size:11px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:8px 13px;
  border-radius:999px;
  margin-bottom:16px;
}

.badge:before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#f7c843;
  box-shadow:0 0 14px rgba(247,200,67,0.9);
}

.modal h1{
  position:relative;
  z-index:1;
  font-size:34px;
  line-height:1.08;
  font-weight:800;
  margin:0 0 13px;
  letter-spacing:-0.7px;
}

.lead{
  position:relative;
  z-index:1;
  font-size:15.5px;
  line-height:1.6;
  color:#e1e1e1;
  margin:0 0 10px;
}

.confirm-text{
  position:relative;
  z-index:1;
  color:#bdbdbd;
  font-size:14px;
  margin:8px 0 4px;
}

.checks{
  position:relative;
  z-index:1;
  display:grid;
  gap:12px;
  margin:18px 0 20px;
}

.check-card{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:13px 14px;
  border-radius:14px;
  background:rgba(255,255,255,0.052);
  border:1px solid rgba(255,255,255,0.095);
  font-size:15px;
  line-height:1.45;
  color:#f4f4f4;
  cursor:pointer;
  transition:background 0.18s ease,border-color 0.18s ease,transform 0.18s ease;
  box-sizing:border-box;
}

.check-card:hover{
  background:rgba(255,255,255,0.085);
  border-color:rgba(247,200,67,0.34);
  transform:translateY(-1px);
}

.check-card input{
  width:18px;
  height:18px;
  margin-top:1px;
  flex:0 0 auto;
}

.text-link{
  background:none;
  border:0;
  color:#ffe58c;
  text-decoration:underline;
  font:inherit;
  cursor:pointer;
  padding:0;
}

#enterBtn,
#exitBtn{
  position:relative;
  z-index:1;
  width:100%;
  padding:15px;
  border:0;
  border-radius:14px;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  margin-top:10px;
  text-transform:uppercase;
  letter-spacing:0.02em;
  transition:transform 0.16s ease,filter 0.16s ease,opacity 0.16s ease,box-shadow 0.16s ease;
  box-sizing:border-box;
}

#enterBtn{
  background:linear-gradient(90deg,#f3bd2f,#ffe58c);
  color:#141414;
  box-shadow:0 12px 28px rgba(247,200,67,0.22);
}

#enterBtn:not(:disabled):hover,
#exitBtn:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

#enterBtn:disabled{
  background:#656565;
  color:#d3d3d3;
  cursor:not-allowed;
  box-shadow:none;
  opacity:0.78;
}

#exitBtn{
  background:linear-gradient(90deg,#df2d45,#f14258);
  color:#ffffff;
  box-shadow:0 12px 28px rgba(228,46,71,0.18);
}

.safe-note{
  position:relative;
  z-index:1;
  margin-top:18px;
  font-size:12.7px;
  line-height:1.55;
  color:#b3b3b3;
  text-align:center;
}
/* ===========================
   TELEGRAM BUTTON
=========================== */

#telegramBtn{
    width:100%;
    margin-top:12px;
    padding:15px 20px;
    border:none;
    border-radius:14px;
    cursor:pointer;

    background:#229ED9; /* Official Telegram Blue */
    color:#fff;

    font-size:16px;
    font-weight:700;
    letter-spacing:.3px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    transition:.25s ease;
    box-shadow:0 8px 20px rgba(34,158,217,.35);
}

#telegramBtn:hover{
    background:#1B8BC7;
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(34,158,217,.45);
}

#telegramBtn:active{
    transform:scale(.98);
}

/* =========================
   Modal policy popup
========================= */
.info-overlay{
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,0.82);
  z-index:10000;
}

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

.info-box{
  position:relative;
  width:100%;
  max-width:720px;
  max-height:84vh;
  overflow:auto;
  background:linear-gradient(180deg,#181818,#090909);
  border:1px solid rgba(247,200,67,0.27);
  border-radius:22px;
  padding:32px;
  box-shadow:0 28px 80px rgba(0,0,0,0.76);
  color:#ffffff;
  box-sizing:border-box;
}

.info-box::-webkit-scrollbar,
.page-wrap::-webkit-scrollbar{
  width:9px;
}

.info-box::-webkit-scrollbar-thumb,
.page-wrap::-webkit-scrollbar-thumb{
  background:rgba(247,200,67,0.35);
  border-radius:999px;
}

.info-box h2{
  font-size:29px;
  line-height:1.18;
  margin:0 42px 17px 0;
  letter-spacing:-0.4px;
}

.info-box h3{
  font-size:17px;
  margin:22px 0 8px;
  color:#ffe58c;
}

.info-box p,
.info-box li{
  font-size:15px;
  line-height:1.68;
  color:#dedede;
  margin-bottom:12px;
}

.info-box ul{
  padding-left:20px;
  margin-bottom:12px;
}

.close-btn{
  position:absolute;
  top:15px;
  right:16px;
  width:36px;
  height:36px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,0.085);
  color:#ffffff;
  font-size:27px;
  line-height:1;
  cursor:pointer;
}

.close-btn:hover{
  background:rgba(247,200,67,0.18);
}

/* =========================
   Premium static policy pages
========================= */
.info-page{
  background:#f4f6f9;
  color:#1a1a2e;
  min-height:100vh;
  padding:2rem 1rem 4rem;
}

.page-wrap{
  max-width:790px;
  margin:0 auto;
}

.page-hero{
  border-radius:24px;
  padding:3rem 2.5rem 2.5rem;
  margin-bottom:1.35rem;
  position:relative;
  overflow:hidden;
  color:#ffffff;
  box-shadow:0 20px 50px rgba(10,22,40,0.12);
  box-sizing:border-box;
}

.page-hero.privacy{
  background:linear-gradient(135deg,#0a1628 0%,#1a2d4a 100%);
}

.page-hero.terms{
  background:linear-gradient(135deg,#0f1923 0%,#1c2e1a 100%);
}

.page-hero.exit{
  background:linear-gradient(135deg,#111111 0%,#2b1117 100%);
}

.page-hero:before{
  content:"";
  position:absolute;
  top:-70px;
  right:-70px;
  width:230px;
  height:230px;
  border-radius:50%;
  background:rgba(255,255,255,0.075);
}

.page-hero:after{
  content:"";
  position:absolute;
  bottom:-60px;
  left:28%;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,0.045);
}

.page-badge{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  color:#ffffff;
  font-size:11px;
  font-weight:800;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:1.25rem;
  letter-spacing:0.07em;
  text-transform:uppercase;
}

.page-hero h1{
  position:relative;
  z-index:1;
  color:#ffffff;
  font-size:36px;
  font-weight:800;
  margin:0 0 0.65rem;
  letter-spacing:-0.7px;
}

.page-hero .subtitle{
  position:relative;
  z-index:1;
  color:rgba(255,255,255,0.82);
  font-size:15px;
  line-height:1.65;
  max-width:560px;
}

.page-meta{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-top:1.5rem;
  position:relative;
  z-index:1;
}

.page-meta span{
  font-size:12.5px;
  color:rgba(255,255,255,0.78);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;
  padding:7px 11px;
}

.policy-intro,
.policy-card{
  background:#ffffff;
  border:1px solid #e2e6ed;
  border-radius:16px;
  padding:1.35rem 1.55rem;
  margin-bottom:1rem;
  box-shadow:0 2px 12px rgba(0,0,0,0.035);
  box-sizing:border-box;
}

.policy-intro{
  border-left:4px solid #378add;
}

.policy-intro p,
.policy-card p{
  color:#4d5562;
  font-size:14.5px;
  line-height:1.75;
  margin:0;
}

.policy-card h2{
  color:#1a1a2e;
  font-size:16.5px;
  margin:0 0 0.45rem;
}

.policy-card.accent-green{
  border-left:4px solid #97c459;
}

.policy-card.accent-gold{
  border-left:4px solid #f7c843;
}

.policy-card.accent-red{
  border-left:4px solid #e42e47;
}

.policy-card.accent-blue{
  border-left:4px solid #378add;
}

.policy-note{
  background:#eef7e7;
  border:1px solid #cfe7be;
  border-radius:12px;
  padding:0.85rem 1rem;
  margin-top:0.9rem;
  color:#315b16;
  font-size:13px;
  font-weight:700;
}

.exit-actions{
  display:grid;
  gap:12px;
  margin-top:1.2rem;
}

.exit-actions a{
  text-align:center;
  text-decoration:none;
  padding:14px 16px;
  border-radius:13px;
  font-weight:800;
}

.exit-actions .primary{
  background:linear-gradient(90deg,#f3bd2f,#ffe58c);
  color:#111111;
}

.exit-actions .secondary{
  background:#ffffff;
  color:#1a1a2e;
  border:1px solid #e2e6ed;
}

.page-footer{
  text-align:center;
  padding:2rem 0 0.5rem;
}

.page-footer p{
  font-size:12px;
  color:#999999;
}

/* Older policy page fallback */
.policy-page{
  background:#f4f6f9;
  color:#333333;
  line-height:1.7;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.rg-hero{
  background:linear-gradient(135deg,#111111,#1b1b1b);
  color:#ffffff;
  padding:100px 20px;
  text-align:center;
}

.rg-badge{
  display:inline-block;
  background:#d62839;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:bold;
  margin-bottom:20px;
}

.rg-hero h1{
  font-size:52px;
  margin:0 0 20px;
}

.rg-hero p{
  max-width:800px;
  margin:auto;
  font-size:18px;
  opacity:0.9;
}

.section{
  padding:80px 0;
}

.section h2{
  font-size:36px;
  margin:0 0 20px;
  color:#111111;
}

.section p{
  font-size:17px;
  margin:0 0 15px;
}

.tools-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:40px;
}

.tool-card{
  background:#ffffff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.tool-card .icon{
  font-size:38px;
  margin-bottom:15px;
}

.tool-card h3{
  font-size:22px;
  margin:0 0 10px;
}

.warning-section{
  background:#111111;
  color:#ffffff;
}

.warning-section h2{
  color:#ffffff;
}

.warning-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
  margin-top:30px;
}

.warning-item{
  background:#1e1e1e;
  padding:22px;
  border-left:5px solid #d62839;
  border-radius:10px;
}

.checklist ul{
  list-style:none;
  margin-top:25px;
  padding-left:0;
}

.checklist li{
  background:#ffffff;
  margin-bottom:12px;
  padding:18px 22px;
  border-radius:10px;
  font-size:17px;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

.faq{
  background:#f1f1f1;
}

.faq-item{
  background:#ffffff;
  margin-bottom:15px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.faq-question{
  padding:20px;
  font-weight:bold;
  cursor:pointer;
  background:#111111;
  color:#ffffff;
}

.faq-answer{
  display:none;
  padding:20px;
}

.faq-item.active .faq-answer{
  display:block;
}

.help-section{
  background:#d62839;
  color:#ffffff;
  text-align:center;
  padding:70px 20px;
}

.help-section h2{
  font-size:36px;
  margin:0 0 15px;
}

.help-section p{
  font-size:18px;
  margin:0 0 25px;
}

.help-btn{
  display:inline-block;
  background:#ffffff;
  color:#d62839;
  padding:15px 30px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
}

@media (max-width:600px){
  .modal{
    max-width:100%;
    padding:28px 22px 24px;
    border-radius:22px;
  }

  .modal h1{
    font-size:29px;
  }

  .logo img{
    max-width:132px;
  }

  .info-box{
    padding:26px 22px;
    max-height:86vh;
  }

  .page-hero{
    padding:2.15rem 1.45rem;
    border-radius:20px;
  }

  .page-hero h1{
    font-size:29px;
  }

  .policy-intro,
  .policy-card{
    padding:1.15rem 1.2rem;
  }

  .rg-hero h1{
    font-size:36px;
  }

  .section h2{
    font-size:28px;
  }
}
