.pokego-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.pokego-event-card {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
}
.pokego-event-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.pokego-event-content {
    padding: 1rem;
}
.pokego-event-type {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #3b82f6;
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}
.pokego-event-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}
.pokego-event-content p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.875rem;
}

.pokego-shiny-debuts {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.pokego-shiny-item {
    text-align: center;
}
.pokego-shiny-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.pokego-raids {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.pokego-raid-item {
    text-align: center;
}
.pokego-raid-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
