
/* Registration prompt section styles */
.registration-prompt {
    margin: 20px 10px;
    padding:50px 10px;
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
}

.registration-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.prompt-content {
    padding: 15px;
}

.prompt-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.prompt-description {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.4;
}

.prompt-buttons {
    display: flex;
    gap: 10px;
}

.explorer-button {
    flex: 1;
    background-color: #ffd700;
    color: black;
    border: none;
    padding: 8px 0;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}

.messenger-button {
    flex: 1;
    background-color: #333;
    color: white;
    border: none;
    padding: 8px 0;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}