body{
    margin:0;
    font-family:Roboto;
    background:#0f0f0f;
    color:#e0e0e0;
}

header{
    text-align:center;
    padding:50px;
    background:#151515;
}

header h1{
    font-family:'Press Start 2P';
    color:#4CAF50;
}

nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    background:#1a1a1a;
}

nav button{
    background:none;
    border:none;
    color:white;
    padding:15px 20px;
    cursor:pointer;
    font-size:15px;
}

nav button:hover{
    background:#333;
}

main{
    max-width:1000px;
    margin:auto;
    padding:40px;
}

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

.logo{
    width:200px;
    height:100px;
    image-rendering: pixelated;
}

.image-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
    z-index:999;
}

.image-modal img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close-btn{
    position:absolute;
    top:20px;
    right:30px;
    background:none;
    border:none;
    color:white;
    font-size:40px;
    cursor:pointer;
    z-index:1000;
}

.close-btn:hover{
    color:#ff4444;
}

footer{
    background:#151515;
    margin-top:50px;
    padding:30px 20px;
    text-align:center;
    border-top:1px solid #333;
}

.footer-content{
    max-width:1000px;
    margin:auto;
}

.footer-links{
    margin-top:10px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#4CAF50;
    text-decoration:none;
    font-size:14px;
}

.footer-links a:hover{
    text-decoration:underline;
}














.admin-type{
    color: #fffb00;
}

.user-type{
    color: #39c7ff;
}

.description-card {
    color: #f5a8ff;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px 15px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.description-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

h2{
    color:#4CAF50;
}

h2 a{
    color:#80e27e;
    text-decoration:none;
}

h2 a:hover{
    color:#4CAF50;
}

















/* Statistics */
.section{
    display:none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
  max-width: 1000px;
  padding: 20px 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

table{
    width:100%;
}

th,td{
    padding:10px;
    border-bottom:1px solid #333;
}

.bstats-signature {
    display: block;
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 800px;
    height: auto;
}

.bstats-link {
    text-align: center;
    margin-top: 10px
}

.bstats-link a {
    color: #4caf50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.bstats-link a:hover {
    color: #80e27e;
}

.info-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 180px;
    flex: 1 1 180px;
    max-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.5);
}

.info-card b {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.info-card p, .info-card a {
    font-size: 16px;
    margin: 0;
}

.author-link {
    color: #4caf50;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}

.author-link:hover {
    color: #80e27e;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4caf50;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.download-btn:hover {
    background: #80e27e;
    transform: translateY(-2px);
}






/* Features */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.feature-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 15px 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.feature-card p {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-card a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.2s;
}

.feature-card a:hover {
    color: #80e27e;
}








/* Commands */
.command-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px 15px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.command-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.commands-table-card table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px 10px;
}

.commands-table-card td + td {
    padding-left: 20px;
}







/* Permissions */
.permission-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px 15px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.permission-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
.permissions-table-card table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px 10px;
}

.permissions-table-card td + td {
    padding-left: 20px;
}







/* Variables */
.variable-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px 15px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.variable-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.variables-table-card table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px 10px;
}

.variables-table-card td + td {
    padding-left: 20px;
}

.variables-table-card h4.user-type a{
    color: #39c7ff;
}

.variables-table-card h4.user-type a:hover{
    color: #a0e4ff;
}







/* Dependencies */
.dependencies-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.dependencies-column h3{
    color: #fbff27;
}

.dependency-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 15px 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.dependency-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.dependency-card p {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dependency-card a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.2s;
}

.dependency-card a:hover {
    color: #80e27e;
}






.file-card{
    background:#1e1e1e;
    border-radius:10px;
    padding:20px;
    margin-bottom:25px;
}

.file-card h3{
    margin-bottom:10px;
}

.file-card pre{
    background:#111;
    padding:15px;
    border-radius:8px;
    overflow:auto;
    white-space:pre;
    font-family:monospace;
    font-size:13px;
}

.file-card h3{
    margin-bottom:10px;
}

.file-header{
	cursor:pointer;
	user-select:none;
}

.file-content{
	display:none;
	margin-top:10px;
}

.file-content pre{
	background:#111;
	padding:15px;
	border-radius:8px;
	overflow:auto;
	white-space:pre;
	font-family:monospace;
	font-size:13px;
}

/* carpetas: gris */
.file-header.folder{
    color:#888;
}