.twobox-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    justify-content: center;
}

.twobox {
    flex: 1 1 45%;
    min-width: 280px;
    background-color: #111;
    color: #eee;
    padding: 25px;
    border: 2px solid red;
    border-radius: 10px;
    box-shadow:
        0 0 10px rgba(255, 0, 0, 0.7),
        0 0 20px rgba(255, 0, 0, 0.5),
        0 0 30px rgba(255, 0, 0, 0.3);
    box-sizing: border-box;
}

.box-title {
    color: #ff4c4c;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .twobox {
        flex: 1 1 100%;
    }
}
.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.platform-button {
    padding: 12px 25px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.platform-button:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}
