/*
Theme Name: Plugpayhub VTU Pro
Theme URI: https://plugpayhub.com.ng/
Author: James P. Friday
Author URI: https://github.com/CityRock007/CityRock007/
Description: A high-performance fintech theme for Airtime, Data, and Utilities.
Version: 1.0.0
Text Domain: plugpayhub
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* --- THEME VARIABLES (Fintech Palette) --- */
:root {
    --primary-color: #0056b3;    /* Royal Blue */
    --secondary-color: #32cd32;  /* Electric Green */
    --accent-color: #0f172a;     /* Deep Navy */
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- RESET & GLOBAL STYLE --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- BUTTONS --- */
.btn-vibrant {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004494 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 12px;
    border: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.15);
}

.btn-vibrant:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.25);
    filter: brightness(1.1);
}

/* --- SIGNATURE PROTECTION STYLE --- */
#dev-signature a {
    transition: 0.3s;
}

#dev-signature a:hover {
    color: #fff !important;
    background: var(--secondary-color);
    padding: 2px 8px;
    border-radius: 5px;
}