.prophecy-widget {
    position: relative;
    padding: 40px 20px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.prophecy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-overlay);
    opacity: var(--background-opacity);
    z-index: 1;
}

.prophecy-content {
    position: relative;
    z-index: 2;
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.prophecy-title {
    color: var(--title-color);
    margin-bottom: 30px;
}

.prophecy-box {
    min-height: 120px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--button-color);
    font-size: 18px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: opacity 0.3s ease;
}

.prophecy-button {
    background: var(--button-color);
    color: var(--button-text-color);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	margin: 0 auto;
}

.prophecy-button:hover:not(:disabled) {
    opacity: 0.9;
}

.prophecy-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
	align-self: center;
    margin: 0 auto;
}