@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Laila:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Martel';
  src: url('../martel.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    font-family: 'Cinzel', sans-serif;
    min-height: 100vh;
    color: #fdeed7;

    background:
        /* ESCURECE ESQUERDA */
        linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 35%),
        /* ESCURECE DIREITA */
        linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 35%),
        /* ESCURECE EMBAIXO */
        linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 55%),
        /* IMAGEM */
        url('../images/bg.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ================= NAVBAR ================= */
.navbar {
    background: rgb(20 18 15 / 50%);
    border-bottom: 1px solid rgba(222,187,157,0.25);
    margin-bottom: 90px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: floralwhite;
}

/* ================= LINKS ================= */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-family: 'Laila', serif;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.3s;
    opacity: 0.8;
}

/* Hover elegante */
.nav-links a:hover {
    background: rgba(255, 140, 0, 0.30);
    color: white !important;
    opacity: 1;
}

/* Botão Criar Conta */
.btn-primary {
    background: rgba(255, 140, 0, 0.15);
    color: white !important;
    font-weight: bold;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff9d2f, #ffd27f);
}

/* ================= MOBILE ================= */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fdeed7;
}

.menu-toggle .icon {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: white; /* ou a cor que quiser */
    pointer-events: none; /* importante */
}

.close-btn {
    display: none;
}

/* Overlay escuro */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
}

.overlay.active {
    display: block;
}

/* Responsivo */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #1b1713;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px 30px;
        gap: 10px;
        transition: 0.4s ease;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 4px 0px;
        border-radius: 8px;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .nav-links a:hover {
        background: rgba(255,140,0,0.15);
        padding-left: 25px;
    }

    .close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 22px;
        cursor: pointer;
        color: #fff;
        z-index: 1002; /* MAIOR QUE TUDO */
    }
}

/* ================= HERO ================= */
.hero {
    text-align: center;
    padding: 30px 15px 0;
    color: white;
}
.hero h1 {
    font-size: 20px;
    font-family: 'Cinzel', sans-serif;
    color: floralwhite;
    letter-spacing: 4px;
    margin-bottom: 2px;
}
.hero p {
    background: rgba(0,0,0,.5);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #222;
    max-width: 90%;
    margin: 15px auto 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 500px;
    margin: 0px auto;
    position: relative;
    background-color: #debb9d;
    border-width: 12px 2px;
    border-style: solid;
    border-color: transparent;
    border-image-source: url(../images/border-outerbox.png);
    border-image-slice: 12;
    border-image-width: 12px 2px;
    border-image-repeat: repeat;
    border-radius: 0;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.border-1 {
    border: 1px solid;
    padding: 10px;
    background: antiquewhite;
    border: 1px solid #7a6b54;
    margin: 3px;
}

.warning {
    color: #5a2800;
    font-size: 13px;
    text-align: center;
    font-family: "Georgia", serif;
    padding: 4px;
    margin-bottom: 10px;
}

.table1 {
    width: 100%;
    border-width: 10px;
    border-style: solid;
    border-image-source: url(../images/content/table1-border2.png);
    border-image-slice: 10 fill;
    border-image-repeat: repeat;
    padding: 4px;
    color: #5A2800;
    z-index: 1;
    background-color: #f1e0c5;
    position: relative;
    overflow: hidden;
}

.container.video .table1 {
    display: none;
}

 .reset-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    font-family:'Inter',sans-serif;
}

.reset-table th{
    background:#D4C0A1;
    padding:10px;
    text-align:center;
    border:1px solid #333;
}

.reset-table td{
    padding:8px;
    text-align:center;
    border:1px solid #333;
    background:#F1E0C6;
}

.reset-table tr:nth-child(even) td{
    background:#D4C0A1;
}

.img-right {
    float: right;
    width: 240px; /* Ajuste o tamanho */
    border: 2px solid #333;
    margin: 0 0 0 20px; /* Espaçamento entre texto e imagem */
}

/* Mobile - imagem vai pra cima centralizada */
@media (max-width: 768px) {
    .img-right {
        display: block;
    }
}

.container-header {
    text-align: center;
    padding: 2px 0;
    background: url(../images/bar-green.png) center bottom repeat-x;
    height: 26px;
    border-bottom: 2px solid rgb(73 73 73);
}

.container-header h2 {
    color: floralwhite;
    font-family: 'Martel', serif;
    margin: 0;
    font-size: 18px;
    letter-spacing: 4px;
}

.container-header .left {
    text-align: left;
    margin-left: 15px;
}

.container-header p {
    font-size: 12px;
    color: white;
}

.container.title {
    max-width: 650px;
    background: rgb(0 0 0 / 60%);
    padding: 0 10px;
}
.container.video,
.container.p-ranking,
.container.online { max-width: 800px; }

/* ================= CORNERS ================= */
.corner {
    width: 38px;
    height: 38px;
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background: url(../images/corner-3.png) no-repeat center;
    background-size: contain;
    filter: drop-shadow(0 0 6px rgba(0,0,0,.8));
}
.corner-lt { top:-15px; left:-5px; }
.corner-rt { top:-15px; right:-5px; transform: rotate(90deg); }
.corner-lb { bottom:-15px; left:-5px; transform: rotate(270deg); }
.corner-rb { bottom:-15px; right:-5px; transform: rotate(180deg); }

/* ================= FORM ================= */
form { display: flex; flex-direction: column; gap: 15px; }
input, select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #95846b;
    background: #fff8ed;
    color: black;
    transition: 0.2s;
}
input:focus, select:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 8px rgba(222,187,157,0.4);
}
button:hover { opacity: 0.8; }
.message {
    background: #FF5722;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid red;
}

/* ================= BUTTON ================= */
.bigbtn {
    position: relative;
    height: 49px;
    border: none;
    cursor: pointer;
    filter: hue-rotate(295deg);
    align-self: anchor-center;
    width: 210px;
    font-family: 'Laila', serif;
    font-weight: bold;
    color: white;
    letter-spacing: 4px;
    text-shadow: 1px 1px 2px black;
    background: url(../images/button.png) repeat-x 0 0;
}
.bigbtn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 49px;
    background: url(../images/button.png) no-repeat 0 -49px;
}
.bigbtn::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 49px;
    background: url(../images/button.png) no-repeat -15px -98px;
}

/* ================= CHAIN ================= */
.chain-spacer { width: 600px; justify-self: anchor-center; height: 22px; background: url(../images/chain-spacer-l.png) 5px -14px repeat-y, url(../images/chain-spacer-r.png) calc(100% - 5px) -14px repeat-y; }

/* ================= VIDEO ================= */
.video-section { 
    max-width: 900px; 
    margin: 20px auto; 
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

/* iframe */
.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* sombra interna REAL */
.video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.7);
    pointer-events: none; /* importante */
}

/* ================= CONTAINER-INFO ================= */
.card-container {
    width: 100%;
}
.account-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.tab-btn {
    padding: 10px 20px;
    background: #1b1713;
    border: 1px solid #444;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.tab-btn:hover {
    background: #2a241f;
}

.tab-btn.active {
    background: orange;
    color: #000;
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.container-info {
    max-width: 750px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
    padding: 2px;
}

.container-info.account {
    display: grid;
    max-width: 95%;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
}

.card {
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    background: rgba(0,0,0,.5);
    border-image-source: url(../images/content/table1-border2.png);
    border-image-width: 10px 10px 10px;
    border-image-slice: 10 fill;
    border-image-repeat: repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 0 25px #222; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14px; }

/* ================= FOOTER ================= */
.footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 12px;
    border-top: 1px solid rgba(222,187,157,0.25);
    margin-top: 80px;
}

/* ================= TABELAS ================= */
table { color: #7d3600; width: 100%; }
th, td { padding: 4px; border-bottom: 1px solid #debb9d; }
th { text-align: left;}
tr:hover { background: #D4C0A1 }
.bk-title { color: #7d3600; background: #D4C0A1; }

/* ================= PAGINAÇÃO ================= */
.pagination {
    margin-top: 20px;
    text-align: center;
}
.pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 4px;
    background: #1a1814;
    color: #fdeed7;
    text-decoration: none;
    border: 1px solid rgba(222,187,157,0.2);
}
.pagination a.current,
.pagination a:hover {
    background: #debb9d;
    color: #000;
}

.family-default { font-family: "Georgia", serif; }

.ranking-filters {
    margin: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #fdeed7;
}

.ranking-filters span {
    margin-right: 10px;
    color: #ffc700;
}

.filter-btn {
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid black;
    border-radius: 6px;
    text-decoration: none;
    color: black;
    transition: all 0.2s ease;
    font-weight: 600;
}

.filter-btn:hover {
    background: #fdeed7;
    color: #000;
}

.filter-btn.active {
    background: #d4c0a1;
    color: #000;
    border-color: black;
}

/* ================= STATS SECTION ================= */
.stats-section {
    margin: 10px auto;
    max-width: 900px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #debb9d;
    text-shadow: 0 0 10px rgba(255,140,0,0.7);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ================= LIVE ONLINE ================= */
.live-online {
    font-size: 14px;
    color: floralwhite;
    display: flex;
    height: 32px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: monospace;
}

.dot {
    width: 8px;
    height: 8px;
    background: limegreen;
    border-radius: 50%;
    box-shadow: 0 0 8px limegreen;
    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; }
}


/* ================= DOWNLOAD ================= */
.download-container{
    max-width:900px;
    margin:auto;
    font-family: "Georgia", serif;
}

/* aviso */

.warning-box{
    padding:20px;
    margin-bottom:20px;
    text-align:center;
}

.warning-box h3{
    color:red;
    margin-bottom:10px;
}

.warning-box .quote{
    font-weight:bold;
    margin:15px 0;
}

.warning-box .red{
    color:red;
    font-weight:bold;
}

/* download */

.download-box{
    display:flex;
    align-items:center;
    border:1px solid #faf0d7;
    padding:15px;
    gap:20px;
}

.download-image img{
    width:90px;
    height:90px;
}

.download-info{
    flex:1;
}

.download-button a{
    background:#2ecc71;
    color:white;
    padding:10px 20px;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
}

.download-button a:hover{
    background:#27ae60;
}


@media (max-width:600px){

    .download-box{
        flex-direction:column;
        text-align:center;
    }

    .download-button{
        width:100%;
    }

    .download-button a{
        width:100%;
        max-width:250px;
    }

}








.main-layout {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* SIDEBARS */
.sidebar-left {
    width: 202px;
    position: relative;
    border-width: 21px 21px;
    height: fit-content;
    border-style: solid;
    border-color: inherit;
    border-image: url("../images/sidebar/side-container.png") 21 fill repeat;
}

.sidebar-left::after {
    content: "";
    width: 106%;
    height: 28px;
    bottom: -33px;
    left: -3%;
    background: url(../images/sidebar/border-footer2.png) no-repeat center top;
    position: absolute;
    z-index: 4;
    pointer-events: none;
}

.sidebar-logo {
    position: fixed;
    top: 5px; /* quase colado no topo */
    left: 0; /* colado na esquerda */
    width: 202px; /* EXATAMENTE igual à sidebar */
    text-align: center;
    z-index: 1000;
}

.sidebar-right {
    width: 202px;
    position: relative;
    height: fit-content;
    color: burlywood;
    background: rgb(0 0 0 / 60%);
    border-width: 21px;
    border-style: solid;
    border-color: inherit;
    border-image: url(../images/border-outerbox.png) 21 fill / 1 / 0 repeat;
}

.sidebar-title {
    font-size: 16px;
    text-align: center;
    color: chocolate;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 1px;
}

.info-box {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.info-number {
    font-size: 20px;
    color: chocolate;
    font-weight: bold;
}

.info-label {
    font-size: 13px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-right::after {
    content: "";
    width: 106%;
    height: 28px;
    bottom: -38px;
    left: -3%;
    background: url(../images/sidebar/border-footer2.png) no-repeat center top;
    position: absolute;
    z-index: 4;
    pointer-events: none;
}

/* CONTEÚDO CENTRAL */
.content-center {
    width: 800px;
}

/* Responsivo */
@media (max-width: 1000px) {
    .main-layout {
        flex-direction: column;
        align-items: center;
    }

    .content-center {
        width: 95%;
    }
}


.linkmenu {

}

.menu-category {}

.menu-title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 0px;
    background: url("../images/sidebar/bar-gray.png") center bottom repeat-x;
    border: none;
    color: #debb9d;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
}

.menu-title img {
    width: 32px;
    height: 32px;
}

.menu-title span {
    font-family: 'Martel', serif;
    font-size: 20px;
    font-weight: normal;
    color: floralwhite;
    text-shadow: 1px 1px 0 #000,0 0 3px rgba(0,0,0,0.5);
    text-transform: capitalize;
}

.linklist {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.menu-category.active .linklist {
    max-height: 500px; /* suficiente para expandir */
}

.linklist li a {
    display: block;
    padding: 3px 3px 3px 13px;
    color: #d7d7d7;
    font-family: 'Laila', serif;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    background: black;
    border-bottom: 1px solid #222;
    transition: 0.2s;
}

.linklist li a:hover {
    background: #222;
    color: #fff;
    padding-left: 16px;
}

/* Destaques */
.highlight-green { color: #00ff88; }
.highlight-purple { color: orchid; }
.highlight-yellow { color: yellow; }

/* Gradiente profissional */
.gradient-text {
    background: linear-gradient(90deg, #8a2be2, #38abf4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= Deposit Info ================= */
.send-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
  font-family: "Georgia", serif;
}

.send-info h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: orangered
}

.send-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.send-info .agreement {
  font-weight: bold;
  color: orangered;
}

/* ================= RESPONSIVO ================= */
@media(max-width: 1024px){
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; padding: 18px; }
    .container { max-width: 90%; }
    .video-section { max-width: 100%; }
    .container-info { gap: 20px; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
}
@media(max-width: 768px){
    .navbar { flex-direction: column; gap: 15px; }
    .nav-links { gap: 15px;}
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.9rem; padding: 15px; }
    .container { max-width: 95%;}
    .container-info { max-width: 95%;}
    .container.video { max-width: 95%;}
    .chain-spacer  { max-width: 80%;}
    .container.p-ranking { max-width: 95%;}
    .stats-section { max-width: 95%;}
    .video-wrapper { border-radius: 10px; }
    .card { padding: 15px; }
    .account-tabs {display: grid; justify-content: normal;}
    table th, table td { padding: 10px; font-size: 12px; }
}
@media(max-width: 480px){
    .hero h1 { font-size: 1.3rem; }
    .hero p { font-size: 0.85rem; padding: 12px; }
    .nav-links { flex-direction: column; gap: 10px; }
    .container-info { grid-template-columns: 1fr; gap: 15px; }
    .card { padding: 12px; }
    .pagination a { padding: 6px 10px; font-size: 12px; }
}

/* Visível no PC */
.only-desktop {
    display: block;
}

/* Esconde no mobile */
@media (max-width: 1000px) {
    .only-desktop {
        display: none !important;
    }
}