@charset "UTF-8";

body {
	background-image:url(images/background.gif);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	background-repeat: repeat-x;
	background-color: #000000;
}
* {margin: 0px;padding: 0px;}
p {
	padding: 10px 10px 10px 20px;
	display:block;
	color:#525757;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold
}
a {
	color:#6b7272;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
}
/* Estilos para el Top 5 */
.top5-container {
    padding: 10px 5px;
}

.top5-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    margin: 5px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top5-player:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

.top5-rank {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    margin-right: 10px;
}

.rank-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.rank-2 {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    color: #000;
}

.rank-3 {
    background: linear-gradient(135deg, #CD7F32, #A56A2B);
    color: #000;
}

.rank-4, .rank-5 {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.top5-info {
    flex-grow: 1;
}

.top5-name {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 11px;
    margin-bottom: 2px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.top5-details {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
}

.top5-level {
    color: #FFFF00;
}

.top5-reborn {
    color: #00FFFF;
}

.top5-class {
    color: #FFA500;
}

/* Clases de personajes */
.class-warrior { border-left: 3px solid #FF6B6B; }
.class-trojan { border-left: 3px solid #4ECDC4; }
.class-archer { border-left: 3px solid #45B7D1; }
.class-taoist { border-left: 3px solid #96CEB4; }
.class-water-tao { border-left: 3px solid #6A89CC; }
.class-fire-tao { border-left: 3px solid #F78FB3; }

/* Indicador de online en el Top 5 */
.top5-online-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CAF50;
    margin-left: 5px;
    display: inline-block;
    animation: pulse-online 2s infinite;
}
#container {
	margin: 0px auto;
	text-align: left;
	width: 860px;
}
#header{
	height:304px;
	width:777px;
	background-image:url(images/header.jpg);
	background-repeat: no-repeat;
}
#content{
}
#left{
	width:192px;
	float:left;
}
#middle{
	margin-left:206px;
	margin-right:196px;
	width:450px;
}
#right{
	width:192px;
	float:right;
}
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.indicator-dot.online {
    background: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    animation: pulse-online 2s infinite;
}

.indicator-dot.offline {
    background: #f44336;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.3);
}

.status-text {
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/********************* menu ****************************/
/* Estilos para el formulario de registro */
.registro-form {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.registro-form label {
    color: #FFFF00;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.registro-form select {
    width: 90%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #333;
    background-color: #222;
    color: #FFF;
    border-radius: 4px;
}

.registro-form input, .registro-form select {
    width: 90%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #333;
    background-color: #222;
    color: #FFF;
    border-radius: 4px;
}

.registro-form input:focus, .registro-form select:focus {
    outline: none;
    border-color: #FFFF00;
    box-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
}

.registro-form button {
    background-color: #FFFF00;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

.registro-form button:hover {
    background-color: #FFCC00;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.error {
    color: #FF0000;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.success-message {
    color: #00FF00;
    background-color: rgba(0, 255, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    text-align: center;
    border: 1px solid #00FF00;
}
.menuheader{
	width:192px;
	height:37px;
	background-image:url(images/menutop.gif);
	display:block;
}
.menucontent{
	width:192px;
	background-image:url(images/menumiddle.gif);
	padding-top:10px;
	background-repeat: repeat-y;
}
.menuheader h3{
	padding: 10px 0px 0px 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #CCCCCC;
}
.menufooter{
	width:192px;
	height:15px;
	background-image:url(images/menubottom.gif);
	display:block;
}
.postheader,.menuheader{
	color:#CCCCCC;
	text-transform: uppercase;
}
/********************* post ****************************/
.post{
	margin-bottom:15px;
}
.postheader{
	background-image:url(images/posttop.gif);
	display:block;
	width:450px;
	height:33px;
}
.postheader h1{
	padding: 7px 0px 0px 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #CCCCCC;
}

.postcontent{
	background-image:url(images/postmiddle.gif);
	background-repeat: repeat-y;
	padding: 20px 0px;
	width: 450px;
}
.postfooter{
	background-image:url(images/postbottom.gif);
	background-repeat: no-repeat;
	display:block;
	width:450px;
	height:15px;
}
/********************* header ****************************/
#header{
	position:relative;
}
#header ul{
	position:absolute;
	top:250px;
	display:block;
	left:190px;
	list-style: none;
}
#header ul li{
	display:inline;
	text-align:center;
	margin:auto;
	width:auto;
	border-right: 1px solid #6b7272;	
}
.last{
	border-right: 0px none #6b7272 !important;
}
#header ul li a{
	display:inline;
	text-align:center;
	text-decoration:none;
	padding: 0px 10px;
	text-transform: uppercase;
	color: #6b7272;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}
#header ul li a:hover{
	text-decoration:underline;
	color: #FFFFFF;
}
/********************* footer ****************************/
#footer{
	width:850px;
}
#footer ul{
	display:block;
	margin-left:190px;
	list-style: none;
}
#footer ul li{
	display:inline;
	text-align:center;
	margin:auto;
	width:auto;
	border-right: 1px solid #6b7272;	
}

#footer ul li a{
	display:inline;
	text-align:center;
	text-decoration:none;
	padding: 0px 10px;
	text-transform: uppercase;
	color: #6b7272;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}
#footer ul li a:hover{
	text-decoration:underline;
	color: #FFFFFF;
}
#footer span{
	color:#525757;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-align:center;
	width:850px;
	display:block;
	padding: 15px 0px;
}
/********************* menu members ****************************/
.menu ul{
	list-style-position: inside;
	list-style-type: disc;
	padding: 0px 0px 0px 20px;
	color:#666666;
}
.menu ul li{
	padding-top: 5px;
	color:#666666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}
.menu ul li a{
	text-decoration:none;
	padding: 0px;
	text-transform: uppercase;
	color: #6b7272;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}
.menu ul li a:hover{
	text-decoration:underline;
	text-transform: uppercase;
	color: #FFFFFF;
}
.member{
	display:inline;
	float:left;
	margin-left:10px;
}
.member span{
	display:block;
	text-align:center;
	padding: 2px 0px 13px 0px;
	text-transform: uppercase;
	color: #525757;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}
.member img{
	width:75px;
	height:70px;
	border: solid 2px #999999;	
}
.clear{
	clear:both;
}

/* Estilos adicionales para asegurar compatibilidad con UTF-8 */
h1, h2, h3, h4, h5, h6, p, span, div, li, td, th {
    font-family: Arial, Helvetica, sans-serif;
}

/* Específico para los estilos que muestran acentos */
.Estilo2, .Estilo3 {
    font-family: Arial, Helvetica, sans-serif;
}

.Estilo2 {
    color: #FFFF00;
    font-family: Arial, Helvetica, sans-serif;
}

.Estilo3 {
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
}