body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #fff;
}

.hero {
    background: url('../img/placeholder1.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Menu Superior */
.top-nav {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.top-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.top-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.top-nav li a:hover {
    background: #c62828;
}

/* Efeito Especial no Donate - Piscando com luz */
.btn-donate {
    animation: blink-glow 1.5s infinite;
}

@keyframes blink-glow {
    0% { opacity: 1; text-shadow: 0 0 10px #ff0000; }
    50% { opacity: 0.5; text-shadow: 0 0 20px #ff0000; }
    100% { opacity: 1; text-shadow: 0 0 10px #ff0000; }
}

/* Botão Home no centro da tela com efeito de fumaça */
.home-button {
    position: absolute;
    top: 38%;
    left: 35%;
    transform: translate(-50%, -50%); /* centraliza */
    z-index: 100;
}

.home-button a {
    display: inline-block;
    padding: 0;                /* remove espaço extra */
    border-radius: 50%;        /* mantém borda arredondada */
    background: transparent;   /* fundo transparente */
    box-shadow: none;          /* sem brilho fixo, só logo */
    transition: transform 0.3s ease;
    position: relative;        /* para posicionar o efeito de fumaça */
}

.home-button a:hover {
    transform: scale(1.1);     /* aumenta ao passar o mouse */
}

/* Efeito de fumaça */
.home-button::before,
.home-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8); /* Fumaça branca semi-transparente */
    border-radius: 50%;
    filter: blur(5px); /* Desfoque para efeito de fumaça */
    animation: smoke-rise 3s infinite linear;
    z-index: -1; /* Atrás da imagem */
}

.home-button::after {
    animation-delay: 1.5s; /* Atraso para criar variação no efeito */
}

@keyframes smoke-rise {
    0% {
        transform: translate(-50%, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -150px) scale(1.5);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -300px) scale(2);
        opacity: 0;
    }
}

.home-button img {
    width: 312px;   /* tamanho da logo */
    height: 312px;
    border-radius: 50%; /* deixa redonda se for quadrada */
}

/* Spark Effect for Home Button */
.home-button .sparks {
    position: absolute;
    width: 312px; /* Match logo size */
    height: 312px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Center on button */
    z-index: 0; /* Behind logo, in front of smoke */
}

.home-button .sparks > div {
    position: absolute;
}

.home-button .spark_1 {
    background: url(../img/spark_1.png) no-repeat;
    background-size: contain;
    width: 150px;
    height: 60px;
    right: 0;
    bottom: -60px;
    transform: scale(0.6);
    animation: spark-1 4s linear infinite;
    animation-delay: 1s;
}

.home-button .spark_2 {
    background: url(../img/spark_2.png) no-repeat;
    background-size: contain;
    width: 35px;
    height: 65px;
    right: 45px;
    bottom: -60px;
    transform: scale(0.6);
    animation: spark-1 4s linear infinite;
    animation-delay: 2s;
}

.home-button .spark_3 {
    background: url(../img/spark_3.png) no-repeat;
    background-size: contain;
    width: 25px;
    height: 30px;
    right: 55px;
    bottom: -30px;
    transform: scale(0.6);
    animation: spark-3 4s linear infinite;
    animation-delay: 2s;
}

.home-button .spark-big {
    background: url(../img/spark_4.png) no-repeat;
    background-size: contain;
    width: 150px;
    height: 35px;
    right: 0;
    bottom: -35px;
    transform: scale(0.6);
    animation: spark-5 4s linear infinite;
}

.home-button .spark_5 {
    background: url(../img/spark_4.png) no-repeat;
    background-size: contain;
    width: 150px;
    height: 35px;
    right: 8px;
    bottom: -35px;
    transform: scale(0.6);
    animation: spark-5 4s linear infinite;
    animation-delay: 2s;
}

@keyframes spark-1 {
    0% {
        bottom: -60px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -45px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -30px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: -15px;
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 0px;
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes spark-3 {
    0% {
        bottom: -30px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -15px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: 0px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 15px;
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 30px;
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes spark-5 {
    0% {
        bottom: -35px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -25px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -15px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: -5px;
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 5px;
        transform: scale(1);
        opacity: 0;
    }
}

/* Flame Effect (Right Side of Screen) */
.flame {
    width: 150px;
    height: 200px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
}

.flame > div {
    width: 150px;
    height: 200px;
    position: absolute;
    opacity: 0;
}

.flame_1 {
    background: url(../img/flame_1.png) no-repeat;
    background-size: contain;
    animation: flame_1 3s linear infinite;
    animation-delay: 0.7s;
}

.flame_2 {
    background: url(../img/flame_2.png) no-repeat;
    background-size: contain;
    animation: flame_1 3s linear infinite;
    animation-delay: 1.4s;
}

.flame_3 {
    background: url(../img/flame_3.png) no-repeat;
    background-size: contain;
    animation: flame_1 3s linear infinite;
    animation-delay: 2.1s;
}

.flame_4 {
    background: url(../img/flame_4.png) no-repeat;
    background-size: contain;
    animation: flame_1 3s linear infinite;
    animation-delay: 2.8s;
}

.flame_5 {
    background: url(../img/flame_5.png) no-repeat;
    background-size: contain;
    animation: flame_1 3s linear infinite;
    animation-delay: 3.5s;
}

@keyframes flame_1 {
    0% {
        bottom: 0px;
        left: 0px;
        opacity: 0;
        transform: scale(1);
    }
    50% {
        bottom: 30px;
        left: 15px;
        opacity: 0.8;
        transform: scale(0.8);
    }
    100% {
        bottom: 60px;
        left: 30px;
        opacity: 0;
        transform: scale(0.6);
    }
}

.hero-buttons {
    text-align: center;
}

.btn-download {
    display: inline-block;
    background: #1c1c1c;
    padding: 20px 40px;
    margin: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 24px;
    position: relative;
    left: -780px;
    top: 250px;
    animation: pulse-glow 2s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-download:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #006aff;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px #006aff; }
    50% { box-shadow: 0 0 20px #006aff; }
    100% { box-shadow: 0 0 5px #006aff; }
}

.btn-login {
    display: inline-block;
    background: #1c1c1c;
    padding: 60px 60px;
    margin: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 24px;
    position: absolute;
    bottom: 1%;
    left: 19%;
    transform: translateX(-50%);
    animation: neon-flicker 1.8s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-login:hover {
    transform: scale(1.1) translateX(-50%);
    box-shadow: 0 0 15px #006aff;
}

@keyframes neon-flicker {
    0% { box-shadow: 0 0 5px #006aff; }
    50% { box-shadow: 0 0 20px #006aff; }
    100% { box-shadow: 0 0 5px #006aff; }
}

.btn-register {
    display: inline-block;
    background: #1c1c1c;
    padding: 20px 80px;
    margin: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 24px;
    position: absolute;
    bottom: 1%;
    left: 7.5%;
    transform: translateX(-50%);
    animation: soft-glow 1.6s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-register:hover {
    transform: scale(1.1) translateX(-50%);
    box-shadow: 0 0 15px #006aff;
}

@keyframes soft-glow {
    0% { box-shadow: 0 0 5px #006aff; }
    50% { box-shadow: 0 0 20px #006aff; }
    100% { box-shadow: 0 0 5px #006aff; }
}

.slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.slider-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.slider-text {
    flex: 1;
    margin-right: 20px;
}

.slider-image img {
    max-width: 400px;
    border-radius: 10px;
}

.news {
    padding: 40px;
    background: #111;
    position: relative;
    right: 0px;
}

.news ul {
    list-style: none;
    padding: 0;
}

.news li {
    margin: 10px 0;
}

.streamers {
    padding: 80px;
    background: #0d0d0d;
}

.streamer-grid {
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: -135%;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease-in;
}

.card {
    background: #1c1c1c;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.sidebar-social {
    position: fixed;
    top: 40%;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-social img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.sidebar-social img:hover {
    transform: rotate(360deg);
}

footer {
    padding: 40px;
    text-align: center;
    background: #111;
}

/* Estilos para Seção de Classes com Tabs */
.classes-guide {
    padding: 40px;
    background: #111;
}

.tab-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    background: #1c1c1c;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.tab-btn:hover {
    background: #c62828;
}

.tab-btn.active {
    background: #c62828;
}

.tab-content {
    display: none;
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 1s ease-in;
}

.tab-content.active {
    display: block;
}

.class-layout {
    display: flex;
    gap: 20px;
}

.class-image {
    flex: 0 0 670px;
}

.class-image img {
    width: 670px;
    height: 727px;
    object-fit: cover;
    border-radius: 10px;
}

.class-desc {
    flex: 1;
}

.class-desc h3 {
    color: #c62828;
}

/* Modals para Login e Personagens */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 30;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;

}

.modal-content {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: fadeIn 0.3s ease-in;
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #c62828;
}

.modal form {
    display: flex;
    flex-direction: column;
}

.modal input, .modal button {
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.modal button {
    background: #c62828;
    color: #fff;
    cursor: pointer;
}

/* Estilos para Download Page */
.download-content, .donate-content {
    text-align: center;
    padding: 50px;
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
    animation: neon-flicker 1.8s infinite;
    transition: transform 0.3s, box-shadow 0.3s;

}

.download-instructions {
    padding: 40px;
    background: #111;
    text-align: center;
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
    animation: neon-flicker 1.8s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-instructions ol {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.btn-download-large {
    display: inline-block;
    background: #c62828;
    padding: 20px 40px;
    margin: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 24px;
    animation: pulse-glow 2s infinite;
}

.download-info {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

/* Estilos para Donate Page */
.donate-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.donate-items {
    display: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.donate-items.active {
    display: grid;
}

.donate-item {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.donate-item img {
    border-radius: 50%;
}

.value {
    font-weight: bold;
    color: #c62828;
}

.buy-btn {
    background: #c62828;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
