/* ===================================================
   ARKadia Pages Components
=================================================== */

/* ===========================================
   Contenedor
=========================================== */

.page-container{

    width:100%;
    max-width:1100px;

    margin:0 auto;

    background:#20242b;

    border:1px solid #2f3946;

    border-radius:16px;

    padding:30px;

    box-shadow:0 0 30px rgba(0,0,0,.45);

}

h1{

    text-align:left;

    font-size:34px;

    color:#59c4ff;

}

h2{

    text-align:center;

    margin-top:8px;
    margin-bottom:30px;

    color:#9ea9b7;

    font-size:18px;

    font-weight:normal;

}

h3{

    text-align:center;

    margin-top:8px;
    margin-bottom:10px;

    color:#9ea9b7;

    font-size:14px;

    font-weight:normal;

}

/* ===========================================
   Introducción
=========================================== */

.intro{

    text-align:center;

    color:#b8c2cf;

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

/* ===========================================
   Secciones
=========================================== */

.page-container section{

    margin-bottom:20px;

}

.page-container section h2{

    color:#59c4ff;

    margin-bottom:18px;

    padding-bottom:10px;

    border-bottom:1px solid #303844;

}

.page-container section p{

    color:#d4dce5;

    font-size:16px;

    line-height:1.8;

}

/* ===========================================
   Listas
=========================================== */

.page-container ul{

    margin:20px 0;

    padding-left:25px;

}

.page-container ol{

    margin:20px 0;

    padding-left:25px;

}

.page-container li{

    color:#d4dce5;

    font-size:16px;

    line-height:1.8;

    margin-bottom:10px;

}

/* ===========================================
   Info Box
=========================================== */

.info-box{

    background:#1d2d3a;

    border-left:6px solid #38bdf8;

    border-radius:12px;

    padding:20px;
	width:90%;

    margin:30px auto;


}

/* ===========================================
   Warning Box
=========================================== */

.warning-box{

    background:#4b3724;

    border-left:6px solid #ffb020;

    border-radius:12px;

		width:90%;

    padding:24px;

    margin:30px auto;

}

.warning-box strong{

    display:block;

    color:#ffffff;

    font-size:22px;

    margin-bottom:15px;

}

.warning-box p{

    color:#f0f0f0;

    line-height:1.8;

    margin:0;

}

/* ===========================================
   Success Box
=========================================== */

.success-box{

    background:#1d3325;

    border-left:6px solid #22c55e;

    border-radius:12px;

    padding:20px;

    margin:20px 0;

}

/* ===========================================
   Premium Box
=========================================== */

.premium-box{

    background:#332646;

    border-left:6px solid #c084fc;

    border-radius:12px;

    padding:20px;

    margin:20px 0;

}

/* ===========================================
   Títulos de Boxes
=========================================== */

.info-box strong,
.warning-box strong,
.success-box strong,
.premium-box strong{

    display:block;

    color:white;

    font-size:18px;

    margin-bottom:12px;

}

/* ===========================================
   Texto de Boxes
=========================================== */

.info-box p,
.warning-box p,
.success-box p,
.premium-box p{

    color:#d4dce5;

    margin:10px 0;

    line-height:1.7;

}

/* ===========================================
   Tarjetas
=========================================== */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:20px;

}

.card{

    background:#171b21;

    border:1px solid #303844;

    border-radius:12px;

    padding:20px;

    transition:.25s;

}

.card:hover{

    border-color:#38bdf8;

    box-shadow:0 0 15px rgba(56,189,248,.25);

}

.card h3{

    color:#59c4ff;

    margin-bottom:15px;

}

.card p{

    color:#b8c2cf;

    line-height:1.7;

}

/* ===================================================
   PAGES RESPONSIVE
=================================================== */

/* ==========================
   Tablet
========================== */

@media (max-width:1024px){

    .page-container{

        padding:30px;

    }

}


/* ==========================
   Mobile
========================== */

@media (max-width:768px){

    /* ==========================
       Contenedor
    ========================== */

    .page-container{

        padding:20px;

        border-radius:12px;

    }

    /* ==========================
       Títulos
    ========================== */

    h1{

        font-size:28px;

        text-align:center;

        line-height:1.3;

    }

    h2{

        font-size:17px;

        margin-bottom:25px;

    }

    h3{

        font-size:15px;

    }

    /* ==========================
       Introducción
    ========================== */

    .intro{

        font-size:16px;

        line-height:1.7;

        margin-bottom:30px;

    }

    /* ==========================
       Secciones
    ========================== */

    .page-container section{

        margin-bottom:30px;

    }

    .page-container section p{

        font-size:15px;

        line-height:1.7;

    }

    /* ==========================
       Listas
    ========================== */

    .page-container ul,
    .page-container ol{

        padding-left:20px;

    }

    .page-container li{

        font-size:15px;

        line-height:1.7;

    }

    /* ==========================
       Info Boxes
    ========================== */

    .info-box,
    .warning-box,
    .success-box,
    .premium-box{

        width:100%;

        padding:18px;

        margin:20px 0;

        border-radius:12px;

    }

    .info-box strong,
    .warning-box strong,
    .success-box strong,
    .premium-box strong{

        font-size:18px;

    }

    /* ==========================
       Cards
    ========================== */

    .cards{

        grid-template-columns:1fr;

        gap:18px;

    }

    .card{

        padding:20px;

    }

}


/* ==========================
   Small Mobile
========================== */

@media (max-width:480px){

    .page-container{

        padding:15px;

    }

    h1{

        font-size:24px;

    }

    h2{

        font-size:16px;

    }

    .intro{

        font-size:15px;

    }

    .page-container section p{

        font-size:14px;

    }

    .page-container li{

        font-size:14px;

    }

    .card{

        padding:18px;

    }

}


/* ===========================================
   Cards con status del mapa
=========================================== */

.card-online {
    border-left: 6px solid #3ddc84;
}

.card-warning {
    border-left: 6px solid #f7c948;
}

.card-offline {
    border-left: 6px solid #ff5d5d;
}

/* ===========================================
   Info del cluster
=========================================== */

.cluster-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:10px;

}

.cluster-stat{

    text-align:center;

}

.cluster-stat .value{

    font-size:22px;

    font-weight:bold;

    color:#59c4ff;

}

.cluster-stat .label{

    margin-top:8px;

    color:#9ea9b7;

    font-size:14px;

}

/* ===========================================
   Link en Cards
=========================================== */



.card-link{

    text-decoration:none;

    color:inherit;

    display:block;

}

.card-link:hover{

    text-decoration:none;

    color:inherit;

}


/* ===========================================
   Tabla de Jugadores
=========================================== */

.players-table{

    width:auto;

    min-width:100%;

    border-collapse:collapse;

    margin-top:20px;

}

.players-table th,
.players-table td{

    white-space:nowrap;

}

.players-table thead{

    background:#20242b;

}

.players-table th{

    padding:14px;

    text-align:left;

    color:#59c4ff;

    font-weight:600;

    border-bottom:1px solid #303844;

}

.players-table td{

    padding:12px 14px;

    border-bottom:1px solid #303844;


}

.players-table tbody tr:hover{

    background:#20242b;

}

.players-table td:first-child{

    font-weight:800;

}

.players-table td:last-child,
.players-table th:last-child{

    text-align:right;

}

.players-table th:nth-child(3),
.players-table td:nth-child(3){

    text-align:center;

}

.players-table th:nth-child(4),
.players-table td:nth-child(4){

    text-align:right;

}

.vip-legend{

    display:inline-flex;
    align-items:center;

    gap:4px;

    width:fit-content;

    margin:10px auto 0;

}

.vip-legend span{

    display:inline-flex;
    align-items:center;

    gap:3px;

    padding:6px 10px;

    border-radius:999px;

    font-size:.70rem;
    font-weight:600;

}

.vip-legend .green{

    color:#7DFF83;
    background:rgba(46,125,50,.28);
    border-color:rgba(46,125,50,.45);

}

.vip-legend .yellow{

    color:#FFE56C;
    background:rgba(255,193,7,.18);
    border-color:rgba(255,193,7,.40);

}

.vip-legend .orange{

    color:#FFB45A;
    background:rgba(255,152,0,.18);
    border-color:rgba(255,152,0,.45);

}

.vip-legend .red{

    color:#FF7B7B;
    background:rgba(244,67,54,.18);
    border-color:rgba(244,67,54,.45);

}



