body {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url('../img/fundo.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(5px); /* Aplicando blur na imagem de fundo */
    z-index: -1;
}

/* Aplicando blur na imagem da arena */
.arena-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: blur(3px); /* Blur na imagem kids.jpg */
    transition: filter 0.3s ease;
}

/* Removendo o blur no hover para melhor visualização */
.arena-card:hover .arena-image {
    filter: blur(0);
}

/* O restante do CSS permanece EXATAMENTE igual ao original */
.main-content {
    flex: 1;
    padding: 2rem;
}

.subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.arenas-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.arena-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(214, 64, 64, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.arena-card.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.age-warning {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* ... (todo o restante do CSS original permanece igual) ... */

/* Dark Mode */
[data-theme="dark"] .arena-card {
    background-color: rgba(26, 26, 26, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ... (mantenha todo o restante do CSS original) ... */

body {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url('../img/fundo.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(8px) brightness(0.7);
    z-index: -1;
}

.main-content {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.subtitle {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.arenas-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.arena-card {
    background-color: rgba(255, 255, 255, 0.87);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--primary-color);
}

.arena-card.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.age-warning {
    background-color: var(--error-color);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
}

.age-warning i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.info-btn {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    font-weight: bold;
}

.info-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.arena-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.arena-info {
    padding: 2rem;
}

.arena-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
   
}

.specs {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.specs li {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    background-color: rgba(182, 178, 178, 0.4);
    border-radius: 8px;
}

.specs i {
    color: var(--primary-color);
    width: 30px;
    text-align: center;
    font-size: 1.3rem;
}

.see-more {
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 1.2rem;
    max-width: 300px;
}

.see-more:hover {
    background-color: var(--error-color);
    transform: scale(1.05);
}

.terror-description {
    background-color: rgba(255, 255, 255, 0.87);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border: 1px solid var(--primary-color);
}

.terror-description h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.terror-description p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terror-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background-color: rgba(182, 178, 178, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Dark Mode */
[data-theme="dark"] .arena-card {
    background-color: rgba(20, 20, 20, 0.95);
}

[data-theme="dark"] .terror-description {
    background-color: rgba(20, 20, 20, 0.9);
}

/* Responsivo */
@media (max-width: 768px) {
    .specs {
        grid-template-columns: 1fr;
    }
    
    .arena-image {
        height: 300px;
    }
    
    .arena-info {
        padding: 1.5rem;
    }
    
    .terror-features {
        grid-template-columns: 1fr;
    }
}

