Predict the future
/* Metallic Gold Gradient Class */
.gold-text {
background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
font-weight: bold;
}
/* Metallic Gold Accent Button */
.gold-button {
background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728);
color: #000000;
font-weight: bold;
border: none;
padding: 12px 24px;
border-radius: 4px;
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gold-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}
/* Metallic Gold Border Frame */
.gold-border {
border: 2px solid #D4AF37;
border-image: linear-gradient(135deg, #BF953F, #FCF6BA, #AA771C) 1;
}










