/* CRITICAL CSS FOR WHAT'S NEW BUTTONS - ONLY GRADIENT BORDER, NO BACKGROUND */
@font-face {
    font-family: 'DeltaSans';
    src: url('./fonts/DeltaSans-Regular.eot');
    src: url('./fonts/DeltaSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('./fonts/DeltaSans-Regular.woff2') format('woff2'),
    url('./fonts/DeltaSans-Regular.woff') format('woff'),
    url('./fonts/DeltaSans-Regular.ttf') format('truetype'),
    url('./fonts/DeltaSans-Regular.svg#DeltaSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DeltaSans';
    src: url('./fonts/DeltaSans-SemiBold.eot');
    src: url('./fonts/DeltaSans-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('./fonts/DeltaSans-SemiBold.woff2') format('woff2'),
    url('./fonts/DeltaSans-SemiBold.woff') format('woff'),
    url('./fonts/DeltaSans-SemiBold.ttf') format('truetype'),
    url('./fonts/DeltaSans-SemiBold.svg#DeltaSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html body .whats-new-box .fragment-cta .cta-link,
.whats-new-box .fragment-cta .cta-link,
.whats-new-box .cta-link {
    /* Core button styling */
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    min-width: 140px !important;

    /* THIS IS THE KEY PART FOR GRADIENT BORDER ONLY */
    border: 2px solid !important;

    border-image: linear-gradient(45deg, #0087dc, #82d4d6, #b9eb5f) !important;

    /* Transitions */
    transition: transform 0.3s ease !important;

    /* Positioning */
    position: relative !important;
    z-index: 10 !important;
    overflow: visible !important;

    /* Override any additional styling */
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
}

/* Style the text */
.whats-new-box .cta-text {
    font-family: 'DeltaSans', Inter, sans-serif, Arial;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    color: #ffffff !important; /* White text */
    text-transform: uppercase !important;
    transition: color 0.3s ease !important;
}

/* Simple zoom-in hover effect */
.whats-new-box .cta-link:hover {
    transform: scale(1.1) !important;
    text-decoration: none !important;
    border: 2px solid !important;
    border-image: linear-gradient(45deg, #0087dc, #82d4d6, #b9eb5f) !important;
}

/* Hide all cta-box elements */
.whats-new-box .cta-box,
.whats-new-box .fragment-cta .cta-box {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Remove any default button styling and pseudo-elements */
.whats-new-box .cta-link:before,
.whats-new-box .cta-link:after,
html body .whats-new-box .fragment-cta .cta-link:before,
html body .whats-new-box .fragment-cta .cta-link:after {
    content: none !important;
    display: none !important;
    background: none !important;
    border: none !important;
    opacity: 0 !important;
}

/* Ensure no background fill on hover or any state */
html body .whats-new-box .cta-link,
html body .whats-new-box .cta-link:hover,
html body .whats-new-box .cta-link:active,
html body .whats-new-box .cta-link:focus {
    background-color: transparent !important;
}
