body {
    background-image: url('../img/background.gif');
    margin: 0;
    padding: 0;
    font-family: 'Press Start 2P', cursive;
    background-color: #1c1c1c;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    overflow-y: auto;
}

.container {
    text-align: center;
    border: 2px solid #663399;
    border-radius: 10px;
    padding: 20px;
    background-color: rgba(44, 44, 44, 0.85);
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 0 20px #ff00ff;
    margin-top: 20px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #ff00ff;
    text-shadow: 3px 3px 0px #663399;
}


h2 {
    font-size: 22px;
    margin-bottom: 30px;
    color: #bb86fc;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #663399;
    text-align: center;
}


.component-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: nowrap; 
    max-width: 1200px;
}

.component-block {
    background-color: rgba(30, 30, 30, 0.9);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #bb86fc;
    text-align: center;
    width: 250px;
    box-shadow: 5px 5px 15px #ff00ff;
}

.component-block select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #000;
    color: #bb86fc;
    border: 2px solid #bb86fc;
}

.component-img {
    margin-top: 10px;
    width: 100%;
    height: auto;
    display: none;
}
.spec-sheet-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    background-color: #ff00ff;
    color: #000;
    padding: 10px;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    border: 2px solid #bb86fc;
}


select {
    background-color: #000000;
    color: #bb86fc;
    border: 2px solid #bb86fc;
}

button:hover {
    background-color: #ff00ff;
    color: #000;
}
.verify-button {
    display: block;
    margin-top: 10px;
    text-align: center;
    background-color: #ff00ff;
    color: #000;
    padding: 10px;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    border: 2px solid #bb86fc;
}


.verify-button:hover {
    background: linear-gradient(45deg, #bb86fc, #4b2681);
    box-shadow: 0px 0px 25px #bb86fc;
    transform: scale(1.05);
}


.compatibility-check {
    background-color: rgba(30, 30, 30, 0.9);
    padding: 20px;
    margin: 20px auto 0;
    border: 2px solid #bb86fc;
    width: 100%;
    max-width: 900px;
    box-shadow: 5px 5px 20px #ff00ff;
    text-align: center;
}
.botaooo {

    margin-top: 10px auto 0;
    text-align: center;
    background-color: #ff00ff;
    color: #000;
    padding: 10px;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    border: 2px solid #bb86fc;
}

.compatibility-result {
    background-color: #121212;
    color: #bb86fc;
    padding: 15px;
    border: 2px solid #bb86fc;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-family: 'Press Start 2P', cursive;
}


/* Centralizando as imagens de sucesso e falha */
.result-container {
    margin-top: 20px;
    text-align: center;
}

.result-gif {
    width: 120px;
    height: 120px;
    display: none;
    margin: 10px auto;
}

/* Responsividade */
@media (max-width: 1024px) {
    .component-selector {
        flex-wrap: wrap;
        justify-content: center;
    }

    .component-block {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .component-selector {
        flex-direction: column;
        align-items: center;
    }

    .component-block {
        width: 90%;
    }

    .verify-button {
        width: 90%;
    }
}
