@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700&display=swap"); #page,
#page.hfeed,
#page.nk-main,
#content,
#content.site-content,
.site-content,
.site-main,
.nk-main,
.nk-content,
.nk-content-inner,
.nk-gap,
.entry-content,
.hfeed {
background: transparent !important;
background-color: transparent !important;
}
.pokedex-page {
font-family: 'Maven Pro', 'Exo 2', sans-serif;
font-size: 120%;
background: transparent !important;
padding-bottom: 60px;
width: 100%;
} :root {
--bg-primary:     rgba(10, 14, 26, 0.82);
--bg-card:        #1a1d27;
--bg-card-hover:  #21253a;
--bg-elevated:    #21253a;
--border:         rgba(255, 255, 255, 0.10);
--border-light:   rgba(255, 255, 255, 0.16);
--gold:           #f5a623;
--gold-light:     #fbbf24;
--gold-dim:       #c47d0e;
--gold-glow:      rgba(245, 166, 35, 0.15);
--text-primary:   #e8edf5;
--text-secondary: #8a9bbf;
--text-muted:     #4a5878;
--text-white:     #ffffff;
--accent-red:     #e53e3e;
--accent-blue:    #3182ce;
--accent-teal:    #38b2ac;
--radius-sm:      6px;
--radius-md:      10px;
--radius-lg:      16px;
--radius-xl:      24px;
--shadow-card:    0 4px 24px rgba(0,0,0,0.4);
--shadow-gold:    0 0 20px rgba(245,166,35,0.2);
--transition:     all 0.2s ease;
} .pokedex-page * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.pokedex-page {
font-family: 'Maven Pro', sans-serif;
background: transparent;
color: var(--text-primary);
min-height: 100vh;
line-height: 1.6;
}
.pokedex-page a {
color: var(--gold);
text-decoration: none;
transition: var(--transition);
}
.pokedex-page a:hover {
color: var(--gold-light);
} .pdx-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}
.pdx-section-header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 36px;
padding-bottom: 16px;
border-bottom: 1px solid var(--border);
position: relative;
}
.pdx-section-header::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 80px;
height: 2px;
background: var(--gold);
}
.pdx-title {
font-family: 'Rajdhani', sans-serif;
font-weight: 700;
font-size: 2rem;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--text-white);
}
.pdx-title span {
color: var(--gold);
}
.pdx-breadcrumb {
font-size: 0.8rem;
color: var(--text-muted);
margin-bottom: 24px;
display: flex;
align-items: center;
gap: 8px;
padding-top: 20px;
}
.pdx-breadcrumb a {
color: var(--text-secondary);
}
.pdx-breadcrumb a:hover {
color: var(--gold);
}
.pdx-breadcrumb-sep {
color: var(--text-muted);
font-size: 0.7rem;
} .pdx-hero {
background: transparent;
border-bottom: 1px solid rgba(255,255,255,0.08);
padding: 48px 0 40px;
position: relative;
overflow: hidden;
}
.pdx-hero::before {
display: none;
}
.pdx-hero-content {
position: relative;
z-index: 1;
}
.pdx-hero-label {
font-family: 'Rajdhani', sans-serif;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
}
.pdx-hero-label::before {
content: '';
display: inline-block;
width: 24px;
height: 2px;
background: var(--gold);
}
.pdx-hero-title {
font-family: 'Rajdhani', sans-serif;
font-size: 3rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--text-white);
line-height: 1.1;
margin-bottom: 12px;
}
.pdx-hero-title span {
color: var(--gold);
}
.pdx-hero-subtitle {
color: var(--text-secondary);
font-size: 1rem;
font-weight: 400;
max-width: 500px;
} .pdx-hub-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
padding: 48px 0;
}
.pdx-hub-card {
background: #1a1d27;
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-lg);
padding: 32px 28px;
display: flex;
flex-direction: column;
gap: 12px;
transition: var(--transition);
text-decoration: none;
position: relative;
overflow: hidden;
cursor: pointer;
}
.pdx-hub-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}
.pdx-hub-card:hover {
background: var(--bg-card-hover);
border-color: var(--gold-dim);
transform: translateY(-3px);
box-shadow: var(--shadow-card), var(--shadow-gold);
}
.pdx-hub-card:hover::before {
transform: scaleX(1);
}
.pdx-hub-icon {
font-size: 2.4rem;
line-height: 1;
margin-bottom: 4px;
}
.pdx-hub-card-title {
font-family: 'Rajdhani', sans-serif;
font-size: 1.2rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--text-white);
}
.pdx-hub-card-desc {
font-size: 0.875rem;
color: var(--text-secondary);
line-height: 1.5;
flex: 1;
}
.pdx-hub-card-arrow {
font-size: 0.8rem;
color: var(--gold);
font-family: 'Rajdhani', sans-serif;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
display: flex;
align-items: center;
gap: 6px;
margin-top: 4px;
}
.pdx-hub-card-arrow::after {
content: '→';
transition: transform 0.2s ease;
}
.pdx-hub-card:hover .pdx-hub-card-arrow::after {
transform: translateX(4px);
} .pdx-search-bar {
background: #1a1d27;
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-lg);
padding: 20px 24px;
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
margin-bottom: 24px;
}
.pdx-search-input-wrap {
position: relative;
flex: 1;
min-width: 200px;
}
.pdx-search-input-wrap svg {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
color: var(--text-muted);
pointer-events: none;
}
.pdx-search-input {
width: 100%;
background: var(--bg-elevated);
border: 1px solid var(--border-light);
border-radius: var(--radius-md);
color: var(--text-primary);
font-family: 'Maven Pro', sans-serif;
font-size: 0.95rem;
padding: 10px 14px 10px 42px;
outline: none;
transition: var(--transition);
}
.pdx-search-input::placeholder {
color: var(--text-muted);
}
.pdx-search-input:focus {
border-color: var(--gold);
box-shadow: 0 0 0 3px var(--gold-glow);
}
.pdx-type-filters {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.pdx-type-btn {
padding: 5px 12px;
border-radius: 20px;
border: 1px solid var(--border-light);
background: transparent;
color: var(--text-secondary);
font-family: 'Maven Pro', sans-serif;
font-size: 0.78rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.pdx-type-btn:hover,
.pdx-type-btn.active {
border-color: var(--gold);
color: var(--gold);
background: var(--gold-glow);
} .pdx-poke-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 14px;
}
.pdx-poke-card {
background: #1a1d27;
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-md);
padding: 20px 12px 16px;
text-align: center;
text-decoration: none;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
transition: var(--transition);
position: relative;
overflow: hidden;
cursor: pointer;
}
.pdx-poke-card:hover {
background: var(--bg-card-hover);
border-color: var(--gold-dim);
transform: translateY(-4px);
box-shadow: var(--shadow-card);
}
.pdx-poke-card-num {
font-family: 'Rajdhani', sans-serif;
font-size: 0.72rem;
font-weight: 600;
color: var(--text-muted);
letter-spacing: 0.08em;
position: absolute;
top: 10px;
left: 12px;
}
.pdx-poke-img-wrap {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
.pdx-poke-img-wrap img {
width: 80px;
height: 80px;
object-fit: contain;
image-rendering: pixelated;
filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
transition: transform 0.2s ease;
}
.pdx-poke-card:hover .pdx-poke-img-wrap img {
transform: scale(1.1) translateY(-2px);
}
.pdx-poke-img-placeholder {
width: 80px;
height: 80px;
background: var(--bg-elevated);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
font-size: 1.8rem;
}
.pdx-poke-name {
font-family: 'Rajdhani', sans-serif;
font-size: 0.95rem;
font-weight: 700;
color: var(--text-white);
text-transform: capitalize;
line-height: 1.2;
}
.pdx-poke-form {
font-size: 0.72rem;
color: var(--gold);
font-weight: 500;
}
.pdx-types {
display: flex;
gap: 4px;
flex-wrap: wrap;
justify-content: center;
} .pdx-type-badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 72px;
height: 22px;
border-radius: 4px;
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: #fff;
}
.type-normal    { background: #6d6d4e; }
.type-fire      { background: #c62828; }
.type-water     { background: #1565c0; }
.type-electric  { background: #f9a825; color: #111; }
.type-grass     { background: #2e7d32; }
.type-ice       { background: #006064; }
.type-fighting  { background: #b71c1c; }
.type-poison    { background: #6a1b9a; }
.type-ground    { background: #827717; }
.type-flying    { background: #1a237e; }
.type-psychic   { background: #ad1457; }
.type-bug       { background: #558b2f; }
.type-rock      { background: #5d4037; }
.type-ghost     { background: #311b92; }
.type-dragon    { background: #283593; }
.type-dark      { background: #212121; }
.type-steel     { background: #37474f; }
.type-fairy     { background: #880e4f; } .pdx-stats-grid {
display: flex;
flex-direction: column;
gap: 10px;
}
.pdx-stat-row {
display: grid;
grid-template-columns: 60px 40px 1fr 40px;
align-items: center;
gap: 12px;
}
.pdx-stat-label {
font-family: 'Rajdhani', sans-serif;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--text-muted);
text-align: right;
}
.pdx-stat-val {
font-family: 'Rajdhani', sans-serif;
font-size: 0.9rem;
font-weight: 700;
color: var(--text-primary);
text-align: right;
}
.pdx-stat-bar-bg {
height: 6px;
background: var(--bg-elevated);
border-radius: 3px;
overflow: hidden;
}
.pdx-stat-bar-fill {
height: 100%;
border-radius: 3px;
transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
width: 0;
}
.pdx-stat-max {
font-family: 'Rajdhani', sans-serif;
font-size: 0.7rem;
color: var(--text-muted);
} .pdx-detail-layout {
display: grid;
grid-template-columns: 340px 1fr;
gap: 24px;
padding: 32px 0 64px;
align-items: start;
}
.pdx-detail-left {
display: flex;
flex-direction: column;
gap: 20px;
position: sticky;
top: 24px;
}
.pdx-card {
background: #1a1d27;
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-lg);
overflow: hidden;
}
.pdx-card-header {
padding: 16px 20px;
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
gap: 10px;
}
.pdx-card-title {
font-family: 'Rajdhani', sans-serif;
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--gold);
}
.pdx-card-body {
padding: 20px;
} .pdx-portrait-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
text-align: center;
position: relative;
}
.pdx-portrait-bg {
background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
padding: 32px 24px 24px;
position: relative;
}
.pdx-portrait-bg::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 50% 30%, var(--gold-glow) 0%, transparent 70%);
pointer-events: none;
}
.pdx-portrait-num {
position: absolute;
top: 16px;
left: 20px;
font-family: 'Rajdhani', sans-serif;
font-size: 0.85rem;
font-weight: 700;
color: var(--text-muted);
letter-spacing: 0.06em;
}
.pdx-portrait-toggle {
position: absolute;
top: 16px;
right: 16px;
display: flex;
gap: 4px;
}
.pdx-toggle-btn {
padding: 4px 10px;
border-radius: 4px;
border: 1px solid var(--border-light);
background: transparent;
color: var(--text-secondary);
font-family: 'Maven Pro', sans-serif;
font-size: 0.7rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}
.pdx-toggle-btn.active,
.pdx-toggle-btn:hover {
border-color: var(--gold);
color: var(--gold);
background: var(--gold-glow);
}
.pdx-portrait-img {
width: 180px;
height: 180px;
object-fit: contain;
image-rendering: pixelated;
filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
margin: 0 auto;
display: block;
position: relative;
z-index: 1;
}
.pdx-portrait-img-placeholder {
width: 180px;
height: 180px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
background: var(--bg-elevated);
border-radius: 50%;
font-size: 4rem;
color: var(--text-muted);
}
.pdx-portrait-name {
font-family: 'Rajdhani', sans-serif;
font-size: 2rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--text-white);
margin-top: 12px;
line-height: 1;
}
.pdx-portrait-form-tag {
display: inline-block;
margin-top: 6px;
padding: 3px 12px;
background: var(--gold-glow);
border: 1px solid var(--gold-dim);
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
color: var(--gold);
font-family: 'Rajdhani', sans-serif;
letter-spacing: 0.06em;
}
.pdx-portrait-types {
display: flex;
gap: 8px;
justify-content: center;
margin-top: 14px;
padding: 0 20px 24px;
}
.pdx-portrait-types .pdx-type-badge {
font-size: 0.8rem;
padding: 4px 16px;
border-radius: 20px;
letter-spacing: 0.08em;
} .pdx-info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1px;
background: var(--border);
}
.pdx-info-cell {
background: var(--bg-card);
padding: 14px 16px;
}
.pdx-info-label {
font-family: 'Rajdhani', sans-serif;
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-muted);
margin-bottom: 4px;
}
.pdx-info-val {
font-size: 0.9rem;
font-weight: 600;
color: var(--text-primary);
} .pdx-tabs {
display: flex;
gap: 0;
border-bottom: 1px solid var(--border);
margin-bottom: 24px;
overflow-x: auto;
}
.pdx-tab {
padding: 12px 20px;
font-family: 'Rajdhani', sans-serif;
font-size: 0.82rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-secondary);
cursor: pointer;
border-bottom: 2px solid transparent;
transition: var(--transition);
white-space: nowrap;
background: none;
border-top: none;
border-left: none;
border-right: none;
margin-bottom: -1px;
}
.pdx-tab:hover {
color: var(--text-primary);
}
.pdx-tab.active {
color: var(--gold);
border-bottom-color: var(--gold);
}
.pdx-tab-panel {
display: none;
}
.pdx-tab-panel.active {
display: block;
} .pdx-moves-table {
width: 100%;
border-collapse: collapse;
font-size: 0.875rem;
}
.pdx-moves-table th {
font-family: 'Rajdhani', sans-serif;
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-muted);
padding: 10px 12px;
text-align: left;
border-bottom: 1px solid var(--border);
background: var(--bg-elevated);
}
.pdx-moves-table td {
padding: 10px 12px;
border-bottom: 1px solid var(--border);
color: var(--text-primary);
vertical-align: middle;
}
.pdx-moves-table tr:last-child td {
border-bottom: none;
}
.pdx-moves-table tr:hover td {
background: var(--bg-elevated);
}
.pdx-move-name {
font-weight: 600;
color: var(--text-white);
}
.pdx-move-badge {
display: inline-block;
padding: 2px 8px;
border-radius: 3px;
font-size: 0.65rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.move-cat-physical { background: #7b341e; color: #fbd38d; }
.move-cat-special  { background: #1a365d; color: #90cdf4; }
.move-cat-status   { background: #1a202c; color: #a0aec0; }
.pdx-level-badge {
display: inline-block;
min-width: 28px;
text-align: center;
padding: 2px 6px;
background: var(--bg-elevated);
border: 1px solid var(--border-light);
border-radius: 4px;
font-family: 'Rajdhani', sans-serif;
font-size: 0.78rem;
font-weight: 700;
color: var(--gold);
}
.pdx-pokeone-badge {
display: inline-block;
padding: 2px 7px;
border-radius: 3px;
font-size: 0.62rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.pdx-pokeone-yes { background: rgba(72,187,120,0.15); color: #68d391; border: 1px solid rgba(72,187,120,0.3); }
.pdx-pokeone-no  { background: rgba(245,101,101,0.1);  color: #fc8181; border: 1px solid rgba(245,101,101,0.2); } .pdx-evo-chain {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 8px;
padding: 20px;
}
.pdx-evo-poke {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
text-decoration: none;
padding: 12px;
border-radius: var(--radius-md);
transition: var(--transition);
min-width: 90px;
}
.pdx-evo-poke:hover {
background: var(--bg-elevated);
}
.pdx-evo-poke.current {
background: var(--gold-glow);
border: 1px solid var(--gold-dim);
}
.pdx-evo-poke img {
width: 64px;
height: 64px;
object-fit: contain;
image-rendering: pixelated;
filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.pdx-evo-poke-name {
font-family: 'Rajdhani', sans-serif;
font-size: 0.8rem;
font-weight: 700;
color: var(--text-primary);
text-transform: capitalize;
text-align: center;
}
.pdx-evo-arrow {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
color: var(--text-muted);
font-size: 1.2rem;
padding: 0 4px;
}
.pdx-evo-cond {
font-size: 0.65rem;
color: var(--gold);
text-align: center;
max-width: 80px;
font-weight: 600;
font-family: 'Rajdhani', sans-serif;
line-height: 1.3;
} .pdx-location-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.pdx-location-item {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 14px;
background: var(--bg-elevated);
border-radius: var(--radius-sm);
border: 1px solid var(--border);
}
.pdx-location-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--gold);
flex-shrink: 0;
}
.pdx-location-name {
font-weight: 600;
color: var(--text-primary);
font-size: 0.9rem;
}
.pdx-location-region {
font-size: 0.75rem;
color: var(--text-muted);
margin-left: auto;
font-style: italic;
} .pdx-ability-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.pdx-ability-item {
padding: 14px 16px;
background: var(--bg-elevated);
border-radius: var(--radius-sm);
border: 1px solid var(--border);
border-left: 3px solid var(--gold);
}
.pdx-ability-item.hidden-ability {
border-left-color: #9f7aea;
}
.pdx-ability-name {
font-family: 'Rajdhani', sans-serif;
font-size: 0.95rem;
font-weight: 700;
color: var(--text-white);
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 4px;
}
.pdx-ha-tag {
font-size: 0.62rem;
padding: 1px 6px;
background: rgba(159,122,234,0.2);
color: #9f7aea;
border-radius: 3px;
border: 1px solid rgba(159,122,234,0.3);
font-family: 'Maven Pro', sans-serif;
}
.pdx-ability-desc {
font-size: 0.82rem;
color: var(--text-secondary);
line-height: 1.5;
} .pdx-results-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
font-size: 0.82rem;
color: var(--text-muted);
}
.pdx-results-count strong {
color: var(--gold);
} .pdx-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 6px;
padding: 32px 0;
}
.pdx-page-btn {
min-width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
color: var(--text-secondary);
font-family: 'Rajdhani', sans-serif;
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
text-decoration: none;
}
.pdx-page-btn:hover {
border-color: var(--gold);
color: var(--gold);
}
.pdx-page-btn.active {
background: var(--gold);
border-color: var(--gold);
color: #0e1420;
}
.pdx-page-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
} .pdx-empty {
text-align: center;
padding: 64px 24px;
color: var(--text-muted);
}
.pdx-empty-icon {
font-size: 3rem;
margin-bottom: 16px;
opacity: 0.5;
}
.pdx-empty-text {
font-family: 'Rajdhani', sans-serif;
font-size: 1.1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
} .pdx-desc-box {
background: var(--bg-elevated);
border-left: 3px solid var(--gold);
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
padding: 16px 20px;
font-size: 0.9rem;
color: var(--text-secondary);
line-height: 1.7;
font-style: italic;
} @media (max-width: 900px) {
.pdx-detail-layout {
grid-template-columns: 1fr;
}
.pdx-detail-left {
position: static;
}
.pdx-hero-title {
font-size: 2rem;
}
}
@media (max-width: 600px) {
.pdx-poke-grid {
grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
gap: 10px;
}
.pdx-hub-grid {
grid-template-columns: 1fr;
}
.pdx-container {
padding: 0 16px;
}
.pdx-tabs {
gap: 0;
}
.pdx-tab {
padding: 10px 14px;
font-size: 0.75rem;
}
} @keyframes pdx-fade-in {
from { opacity: 0; transform: translateY(12px); }
to   { opacity: 1; transform: translateY(0); }
}
@keyframes pdx-shimmer {
0%   { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
.pdx-poke-card {
animation: pdx-fade-in 0.3s ease both;
}
.pdx-poke-card:nth-child(1)  { animation-delay: 0.02s; }
.pdx-poke-card:nth-child(2)  { animation-delay: 0.04s; }
.pdx-poke-card:nth-child(3)  { animation-delay: 0.06s; }
.pdx-poke-card:nth-child(4)  { animation-delay: 0.08s; }
.pdx-poke-card:nth-child(5)  { animation-delay: 0.10s; }
.pdx-poke-card:nth-child(6)  { animation-delay: 0.12s; }
.pdx-poke-card:nth-child(7)  { animation-delay: 0.14s; }
.pdx-poke-card:nth-child(8)  { animation-delay: 0.16s; }
.pdx-poke-card:nth-child(9)  { animation-delay: 0.18s; }
.pdx-poke-card:nth-child(10) { animation-delay: 0.20s; }
.pdx-hub-card {
animation: pdx-fade-in 0.4s ease both;
}     .pdx-xlink {
color: inherit;
text-decoration: none;
transition: color .15s;
border-bottom: 1px dotted rgba(245,166,35,.4);
}
.pdx-xlink:hover {
color: #f5a623;
border-bottom-color: #f5a623;
} a.pdx-evo-cond-txt,
a.pdx-evo-cond-item { transition: border-color .15s, background .15s; }
a.pdx-evo-cond-txt:hover { border-color: rgba(245,166,35,.4) !important; background: rgba(245,166,35,.06) !important; }
a.pdx-evo-cond-item:hover { border-color: rgba(245,166,35,.5) !important; background: rgba(245,166,35,.14) !important; }