/*
Theme Name: Ruto Theme
Theme URI: https://rutoai.com
Author: Ruto Dev Team
Author URI: https://rutoai.com
Description: A custom theme based on the Ruto Wallet Blog design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ruto-theme
*/

/* 
 * Tailwind CSS is loaded via CDN in functions.php for this MVP.
 * Custom styles that Tailwind can't easily handle or specific overrides go here.
 */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF4B2B;
}

body {
    -webkit-font-smoothing: antialiased;
}

/* Glass Shine Animation */
.glass-card {
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}