/* Golden Gradient Text */
.golden-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Button Styles */
.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-light {
    background: #FFFFFF;
    color: #4F84C4;
    border: none;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #4F84C4;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Social Icons */
.social-links {
    margin-top: 3rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}