.pokemon-card-display {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pokemon-card-image {
    flex: 0 0 200px;
}

.pokemon-card-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.pokemon-card-details {
    flex: 1;
}

.card-name {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #333;
}

.card-set,
.card-number,
.card-supertype,
.card-rarity,
.card-artist {
    margin: 8px 0;
    color: #666;
}

.pokemon-card-price {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
}

.card-price {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin: 0 0 5px 0;
}

.price-date {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.pokemon-card-actions {
    margin-top: 15px;
}

.pokemon-learn-more {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.pokemon-learn-more:hover {
    background-color: #005a87;
    color: #fff;
}

.pokemon-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.pokemon-gallery-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pokemon-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.gallery-image img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.gallery-info h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #333;
}

.set-info,
.rarity-info {
    font-size: 12px;
    color: #666;
    margin: 4px 0;
}

.gallery-learn-more {
    background-color: #0073aa;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    font-size: 12px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.gallery-learn-more:hover {
    background-color: #005a87;
    color: #fff;
}

@media (max-width: 768px) {
    .pokemon-card-display {
        flex-direction: column;
        text-align: center;
    }
    
    .pokemon-card-image {
        flex: none;
        align-self: center;
    }
    
    .pokemon-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .pokemon-gallery-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .pokemon-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}