/* body, html */
html,
body {
    background-image: url("../imgs/bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #060606;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Cinzel, serif;
    cursor: url("../imgs/cursor-hud.png") 2 2, auto;
}
.cursor-hover {
  cursor: url("../imgs/cursor-hud-hover.png") 2 2, pointer;
}
a:hover,
button:hover,
.clickable:hover,
[role="button"]:hover {
  cursor: url("../imgs/cursor-hud-hover.png") 2 2, pointer;
}
a,
button,
input,
select,
textarea,
label,
[role="button"],
.clickable {
  cursor: url("../imgs/cursor-hud-click.png") 2 2, auto !important;
}
a:active,
button:active,
.clickable:active,
[role="button"]:active {
  cursor: url("../imgs/cursor-hud-click.png") 2 2, auto !important;
}
/* end */

/* section */
section {
    width: 1280px;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 25px;
    position: relative;
    align-items: center;
}

/* end */
/* particles fire */
.global-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.fire-particle {
    pointer-events: none;
    filter: blur(0.5px);
}

@keyframes particleFall {
    from {
        transform: translateY(-20vh);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    to {
        transform: translateY(120vh);
        opacity: 0;
    }
}

/* end */

/* audio theme resting place */
#audio-toggle {
    position: fixed;
    top: 40px;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url("../imgs/audio-off.png") no-repeat center/contain;
    filter: brightness(1.15) contrast(1.1);
    z-index: 99999;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* end */

/* statistics */
.statistics {
    position: relative;
    display: flex-item;
    align-items: center;
    width: 1250px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0px;
    top: -300px;
    background-color: rgb(0, 0, 0, 0.9);
    border-radius: 7px;
    box-shadow: 0px 0px 15px #000; 
    color: #dce6ef;
    z-index: 10000;
}

.title {
    width: 980px;
    max-width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    margin: 0 auto;
    top: -300px;
}

.title h1 {
    position: relative;
    font-size: 35px;
    font-family: Cinzel, Serif;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#eee, #e1c069, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 5px 5px 50px #000;
}

.title-class {
    width: 980px;
    max-width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    margin: 0 auto;
    top: 20px;
}

.title-class h1 {
    position: relative;
    font-size: 25px;
    font-family: Cinzel, Serif;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#eee, #e1c069, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 5px 5px 50px #000;
}

.boss-stats {
    max-width: 100%;
    margin: auto 0;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: linear-gradient(to bottom,
            rgba(20, 20, 20, 0.85),
            rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 200, 120, 0.15);
    border-radius: 12px;
    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(255, 180, 90, 0.04);
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    position: relative;
    border-right: 1px solid rgba(255, 200, 120, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: #f5d7a1;
    letter-spacing: 1px;
}

.stat-label {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b9b9b9;
}

.stat-item:hover .stat-value {
    text-shadow: 0 0 12px rgba(255, 190, 90, 0.4);
}

/* end */

footer {
    width: 100%;
    height: auto;
    bottom: 0;
}

footer .copy {
    position: relative;
    margin: 0 auto;
    width: 1280px;
    height: auto;
    max-width: 100%;
    align-items: center;
    text-justify: center;
    padding: 10px;        
}

footer .copy h1 {
    color: #b9b9b9;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif, serif;
    font-weight: 400;
    text-align: center;
}

/* MEDIA QUERIES - MOBILE RESPONSIVE */

/* Tablets e dispositivos médios */
@media screen and (max-width: 1024px) {
    section {
        width: 100%;
        padding: 15px;
    }

    .statistics {
        width: 95%;
        top: -200px;
        padding: 10px;
    }

    .title {
        width: 95%;
        top: -200px;
    }

    .title h1 {
        font-size: 28px;
    }

    .title-class {
        width: 95%;
    }

    .title-class h1 {
        font-size: 20px;
    }

    .boss-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 20px 16px;
    }

    .stat-value {
        font-size: 30px;
    }

    .stat-label {
        font-size: 13px;
    }
}

/* Smartphones */
@media screen and (max-width: 768px) {
    section {
        padding: 10px;
    }

    .statistics {
        width: 95%;
        top: -150px;
        padding: 8px;
    }

    .title {
        width: 95%;
        top: -150px;
    }

    .title h1 {
        font-size: 24px;
    }

    .title-class {
        width: 95%;
        top: 15px;
    }

    .title-class h1 {
        font-size: 18px;
    }

    .boss-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px 12px;
    }

    .stat-item {
        padding: 15px 8px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 200, 120, 0.08);
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stat-value {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }

    #audio-toggle {
        width: 50px;
        height: 50px;
        top: 20px;
        right: 15px;
    }

    footer .copy {
        width: 95%;
        padding: 8px;
    }

    footer .copy h1 {
        font-size: 11px;
    }
}

/* Smartphones pequenos */
@media screen and (max-width: 480px) {
    .statistics {
        width: 98%;
        top: -100px;
    }

    .title {
        width: 98%;
        top: -100px;
    }

    .title h1 {
        font-size: 20px;
    }

    .title-class h1 {
        font-size: 16px;
    }

    .boss-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 10px;
    }

    .stat-item {
        padding: 12px 8px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 200, 120, 0.08);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    #audio-toggle {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 10px;
    }

    footer .copy h1 {
        font-size: 10px;
    }
}