/*
Theme Name: Payzec.com Theme
Theme URI: payzec.com
Description: Payzec.com Theme
Version: 1.0
Author: You
Author URI: payzec.com
*/
.hero-gradient {
    background: linear-gradient(135deg, rgba(79,70,229,0.1) 0%, rgba(14,165,233,0.05) 50%, rgba(255,255,255,1) 100%);
}
.feature-tab.active {
    border-bottom: 3px solid #4f46e5;
    color: #4f46e5;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.transition-all {
    transition: all 0.3s ease;
}
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.float-animation {
    animation: floatAnimation 3s ease-in-out infinite;
}
.transition-all {
    transition: all 0.3s ease;
}
.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.group:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.wallet-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.wallet-logo-color {
    fill: #2196f3;
}

.page-content {
    font-family: system-ui, sans-serif;
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    color: #333;
    line-height: 1.6;
}

.page-content hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #ddd;
}