/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --banner1: linear-gradient(135deg, #6c5100 0%, #6d5d1b 100%);
    --banner2: linear-gradient(135deg, #74621a 0%, #b8940f 100%);
    --banner3: linear-gradient(135deg, #b8940f 0%, #ffd700 100%);
    --bannerFooter: linear-gradient(135deg, #1a1a1a 0%, #2c2100 100%);
    --textShadowYellow: 0px 0px 10px rgba(255, 215, 0, 0.8);
    --textShadowGreen: 0px 0px 10px rgba(0, 255, 0, 0.5);
    --color-gold: #ffd700;
    --color-dark-gold: #b8940f;
    --color-dark: #1a1a1a;
    --color-light: #f8f8f8;
}

#resultForm{
    position: fixed;
    top: 10px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: max-content;
    z-index: 10;
    text-align: center;
}

*{
    padding: 0px;
    margin: 0px;
    font-family: "Work Sans", sans-serif;
    box-sizing: border-box;
}

body,html{
    height: 100%;
    background-color: #0f0f0f;
    color: #ffd700;
}

/* Header mejorado */
.header{
    position: relative;
    background: var(--banner3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
    position: relative;
}

.nav1 .logo{
    height: 70px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.nav1 .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.nav1 span{
    padding: 10px 15px;
    cursor: pointer;
    color: #0c0c09;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav1 span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav1 span:hover::before {
    width: 100%;
}

.nav1 span:hover{
    text-shadow: var(--textShadowYellow);
}

.nav1 span a{
    color: #14110c;
    text-decoration: none;
}

/* Logo animado con efecto eléctrico */
.logo-animado {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), var(--bannerFooter);
    position: relative;
    overflow: hidden;
}

@keyframes shine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes electric {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 
                     0 0 20px rgba(255, 215, 0, 0.3),
                     0 0 30px rgba(255, 215, 0, 0.2);
    }
    50% { 
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 
                     0 0 25px rgba(255, 215, 0, 0.5),
                     0 0 35px rgba(255, 215, 0, 0.3),
                     0 0 45px rgba(255, 215, 0, 0.2);
    }
}

.logo-animado::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    animation: lightning 4s linear infinite;
}

@keyframes lightning {
    0% { transform: rotate(45deg) translate(-50%, -50%); opacity: 0; }
    5% { opacity: 0.8; }
    10% { transform: rotate(45deg) translate(50%, 50%); opacity: 0; }
    100% { transform: rotate(45deg) translate(50%, 50%); opacity: 0; }
}

.logreg{
    display: flex;
    align-items: center;
    gap: 15px;
}

.logreg span{
    color: #fff;
}

.logreg .linklogreg{
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 500;
}

.logreg .linklogreg:hover{
    background: rgba(255, 215, 0, 0.1);
    text-shadow: var(--textShadowYellow);
}

.logreg .linkpanel{
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.logreg .linkpanel:hover {
    background: rgba(255, 215, 0, 0.1);
}

.logreg .linkpanel img{
    width: 20px;
    filter: invert(1);
}

.logreg .linkpanel label{
    padding: 0px 10px;
    cursor: pointer;
    color: #fff;
}

/* Sección de descargas mejorada */
.descargas{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.descargas .title{
    text-align: center;
    padding: 20px 0px;
    grid-column: 1 / -1;
    color: var(--color-gold);
    font-size: 1.8rem;
}

.descargas .download-item {
    background: linear-gradient(145deg, #1a1a1a, #2c2100);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.descargas .download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.2);
}

.descargas img{
    width: 100%;
    display: block;
    transition: all 0.3s ease;
}

.descargas .download-item:hover img {
    transform: scale(1.05);
}

.download-info {
    padding: 15px;
    text-align: center;
}

.download-info h3 {
    color: var(--color-gold);
    margin-bottom: 10px;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--banner3);
    color: #000;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.download-btn:hover {
    background: var(--color-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Footer mejorado */
.footer{
    background: var(--bannerFooter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    margin-top: 40px;
}

.footer .logoFooter img{
    width: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer .logoFooter:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.footer > div{
    display: flex;
    align-items: center;
}

.footer .copyright{
    flex-direction: column;
    justify-content: center;
    color: #fff;
    line-height: 1.5;
    font-size: 0.9em;
    text-align: center;
}

.footer .copyright a{
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .copyright a:hover{
    text-shadow: var(--textShadowYellow);
}

.footer .copyright label{
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

.footer .copyright label:hover{
    color: var(--color-gold);
    background: rgba(255, 215, 0, 0.1);
}

.footer .redesSociales{
    align-items: center;
    justify-content: center;
}

.footer .redesSociales img{
    width: 40px;
    border-radius: 50%;
    margin: 0px 10px;
    cursor: pointer;
    background: #000;
    border: 2px solid #333;
    transition: all 0.3s ease;
    padding: 5px;
}

.redesSociales .youtube:hover{
    background: #b91717;
    border: 2px solid #b91717;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(185, 23, 23, 0.4);
}

.redesSociales .whatsapp:hover{
    background: #15ab15;
    border: 2px solid #15ab15;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(21, 171, 21, 0.4);
}

.redesSociales .facebook:hover{
    background: #3d3de1;
    border: 2px solid #3d3de1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(61, 61, 225, 0.4);
}

.userpanel{
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	position: relative;
}

.userpanel .navPanel{
	width: 20%;
	display: -webkit-flex;
	flex-direction: column;
}

.userpanel .navPanel div{
	position: relative;
	cursor: pointer;
}

.userpanel .navPanel div img{
	width: 100%;
}

.userpanel .navPanel div label{
	position: absolute;
	bottom: 0px;
	color: #fff;
	padding: 10px;
	font-size: 0.9em;
	right: 0px;
	cursor: pointer;
}

.userpanel .navPanel .imgShow{
	opacity: 1;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	position: absolute;
	top: 0px;
	left: 0px;
}

.userpanel .navPanel div:hover .imgShow{
	opacity: 0;
}

.userpanel .titlePanel{
	width: 100%;
	text-align: center;
	background: var(--banner2);
	color: #fff;
	padding: 10px 0px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.userpanel .contentPanel{
	width: 78%;
	padding: 1%;
}

/* Configuracion de usuario */
.configUser{
	display: -webkit-flex;
}

.configUser > div{
	width: 50%;
}

.userInfo{
	display: -webkit-flex;
	flex-direction: column;
	line-height: 1.5;
}

.accNoDisponible{
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	text-align: center;
}

.infoPj {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px 10px;
}

.infoPj > div{
	overflow: hidden;
	cursor: pointer;
}

.infoPj > div img{
	border-radius: 10px;
	width: 100%;
}

.infoPj > div .title{
	text-align: center;
	padding: 5px 0px;
	width: 95%;
	margin: auto;
	border-bottom: 2px solid #000;
	margin-bottom: 10px;
}

/* Vista de personajes */
.viewPersonajes{
	position: fixed;
	left: 0px;
	right: 0px;
	margin: 20px auto;
	width: 80%;
	top: 0px;
	background: #fff;
	z-index: 1;
	left: 0px;
	padding: 10px;
	border-radius:10px;
	box-shadow: 0px 0px 16px rgba(0,0,0,.3);
}

.viewPersonajes span{
	height: max-content;
}

.viewPersonajes .title{
	width: -webkit-fill-available;
	background: var(--banner1);
	padding: 10px;
	color: #fff;
	text-align: center;
	height: max-content;
	margin: 0px 2px;
}

.viewPersonajes > div{
	display: -webkit-flex;
	cursor: default;
}

.viewPersonajes div img{
	border-radius: none;
	margin: 2px auto;
	display: block;
}

.viewPersonajes .equipo{
	display: -webkit-flex;
	width: 100%;
}

.viewPersonajes .equipo > div{
	width: 50%;
}

.viewPersonajes .equipo .contentPj{
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
}

.viewPersonajes .equipo .contentPj .info{
	width: 50%;
}

.viewPersonajes .equipo .contentPj .info > div{
	display: -webkit-flex;
	flex-direction: row;
	padding: 5px 10px;
	align-items: center;
}

.viewPersonajes .pjViewRaza{
	width: 50%;
}

.viewPersonajes .pjViewRaza img{
	width: 80%;
}

.viewPersonajes .equipo .info > div img{
	width: 25px;
	margin: 0px 10px;
}

.viewPersonajes .equipo .contentEquipo{
	position: relative;
	height: max-content;
}

.viewPersonajes .equipo .contentEquipo > div div{
	position: absolute;
	margin: auto;
	width: max-content;
	left: 0px;
	right: 0px;
}

.viewPersonajes .equipo .contentEquipo > div > div:nth-child(1){top: 14px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(3){top: 14px; left: 147px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(2){top: 14px; left: 74px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(4){top: 14px; left: -74px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(5){top: 53px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(6){top: 93px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(7){top: 53px; left: -149px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(8){top: 53px; left: 74px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(9){top: 93px; left: -149px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(10){top: 93px; left: -74px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(12){top: 93px; left: 147px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(11){top: 93px; left: 74px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(13){top: 169px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(14){top: 53px; left: -74px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(15){top: 130px;}
.viewPersonajes .equipo .contentEquipo > div > div:nth-child(16){top: 169px; left: -74px;}

.viewPersonajes .inventario > div{
	width: max-content;
	grid-template-columns: repeat(8, 1fr);
	display: grid;
	grid-gap: 2px;
}

.viewPersonajes .baul{
	width: 100%;
	flex-direction: column;
}

.viewPersonajes .baul > div{
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	margin: auto;
}


.itemsView{
	grid-gap: 5px;
	display: grid;
}

.itemsView > div{
	position: relative;
}

.itemsView .itemDescribe .describe{
	width: max-content;
	position: absolute;
	left: 25px;
	top:25px;
	display: none;
	background: rgba(0, 0, 0, .85);
	z-index: 1;
	padding: 10px;
	color: #fff;
	text-align: center;
	line-height: 1.5;
}

.itemsView > div .describe p{
	font-size: 0.8em;
}

.itemsView .itemDescribe:hover .describe{
	display: block;
}

/* WebShop */

.viewWebShop{
	display: grid;
	width: 80%;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
	margin: 5px;
	grid-template-rows: auto;
}


.webshop{
	display: -webkit-flex;
}

.menuWebshop{
	width: 20%;
	display: grid
}

.menuWebshop span{
	padding: 15px 0px;
	text-align: center;
	background: var(--banner1);
	color: #fff;
	cursor: pointer;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-ms-transition: 0.2s;
	-o-transition: 0.2s;
}

.menuWebshop span:hover{
	background: var(--banner2);
}

.viewWebShop .itemProducto{
	display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    background: #f5f5f5;
    box-shadow: 0px 0px 9px #e3e3e3;
    border: 1px solid #e1e1e1;
    height: max-content;
    padding: 5px;
}

.viewWebShop .itemProducto > *{
	padding: 5px 0px;
}

.viewWebShop .itemProducto .title{
	padding: 5px 0px;
}

.webshopInfo{
	color: #222;
	width: 80%;
	border-bottom: 1px solid #ccc;
	padding: 10px 0px;
}

.webshopInfo label:first-child{
	font-weight: bold;
}

.webshopInfo .tanys,
.webshopInfo .cupones{
	width: 100%;
	display: -webkit-flex;
	align-items: center;
	justify-content: space-evenly;
}

.webshopInfo img{
	width: 22px;
	border-radius: 100%;
}

.webshopInfo .cupones img{
	background: orange;
}

.webshopInfo .tanys img{
	background: green;
}

.userCoins{
	display: -webkit-flex;
}

.userCoins > div{
	margin: 15px 20px;
	display: -webkit-flex;
	align-items: center;
}

.userCoins > div label:first-child{
	font-weight: bold;
}

.userCoins img{
	width: 23px;
	margin: 0px 5px;
	border-radius: 100%;
}

.userCoins .tanys img{
	background: green;
}

.userCoins .cupones img{
	background: orange;
}

/* Crafteo */

.crafteo{
	display: grid;
}

.menuCrafteo{
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
}

.menuCrafteo span{
	min-width: 24%;
	color: #fff;
	text-align: center;
	padding: 10px 0px;
	cursor: pointer;
	background: var(--banner3) top -2px left;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-ms-transition: 0.2s;
	-o-transition: 0.2s;
	margin: 2px .25%;
	border-radius: 5px;
}

.menuCrafteo span:hover{
	text-shadow: var(--textShadowYellow);
}

.viewCraft{
	display: grid;
	width: 97%;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 10px;
	margin: 5px;
	grid-template-rows: auto;
}

.viewCraft .itemProducto{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	background: #f9f9f9;
	border: 1px solid #ccc;
}

.viewCraft .itemProducto > div{
	display: grid;
	align-items: center;
	position: relative;
}

.viewCraft .itemProducto *{
	text-align: center;
	display: block;
}

.viewCraft .itemProducto img{
	border:  1px solid #aaa;
	margin: auto;
}

.viewCraft .itemProducto .title{
	padding: 5px 0px;
}

.viewCraft .itemProducto .titleid{
	position: absolute;
	bottom: 0px;
	right: 0px;
	padding: 5px;
	font-weight: normal;
}

.viewCraft .itemProducto .itemsRequeridos{
	display: -webkit-flex;
	flex-direction: row;
	-webkit-flex-wrap:  wrap;
	width: 100%;
}

.crafteo .itemDescribeCraft{
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	
}

.crafteo .itemDescribeCraft img{
	width: 20px;
	margin: 2px;
	display: block;
	float: left;
}

.viewCraft .titleCraftItems{
	position: sticky;
	top: 0px;
	z-index: 1;
}

.crafteo .titleCraftItems > div{
	padding: 10px 0px;
	background: var(--banner1);
	border: none;
	color: #fff;
}

/* LDMR */

.adminpanel{
	display: -webkit-flex;
}

.navAdmin{
	width: 30%;
	display: -webkit-flex;
	flex-direction: column;
}

.navAdmin *{
	cursor: pointer;
}

.navAdmin .seccion{
	text-align: center;
}

.navAdmin .seccion label{
	padding: 10px;
	background: var(--banner3);
	display: block;
	color: #fff;
}

.navAdmin .seccion > div{
	display: -webkit-flex;
	flex-direction: column;
	display: none;
	border-left: 1px solid #ededed;
	border-right: 1px solid #ededed;
}

.navAdmin .seccion > div span{
	padding: 10px 0px;
	background: #fbfbfb;
	color: #111;
	font-size: 0.9em;
}

.navAdmin .seccion > div span:hover{
	background: #222;
	color: #fff;
}

.contentAdmin{
	width: 70%;
}

/* Craft LDMR */

#itemsRequeridos .itemsReqAdd{
	display: -webkit-flex;
	justify-content: space-evenly;
	align-items: center;
}

#itemsRequeridos .itemsReqAdd input{
	width: 42%;
}

#itemsRequeridos .itemsReqAdd label{
	cursor: pointer;
	font-size: 1.4em;
	color: red;
}

/* Check Items */
#resultCheckItems{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	justify-content: space-evenly;
}

#resultCheckItems img{
	width: max-content;
}

#resultCheckItems .itemDescribe{
	display: -webkit-flex;
	flex-direction: column-reverse;
	line-height: 1.5;
	align-items: center;
	background: #444;
	padding: 5px;
	color: #fff;

}

#resultCheckItems .itemDescribe .describe{
	text-align: center;
}

/* Packs */
.describePack{
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
	padding: 5px;
	background: #f9f9f9;
	border: 1px solid #ddd;
}

.describePack > .title{
	text-align: center;
}

.describePack > *{
	width: 50%;
}

.describePack > div{
	display: grid;
	justify-content: center;
}

.describePack > div span{
	text-align: center;
}

/* Estilos para las cajas de contenido mejoradas */
.box1 {
    border: 1px solid #333;
    border-top: 3px solid var(--color-gold);
    margin: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: linear-gradient(145deg, #1a1a1a, #222);
    transition: all 0.3s ease;
}

.box1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.1);
}

.box1 .title{
    text-align: center;
    padding: 10px 0px;
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.box1 div.informacion{
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    border-bottom: 1px solid #333;
}

.box1 div.informacion:last-child {
    border-bottom: none;
}

.box1 div.informacion b {
    color: #ccc;
}

.box1 div.informacion span {
    color: #fff;
}

.statusServerOn{
    color: #4caf50;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
    font-weight: bold;
}

/* Noticias mejoradas */
.notice {
    padding: 20px;
}

.notice .title {
    text-align: center;
    padding: 20px 0;
    color: var(--color-gold);
    font-size: 2rem;
    position: relative;
    margin-bottom: 30px;
}

.notice .title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
}

.box3 {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #333;
    border-left: 5px solid var(--color-gold);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #1a1a1a, #222);
    transition: all 0.3s ease;
}

.box3:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.1);
}

.box3 .title {
    border-left: 5px solid var(--color-gold);
    padding: 10px 15px;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.box3 p {
    padding: 10px 0;
    text-align: justify;
    line-height: 1.6;
    color: #ddd;
}

.box3 .publicBy {
    text-align: right;
    color: #999;
    font-style: italic;
    margin-top: 15px;
}

/* Zonas Online mejoradas */
.zonas {
    padding: 20px;
}

.zonas .title {
    text-align: center;
    margin: 20px 0;
    color: var(--color-gold);
    font-size: 1.8rem;
    position: relative;
}

.zonas .title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
}

.zonas div.zone-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.zonas div.zone-row:hover {
    background: rgba(255, 215, 0, 0.05);
}

.zonas div.zone-row:last-child {
    border-bottom: none;
}

.zonas div .online{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.zonas div .offline{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f44336;
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
}

/* Packs */
.paquetes{
	display: grid;
}

.paquetes .title{
	text-align: center;
	padding: 15px 0px;
}

.paquetes > div{
	display: grid;
	width: 70%;
	margin: auto;
}

.paquetes > div input,
.paquetes > div select{
	padding: 5px;
	font-size: 1em;
	margin: 5px 0px;
	outline: none;
}

.paquetes #paquetes{
	border: 1px solid #ccc;
	padding: 10px;
}

.paquetes #paquetes div{
	display: grid;
	margin: 10px auto;
	width: 100%;
}

/* Botones mejorados */
.boton1 {
    text-align: center;
    width: 90%;
    margin: 15px auto;
    font-size: 1em;
    padding: 12px 0;
    cursor: pointer;
    display: block;
    border-radius: 5px;
    border: none;
    background: var(--banner3);
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
    max-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.boton1:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

.boton2 {
    text-align: center;
    width: 100%;
    font-size: 1em;
    padding: 12px 0;
    cursor: pointer;
    display: block;
    border-radius: 5px;
    border: none;
    background: #333;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.boton2:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Formularios mejorados */
.form1 .title {
    text-align: center;
    margin: 20px 0;
    color: var(--color-gold);
    font-size: 1.8rem;
}

.form1 div {
    outline: none;
    width: 80%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form1 div label {
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 8px;
    color: #ddd;
}

.form1 div input[type="text"],
.form1 div input[type="email"],
.form1 div input[type="password"],
.form1 div select {
    display: block;
    padding: 12px 15px;
    font-size: 1em;
    outline: none;
    border: 1px solid #444;
    margin: 5px auto;
    width: 100%;
    transition: all 0.3s ease;
    border-radius: 5px;
    background: #222;
    color: #fff;
}

.form1 div input[type="text"]:focus,
.form1 div input[type="email"]:focus,
.form1 div input[type="password"]:focus,
.form1 div select:focus {
    border: 1px solid var(--color-gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.form1 input[type="submit"] {
    transition: all 0.3s ease;
    max-width: 200px;
    width: 100%;
    cursor: pointer;
    border: none;
    background: var(--banner3);
    padding: 12px 0;
    color: #000;
    display: block;
    outline: none;
    font-size: 1em;
    margin: 20px auto;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.form1 input[type="submit"]:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Letras NickName */
#nicknameCreate input{
	font-family: arial;
}

/* Querys responsive */
@media only screen and (max-width: 1024px){
    .header{
        position: sticky;
        top: 0px;
        z-index: 2;
    }

    .nav1{
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .nav1 .logo {
        margin: 10px 0;
        height: 60px;
    }

    .nav1 span {
        margin: 5px 0;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .logreg{
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .footer{
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer > div {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 768px){
    .descargas{
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 2rem;
    }

    .form1 div {
        width: 95%;
    }

    .box1, .box3 {
        margin: 10px;
        padding: 15px;
    }
}

@media only screen and (max-width: 500px){
    .logo-text {
        font-size: 1.5rem;
    }

    .nav1 span {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .logreg {
        flex-wrap: wrap;
    }

    .footer {
        padding: 20px 10px;
    }

    .footer .copyright label {
        display: block;
        margin: 5px 0;
    }
}