.about-page {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


/* BOX PADRÃO */
.about-box {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--primary);
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.about-box h2 {
    margin-bottom: 15px;
}

/* GRID INFO */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.card {
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--primary);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}

.card span {
    font-size: 12px;
    opacity: 0.7;
}

.card strong {
    display: block;
    font-size: 18px;
    margin-top: 5px;
}

/* FEATURES */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* PROGRESSÃO */
.progression {
    display: grid;
    gap: 15px;
}

.progression div {
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-left: 3px solid var(--primary);
}

/* EVENTOS */
.events {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event {
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--primary);
    padding: 10px 15px;
    border-radius: 6px;
}

/* CTA */
.about-cta {
    text-align: center;
}

.btn-play {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #c89b3c, #f1d27a);
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-play:hover {
    transform: scale(1.05);
}