:root {
    --primary-color: #686BFF;
    --primary-dark-color: #0E1082;
    --primary-thicker-color: #4548FF;
    --secondary-color: #8A38F5;
    --primary-secondary-color: #202133;
    --deal-color: #FFB969;
    --text-color: #404040;
}

body {
    font-family: "Ubuntu", sans-serif;
}

.font-inter {
    font-family: "Inter", sans-serif;
}

.font-ubuntu {
    font-family: "Ubuntu", sans-serif;
}

/* Premium Sliding Layer CTA Button */
.btn-fill {
    position: relative;
    overflow: hidden;
    background-color: white;
    color: #181924;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
    z-index: 1;
    font-size: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #5865F2;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    z-index: -1;
    border-radius: 9999px;
}

.btn-fill:hover::before {
    transform: translateY(0);
}

.btn-fill:hover {
    color: white !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}