/*
Theme Name: Abarax Theme Ultimate
Theme URI: https://abarax.com.br/
Author: Abarax
Author URI: https://abarax.com.br/
Description: Ultimate theme for publisher
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 8.1
Version: 1.1
License: PRIVATE
License URI: https://abarax.com.br/theme-license
Text Domain: abarax
Tags: news, publishers, IA, Abarax
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
body {
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: linear-gradient(90deg, #F21137, #68020F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow {
    box-shadow: 0 0 60px rgba(242,17,55,0.25);
}

.glass {
    background: rgba(3,3,3,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(242,17,55,0.25);
}

@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slide-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.animate-slide-left {
    width: 200%;
    animation: slide-left 35s linear infinite;
}

.animate-slide-right {
    width: 200%;
    animation: slide-right 40s linear infinite;
}