/* Custom CSS for specific elements not easily covered by Tailwind or for fine-tuning */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Dark blue-gray background */
    color: #e2e8f0; /* Light gray text */
}
h1, h2 {
    font-family: 'Playfair Display', serif; /* Elegant font for titles */
}
/* Custom gradient for header background */
.header-bg-gradient {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}
/* Custom gradient for buttons */
.btn-gradient {
    background: linear-gradient(90deg, #facc15 0%, #eab308 100%); /* Gold gradient */
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #eab308 0%, #fbbf24 100%); /* Slightly shifted gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}
/* Styling for the custom message box */
.message-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1f2937; /* Darker background for modal */
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 1000;
    text-align: center;
    color: #e2e8f0;
    max-width: 90%;
    min-width: 300px;
    border: 1px solid #374151; /* Subtle border */
}
.message-box button {
    background-color: #facc15; /* Gold button */
    color: #1f2937; /* Dark text on gold */
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.message-box button:hover {
    background-color: #eab308; /* Darker gold on hover */
    transform: translateY(-1px);
}