/* Custom Styles for Pokemon Name List */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Card Styles */
.uk-card-default {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.uk-card-default:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.uk-card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f8f9fa;
    padding: 15px 20px;
}

.uk-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.uk-card-body {
    padding: 20px;
}

/* Table Enhancements */
.uk-table th {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.uk-table td {
    vertical-align: middle;
}

.uk-table-striped>tbody>tr:nth-of-type(odd) {
    background: #f9f9f9;
}

/* Navbar Tweaks */
.uk-navbar-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Utility */
.text-gradient {
    background: -webkit-linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}