@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('sidebar.css');
@import url('plugins.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    position: relative;
    font-family: 'cinzel', sans-serif;
    text-decoration: none;
}

@font-face {
    font-family: 'cinzel';
    src: url('../fonts/cinzel-bold.woff');
}

body {
    background: url(../images/background.jpg)top center no-repeat #010000;
}

/* Navegation */

ul {
    list-style: none;
}

nav {
    width: 100%;
}

nav>div {
    width: 1006px;
    background: url("../images/menu.png");
    height: 119px;
}

.links {
    margin-top: -22px;
}

nav>div>ul li a {
    display: block;
    width: 116px;
    height: 40px;
    line-height: 60px;
    font-size: 14px;
    color: #c1ae99;
    text-align: center;
    text-transform: uppercase;
}

nav>div>ul.links li a:hover {
    color: #fff;
}


nav>div>ul.buttons li a {
    background-color: #1c1c1b;
    height: 40px;
    line-height: 35px;
    border-radius: 8px;
    border: 2.5px solid #646262;
}

/* Header */

header {
    width: 1000px;
    height: 356px;
}

header .logo {
    margin: 80px auto 110px;
    width: 609px;
    height: 296px;
    left: 200px;
}

header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    left: 108px;
}

/* web-container */
.web-container {
    width: 1225px;
}

.web-container>.main {
    width: 709px;
}

.web-container>.main .web-title {
    font-size: 13px;
    text-transform: uppercase;
    color: #a29482;
    height: 40px;
    background: url('../images/content/title-content.png');
    padding: 14px 10px 0 35px;
    margin: 0 0 1rem;
}

.web-container>.main .web-title h4 {
    font-weight: 500
}

.web-container>.main .web-title::after {
    content: '';
    width: 24px;
    height: 31px;
    background: url('../images/content/after.png');
    position: absolute;
    bottom: 3px;
    left: 6px;
}

.web-container>.main .web-title.after-none::after {
    display: none !important
}

.web-container>.main .web-title.geral::after {
    background: url('../images/content/geral.png');
}

.web-container>.main .web-title.events::after {
    background: url('../images/content/events.png');
}

.web-container>.main .web-contents {
    background: url('../images/content/center-content.png');
}

.web-container>.main .web-contents:before {
    content: "";
    width: 100%;
    bottom: -8px;
    position: absolute;
    height: 15px;
    background: url('../images/content/bottom-content.png');
}

/* Posts */

.posts {
    padding: 8px;
}

.posts>ul>li {
    background: url('../images/content/link-post.png');
    padding: 5px;
}

.posts>ul>li:not(:last-child) {
    margin-bottom: 7px;
}

.posts>ul>li>.post-info span {
    display: block;
    color: #b3aaa0;
}

.posts>ul>li>.post-info span u {
    display: inline-block;
    width: 94px;
    height: 24px;
    background: url('../images/content/tag.png');
    text-align: center;
    color: #a29482;
    padding: 1px;
    text-transform: uppercase;
    margin: 0 .4rem 0 0;
    font-size: 11px;
    line-height: 23px;
}


.posts>ul>li>a {
    display: block;
    width: 74px;
    height: 25px;
    background: url('../images/content/btn-view.png');
    text-align: center;
    line-height: 25px;
    font-size: 13px;
    color: #cab294;
    transition: all .2s ease-in-out;
    border-radius: 2px;
}

.posts>ul>li>a:hover {
    filter: grayscale(60%)
}

/* Ranking Home*/

.buttons {
    height: 37px;
    width: 700px;
}

.buttons a {
    display: block;
    width: 107px;
    font-size: 13px;
    text-align: center;
    font-family: 'Tahoma';
    background: url('../images/button-ranking.png'), url('../images/button-ranking-hover.png');
    height: 37px;
    line-height: 37px;
    color: #cab294;
    text-transform: uppercase;
}

.buttons a.active,
.buttons a:hover {
    background: url('../images/button-ranking-hover.png')
}

.ranking {
    font-size: 12px;
    font-family: 'Tahoma';
    text-align: center;
    margin-bottom: 1rem
}

.ranking .box {
    padding: 5px 10px;
    background: url('../images/preview.png');
    border-radius: 5px;
    width: 120px;
    height: 142px;
}


.ranking .box:before {
    content: "";
    position: absolute;
    top: -8px;
    left: -3px;
    width: 25px;
    height: 25px;
    z-index: 2
}


.ranking>div p {
    padding: 5px;
    font-family: Arial;
    color: #a29482;
    top: 11px;
}

.ranking>div p.title {
    position: absolute;
    top: -17px;
    width: 107px;
}

.ranking>div .image {
    background: #fff;
    width: 107px;
    height: 100px;
    left: -4px;
    top: 1px;
}

.ranking>div .image img {
    height: 100px;
}

.ranking>div .preview {
    position: absolute;
    top: -142px;
    width: 304px;
    height: 159px;
    background: url('../images/preview-info.png');
    color: #eee;
    z-index: 9;
    left: -9px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

.ranking>div .preview ul {
    width: 130px;
    text-align: left;
    padding: 4px;
}

.ranking>div .preview ul li {
    padding: 4px 5px;
    background: #4b3d36;
    margin: 2px 0;
}

.ranking>div .preview ul li span {
    float: right;
}


.ranking>div .image img:hover+.preview {
    opacity: 1;
    visibility: visible;
}

.hallfame .ranking-view {
    display: none;
}

.hallfame .ranking-view.active {
    display: flex;
}

.hallfame .ranking-table {
    padding: 3px;
    background: #434343;
}

.hallfame .ranking-table table {
    width: 230px;
    border-collapse: collapse;
}

.hallfame .ranking-table table thead tr th {
    padding: 8px 5px;
    background: #171717;
    color: #fff;
}

.hallfame .ranking-table table tbody tr td {
    padding: 5px;
    background: #323131;
    border-bottom: 1px solid #1a1a1a;
    color: #fff;
}

/*castle-siege*/

.castle-siege {
    width: 100%;
    height: 279px;
    background: url("../images/bg-castle-siege.jpg");
    color: #2f0903;
}

.castle-siege .info {
    right: 80px;
    height: 279px;
}

.castle-siege .logo {
    border: 1px solid #eee;
}

.castle-siege .winner>.owner p {
    font-size: 16px;
    text-transform: uppercase;
}

.castle-siege .winner>.owner h3 {
    font-size: 36px;
}

.castle-siege .winner>.next-match {
    padding: 5px;
    background: #cabfc073;
    border-radius: 5px
}

.castle-siege .winner>.next-match p {
    font-size: 12px;
    text-transform: uppercase;
}

.castle-siege .winner>.next-match h4 {
    font-size: 18px;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 4rem 0rem;
    max-width: 1100px;
}

footer p {
    font-size: 12px;
    padding: 4px 0;
    color: #767676;
    text-transform: uppercase;
    text-align: center;
}

footer p span,
footer p a {
    color: #fff;
}

/* Forms */

.web-form {
    padding: 1rem;
}

.web-form form>div {
    padding: .5rem 0;
}

.web-form form>div>p {
    font-size: 12px;
    padding: 5px 0;
    color: #fff;
}

.web-form form>div>p sup {
    color: rgb(247, 54, 54);
}

.web-form form input:not(input[type="checkbox"]),
.web-form form select,
.web-form form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: 1.5px solid #3c342e;
    background: #191411;
    color: #eee;
}

.web-form form input.input_message {
    padding: 20px !important;
}

.web-form form label>span {
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #4a3a3a;
    border-radius: 5px;
    cursor: pointer;
}

.web-form form label input {
    display: none;
}

.web-form form label p {
    font-size: 12px;
    padding: 0 0 0 .5rem;
    color: #eee;
}

.web-form form label input:checked+span {
    background: #ffffff;
    border: 2px solid #cab28e;
    border-radius: 10px;
}

.web-form form label input:checked+span:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cab28e;
}

.web-form form button {
    width: 107px;
    display: block;
    margin: auto;
    color: #cab294;
    cursor: pointer;
    transition: all .3s cubic-bezier(0.42, 0, 0.58, 1.03);
    height: 37px;
    background: url('../images/button-ranking.png'), url('../images/button-ranking-hover.png');
    line-height: 37px;
}

.web-form form button:hover {
    background: url('../images/button-ranking-hover.png');
}

.information>div {
    padding: 0 1rem;
    margin: auto auto 2rem;
}

.info_title {
    color: #a29482;
}

.information>div .sub-title {
    color: #eee;
    padding: 10px;
    background: #4e4035;
    padding: 10px;
    font-size: 13px;
}

.information>div table {
    width: 100%;
}

.information>div table {
    border-collapse: collapse;
}

.information>div table thead tr td {
    color: #a29482;
    padding: 15px 10px
}

.information>div table tbody {
    background: #25201e;
}

.information>div table tbody tr td {
    padding: 10px;
    color: #fff;
    border-bottom: 2px solid #1e1411;
    font-size: 12px;
    font-family: 'Tahoma'
}

.information>div table tbody tr td a {
    background: url('../images/btn-shop.png') center /cover;
    display: block;
    width: 100px;
    height: 22px;
    text-align: center;
    line-height: 20px;
    color: #fff1db;
}

.information>div table tbody tr td a:hover {
    filter: grayscale(60%)
}

.information>div table tbody tr td span.online {
    color: #19db19;
}

.information>div table tbody tr td span.offline {
    color: #f24a4a;
}

/*messages*/

.message_warning {
    padding: 6px;
    background: #534034;
    border-radius: 1px;
    color: #fff;
    text-align: center;
    width: 92%;
    font-size: 13px;
    margin: 1rem auto;
}

/* User */

.menu_user {
    padding: 1rem;
    margin-bottom: 2rem;
}

.menu_user ul li a {
    color: #cab294;
    background: url('../images/button-ranking.png'), url('../images/button-ranking-hover.png');
    display: block;
    border-radius: 5px;
    width: 107px;
    margin: 1rem auto 0;
    transition: all .2s ease-in-out;
    height: 37px;
    line-height: 37px;
    text-align: center;
    font-size: 13px;
}

.menu_user ul li a:hover {
    background: url('../images/button-ranking-hover.png');
}

.characters_user {
    padding: 0 0 1rem
}

.characters_user>div a {
    background: url('../images/preview.png');
    display: block;
    color: #fff;
    transition: all .3s cubic-bezier(0.42, 0, 0.57, 1);
    width: 120px;
    height: 142px;
}

.characters_user>div .image {
    background: #FFF;
    width: 107px;
    height: 100px;
    margin: auto;
    top: 6px;
}

.characters_user>div .name {
    padding: 5px;
    font-size: 13px;
    text-align: center;
    top: 14px;
    color: #a29482;
}

.characters_info .image {
    width: 150px;
    padding: 5px 5px 5px;
    margin: 1rem auto 3rem;
    background: #211e1e;
    border-radius: 2px;
}

.characters_info .image>img {
    width: 100%;
    background: #fff;
}

.links_ranking {
    padding: 0 0 1rem
}

.link_panel {
    padding: 0 0 1rem
}

.link_panel ul li a,
.btn-comeback,
.links_ranking a {
    color: #cab294;
    background: url('../images/button-ranking.png'), url('../images/button-ranking-hover.png');
    display: block;
    border-radius: 5px;
    width: 107px;
    margin: 1rem auto 0;
    transition: all .2s ease-in-out;
    height: 37px;
    line-height: 37px;
    text-align: center;
    font-size: 13px;
}

.link_panel ul li a:hover,
.btn-comeback:hover,
.links_ranking a:hover {
    background: url('../images/button-ranking-hover.png');
}

/* ranking-gerate */

.ranking-gerate {
    margin-top: 4rem;
    padding: 0 0 4rem;
}

.ranking-gerate>.character,
.ranking-gerate>.guild {
    width: 120px;
    text-align: center;
    font-size: 13px;
    background: url('../images/preview-ranking.png');
    height: 233px;
}

.ranking-gerate>.character p.name,
.ranking-gerate>.guild p.name {
    border-radius: 3px;
    color: #a29482;
    top: 6px;
}

.ranking-gerate>.character .image,
.ranking-gerate>.guild .image {
    top: 22px;
    width: 107px;
    height: 100px;
    background: #fff;
    left: 6.5px;
}

.ranking-gerate>.character p.level,
.ranking-gerate>.character p.guild,
.ranking-gerate>.guild p.master,
.ranking-gerate>.guild p.members {
    border-radius: 3px;
    color: #a29482;
    font-size: 11px;
    text-align: left;
    top: 36px;
    left: 10px;
    width: 99px;
}


.ranking-gerate>.character p.level span,
.ranking-gerate>.character p.guild span,
.ranking-gerate>.guild p.master span,
.ranking-gerate>.guild p.members span {
    float: right;
    color: #c6c5c5;
}

.ranking-gerate>.character p.score,
.ranking-gerate>.guild p.score {
    border-radius: 3px;
    margin-top: 0.5rem;
    font-size: 12px;
    color: #e5dcd1;
    top: 63px;
}

.ranking-gerate>.character:before,
.ranking-gerate>.guild:before {
    content: "";
    position: absolute;
    top: -8px;
    left: -3px;
    width: 25px;
    height: 25px;
    z-index: 2
}


.ranking-gerate>.character p.guild {
    top: 55px;
}

.ranking-gerate table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ranking-gerate table thead tr td {
    padding: 8px 5px;
    background: #626161;
    color: #fff;
}

.ranking-gerate table tbody tr td {
    padding: 5px;
    background: #fbfbfb;
    border-bottom: 1px solid #e3e3e3;
}

/*vop / coins*/
.information .vip {
    font-size: 13px;
}

.information .vip section {
    background: #363636;
    color: #fff;
    font-size: 12px;
    padding: 5px;
    border-radius: 2px;
}

.information .vip section h4 {
    padding: 5px;
    font-size: 13px;
    font-weight: normal;
    background: #272525;
    border-radius: 2px;
}

.information .vip section p {
    padding: 5px;
    color: #b9b9b9;
}

.information .vip section p a {
    color: #fff;
    text-decoration: underline
}

.information .previlegy h4 {
    font-size: 15px;
    text-transform: uppercase;
    color: #a29482;
    height: 30px;
    font-weight: normal;
}

.post-message {
    padding: 0 10px
}

.post-message>section {
    padding: 1rem;
    background: #ddd;
    border-radius: 2px;
}

.post-message>section article img {
    width: 100%;
    height: 100%;
}

.post-message>section .author {
    font-size: 12px;
    padding: 5px;
    background: #1f1e1e;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-family: 'Tahoma';
    width: 400px;
    margin: .5rem auto auto;
}

.post-comments .comment {
    padding: 20px;
    font-size: 13px;
    background: #0f0a07;
    color: #fff;
    margin: 1rem auto;
    border-radius: 5px;
    width: 90%;
    border: 1px solid #372b22;
}

.post-comments .comment p.author {
    padding: 5px;
    background: #5f4a3d;
    border-radius: 2px;
    margin: 1rem auto;
    text-align: center;
    width: 320px;
    font-size: 12px;
}

/* Shopping */

.categorys-shop>a {
    width: 244px;
    height: 160px;
    color: #fff;
    background: #333;
    font-size: 12px;
}

.categorys-shop>a:hover {
    transform: scale(1.03)
}

.categorys-shop>a .shop-1 {
    background: url("../images/shop-1.jpg");
    height: 160px;
}

.categorys-shop>a .shop-2 {
    background: url("../images/shop-2.jpg");
    height: 160px;
}

.categorys-shop>a .shop-3 {
    background: url("../images/shop-3.jpg");
    height: 160px;
}


.categorys-shop>a p {
    width: 150px;
    height: 100px;
    left: 80px;
    background: #000;
    border-radius: 5px;
    top: 30px;
    padding: 8px;
}

.categorys-shop>a p span {
    padding: 3px 0;
    display: block;
    color: #e3a900;
}

.shopping-web .siderbar-shop {
    min-width: 150px;
    background: #19120e;
    padding: 5px;
    border-radius: 1px;
}

.shopping-web {
    align-items: flex-start;
    padding: 0 10px 10px;
}

.shopping-web .siderbar-shop ul li a {
    font-size: 13px;
    padding: 8px;
    margin: 0 0 .5rem;
    background: url('../images/btn-shop.png');
    display: block;
    border-radius: 5px;
    transition: all .2s ease-in-out;
    text-align: center;
    color: #e5d2bb;
    width: 140px;
}

.shopping-web .siderbar-shop ul li a:hover {
    filter: grayscale(80%)
}

.shopping-web .items-shop {
    width: 100%;
}

.shopping-web .items-shop .item {
    width: 150px;
    text-align: center;
    padding: 10px;
    border: 2px solid #3c2e24;
    background: #1a1613;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
}

.shopping-web .items-shop .item p {
    padding: 5px;
    background: #3f2c26;
    border-radius: 2px;
}

.shopping-web .items-shop .item p span {
    font-size: 10px;
    background: #a57a5e;
    border-radius: 2px;
    padding: 2px 5px;
}

.shopping-web .items-shop .item .image {
    width: 110px;
    height: 110px;
    margin: .5rem auto;
    background: #1a1613;
    padding: 5px;
}

.shopping-web .items-shop .item .image img {
    width: 100px;
    height: 100px;
    object-fit: contain
}

.shopping-web .items-shop .item a {
    color: #cab294;
    background: url('../images/button-ranking.png'), url('../images/button-ranking-hover.png');
    display: block;
    border-radius: 5px;
    width: 107px;
    margin: 1rem auto 0;
    transition: all .2s ease-in-out;
    height: 37px;
    line-height: 37px;
}

.shopping-web .items-shop .item a:hover {
    background: url('../images/button-ranking-hover.png')
}

.status {
    width: 142px;
    height: 85px;
    background: url("../images/status-off.png");
    text-align: center;
    line-height: 47px;
    font-size: 30px;
    color: #908076;
}

.status.online {
    background: url("../images/status-on.png");
}

.slider {
    width: 100%;
    padding: 3px 4px;
    background: url("../images/content/slider.png");
    height: 288px;
}

.buttons-right {
    text-align: center;
    width: 173px;
    margin: auto;
}

.redes {
    position: absolute;
    right: 45px;
    top: -149px;
    display: block;
    width: 55px;
}

.event-large {
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.event-large.timextime {
    background: url("../images/timextime.png") center no-repeat;
}
.event-large.dupla-matamata {
    background: url("../images/dmatamata.png") center no-repeat;
}
.event-large.dupla-pvp {
    background: url("../images/dpvp.png") center no-repeat;
}


.event-large .box {
    padding: 5px 10px;
    background: url('../images/preview.png');
    border-radius: 5px;
    width: 120px;
    height: 142px;
}

.event-large .box p {
    font-family: Arial;
    color: #a29482;
    top: 13px;
    text-align: center;
    font-size: 13px;
}

.event-large .box .image {
    background: #fff;
    width: 107px;
    height: 100px;
    left: -4px;
    top: 1px;
}